/* {$keywords} - Ultra Modern Stylesheet */
/* Futuristic Glassmorphism & Neon Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 超现代霓虹玻璃风格 */
:root {
    /* 背景色系 - 深邃渐变 */
    --primary-bg: #0a0118;      /* 深紫黑 - 主背景 */
    --secondary-bg: #1a0b2e;     /* 深紫 - 卡片背景 */
    --tertiary-bg: #16213e;     /* 蓝紫 - 悬浮背景 */
    
    /* 霓虹强调色系 */
    --neon-pink: #ff006e;       /* 霓虹粉 */
    --neon-purple: #8338ec;     /* 霓虹紫 */
    --neon-blue: #3a86ff;       /* 霓虹蓝 */
    --neon-cyan: #06ffa5;       /* 霓虹青 */
    --neon-orange: #fb5607;     /* 霓虹橙 */
    --neon-yellow: #ffbe0b;     /* 霓虹黄 */
    
    /* 主要强调色 */
    --accent-color: #06ffa5;    /* 霓虹青 - 主要CTA */
    --accent-hover: #04d98b;    /* 深青 - 悬停状态 */
    --accent-light: #8fffdb;    /* 浅青 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #ffffff;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 浅灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 中灰 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #06ffa5;   /* 霓虹青 - 成功状态 */
    --danger-color: #ff006e;    /* 霓虹粉 - 错误状态 */
    --warning-color: #ffbe0b;   /* 霓虹黄 - 警告状态 */
    --info-color: #8338ec;      /* 霓虹紫 - 信息提示 */
    
    /* 渐变色系 - 超现代多色渐变 */
    --primary-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    --secondary-gradient: linear-gradient(135deg, #06ffa5 0%, #3a86ff 100%);
    --hero-gradient: linear-gradient(135deg, #0a0118 0%, #1a0b2e 50%, #0f0728 100%);
    --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    --neon-gradient: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    
    /* 玻璃拟态阴影 */
    --shadow-sm: 0 2px 8px 0 rgba(255, 0, 110, 0.1);
    --shadow-md: 0 8px 16px -2px rgba(131, 56, 236, 0.2);
    --shadow-lg: 0 20px 40px -8px rgba(58, 134, 255, 0.3);
    --shadow-xl: 0 35px 60px -15px rgba(6, 255, 165, 0.4);
    --shadow-accent: 0 0 60px rgba(6, 255, 165, 0.6);
    --shadow-glow: 0 0 80px rgba(131, 56, 236, 0.8);
    --shadow-vip: 0 0 100px rgba(255, 0, 110, 0.7);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 6rem 0;
    --element-spacing: 2rem;
    
    /* Border Radius - 更大的圆角 */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles - 超现代风格 */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(58, 134, 255, 0.1) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* 动态背景动画 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(131, 56, 236, 0.03) 25%, 
        transparent 50%, 
        rgba(58, 134, 255, 0.03) 75%, 
        transparent 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.fluid-f493 {
    background: var(--hero-gradient);
    min-height: 100vh;
    position: relative;
}

/* Container */
.disabled_small_865c {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .disabled_small_865c {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .disabled_small_865c {
        padding: 0 3rem;
    }
}

/* Typography - 霓虹发光效果 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 6s ease infinite;
    text-shadow: 0 0 80px rgba(131, 56, 236, 0.5);
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-white);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(6, 255, 165, 0.5);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

strong {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.3);
}

/* Header Styles - 玻璃拟态 */
.description_advanced_b711 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 1, 24, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(6, 255, 165, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-normal);
}

.description_advanced_b711::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 0, 110, 0.05) 0%, 
        rgba(131, 56, 236, 0.05) 50%, 
        rgba(6, 255, 165, 0.05) 100%);
    pointer-events: none;
}

.border_bottom_9b03 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .border_bottom_9b03 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .gallery_2de8 {
        grid-column: 1;
    }
    
    .huge_92ba {
        grid-column: 2;
    }
    
    .inner_d7cb {
        grid-column: 3;
    }
}

.gallery_2de8 img {
    height: 55px;
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(6, 255, 165, 0.6));
}

.gallery_2de8:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(6, 255, 165, 0.9));
}

/* Navigation */
.heading_orange_4ff4 {
    display: none;
}

@media (min-width: 1024px) {
    .heading_orange_4ff4 {
        display: block;
    }
}

/* Grouped Navigation */
.over_b6ef {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer_ac64 {
    position: relative;
}

.box-e8ff {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.footer_ac64 .detail_e194 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.detail_e194 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.menu-8add {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    font-size: 0.95rem;
    overflow: hidden;
}

.menu-8add::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 255, 165, 0.2), transparent);
    transition: var(--transition-normal);
}

.menu-8add:hover::before,
.menu-8add.fn-active-38aa::before {
    left: 100%;
}

.menu-8add:hover,
.menu-8add.fn-active-38aa {
    color: var(--accent-light);
    background: rgba(6, 255, 165, 0.1);
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.4), inset 0 0 20px rgba(6, 255, 165, 0.1);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

/* Header Actions */
.layout_70f3 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .layout_70f3 {
        display: flex;
    }
}

/* Mobile Register Button */
.huge_92ba {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .huge_92ba {
        display: none;
    }
}


/* 移动端注册按钮 - 霓虹发光 */
.grid_5eaf {
    background: var(--primary-gradient);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(6, 255, 165, 0.5);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.6), 0 0 60px rgba(131, 56, 236, 0.4);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.grid_5eaf::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.7;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.grid_5eaf:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.9), 0 0 80px rgba(131, 56, 236, 0.6);
}

/* Mobile Menu */
.inner_d7cb {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .inner_d7cb {
        display: none;
    }
}

.inner_d7cb span {
    width: 28px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

.inner_d7cb.fn-active-38aa span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.inner_d7cb.fn-active-38aa span:nth-child(2) {
    opacity: 0;
}

.inner_d7cb.fn-active-38aa span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.grid-021d {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 2px solid rgba(6, 255, 165, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 60px rgba(131, 56, 236, 0.3);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-021d.fn-active-38aa {
    display: block;
    max-height: 600px;
}

/* Prevent body scroll when menu is open */
body.backdrop_static_63cb {
    overflow: hidden;
}

.icon-23bd {
    list-style: none;
    padding: 0.75rem 0;
}

.badge-brown-1422 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(6, 255, 165, 0.1);
    transition: var(--transition-normal);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.badge-brown-1422::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--accent-color));
    transition: var(--transition-normal);
}

.badge-brown-1422:hover::before,
.badge-brown-1422.fn-active-38aa::before {
    width: 4px;
}

.badge-brown-1422:hover,
.badge-brown-1422.fn-active-38aa {
    background: rgba(6, 255, 165, 0.05);
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    padding-left: 2.25rem;
}


/* 移动端注册按钮 - 霓虹动画 */
.badge-brown-1422.widget-ac5c {
    background: var(--primary-gradient);
    color: var(--text-white);
    font-weight: 800;
    text-align: center;
    justify-content: center;
    margin: 1.5rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-xl);
    border: 3px solid rgba(6, 255, 165, 0.5);
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.7), 0 0 80px rgba(131, 56, 236, 0.5);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

.badge-brown-1422.widget-ac5c::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(16px);
    opacity: 0.8;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.badge-brown-1422.widget-ac5c:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(255, 0, 110, 0.9), 0 0 100px rgba(131, 56, 236, 0.7);
}

/* Button Styles - 霓虹发光按钮 */
.active_lite_a8f4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.active_lite_a8f4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.active_lite_a8f4:hover::before {
    width: 300px;
    height: 300px;
}

.footer_ff27 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 0 40px rgba(131, 56, 236, 0.6), 0 0 80px rgba(255, 0, 110, 0.4);
    border: 2px solid rgba(6, 255, 165, 0.3);
}

.footer_ff27:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px rgba(131, 56, 236, 0.9), 0 0 120px rgba(255, 0, 110, 0.6);
    border-color: rgba(6, 255, 165, 0.6);
}

.section_3187 {
    background: rgba(6, 255, 165, 0.05);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.3), inset 0 0 20px rgba(6, 255, 165, 0.05);
}

.section_3187:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.8), inset 0 0 40px rgba(6, 255, 165, 0.2);
    text-shadow: 0 0 10px rgba(10, 1, 24, 0.8);
}

.wood-e127 {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.7), 0 0 100px rgba(131, 56, 236, 0.5);
    flex-direction: column;
    gap: 0.5rem;
    border: 2px solid rgba(6, 255, 165, 0.4);
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(255, 0, 110, 0.7), 0 0 100px rgba(131, 56, 236, 0.5);
    }
    50% {
        box-shadow: 0 0 80px rgba(255, 0, 110, 0.9), 0 0 120px rgba(131, 56, 236, 0.7);
    }
}

.wood-e127:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 0 100px rgba(255, 0, 110, 1), 0 0 140px rgba(131, 56, 236, 0.8);
    animation: none;
}

.column_last_0e1d {
    padding: 2rem 4rem;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 0 80px rgba(255, 0, 110, 0.8), 0 0 120px rgba(131, 56, 236, 0.6);
    flex-direction: column;
    gap: 0.75rem;
    border: 3px solid rgba(6, 255, 165, 0.5);
}

.first_71e1 {
    background: rgba(131, 56, 236, 0.1);
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 30px rgba(131, 56, 236, 0.4), inset 0 0 30px rgba(131, 56, 236, 0.05);
}

.first_71e1:hover {
    background: var(--neon-purple);
    color: var(--text-white);
    box-shadow: 0 0 60px rgba(131, 56, 236, 0.8), inset 0 0 60px rgba(131, 56, 236, 0.2);
    transform: translateY(-4px) scale(1.05);
}

.inner-5c23 {
    background: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.6);
    border: 2px solid rgba(6, 255, 165, 0.8);
}

.inner-5c23:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px rgba(6, 255, 165, 0.9);
}

.hard-9ccf {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-white);
    font-weight: 700;
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.7), 0 0 80px rgba(131, 56, 236, 0.5);
    border: 2px solid rgba(255, 0, 110, 0.5);
}

.hard-9ccf:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 80px rgba(255, 0, 110, 0.9), 0 0 100px rgba(131, 56, 236, 0.7);
}

.search-cool-1139 {
    font-size: 1em;
    font-weight: 700;
}

.shadow-yellow-2f4b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section - 超现代霓虹风格 */
.heading-968f {
    padding: 10rem 0 6rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.heading-968f::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(255, 0, 110, 0.2) 0%, 
        rgba(131, 56, 236, 0.15) 30%, 
        transparent 70%);
    animation: heroRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes heroRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.heading-968f::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
    pointer-events: none;
}

.banner_bright_8cff {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .banner_bright_8cff {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.pattern_clean_d4ba {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.status-87bc {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.description-d723 {
    margin-bottom: 2rem;
}

.large-8ef0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .large-8ef0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.selected_f83c {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(6, 255, 165, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-normal);
}

.selected_f83c:hover {
    background: rgba(6, 255, 165, 0.1);
    border-color: rgba(6, 255, 165, 0.5);
    box-shadow: 0 0 30px rgba(6, 255, 165, 0.5);
    transform: translateY(-4px);
}

.label-fresh-f22d {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(6, 255, 165, 0.8));
}

.large-531a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.disabled_huge_485b {
    display: flex;
    justify-content: center;
    align-items: center;
}

.west-755f {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: 0 0 80px rgba(255, 0, 110, 0.6), 0 0 120px rgba(131, 56, 236, 0.4);
    transition: var(--transition-slow);
    border: 3px solid rgba(6, 255, 165, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

.west-755f:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 0 100px rgba(255, 0, 110, 0.9), 0 0 150px rgba(131, 56, 236, 0.6);
    border-color: rgba(6, 255, 165, 0.6);
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.bright-f867 {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel_inner_a850 {
    margin-bottom: 1rem;
}

.video-prev-5996 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.shadow_9e35 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .shadow_9e35 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .shadow_9e35.rough_7a22 {
        direction: rtl;
    }
    
    .shadow_9e35.rough_7a22 > * {
        direction: ltr;
    }
}

.black-60dd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.black-60dd:first-child {
    margin-top: 0;
}

.label_4c0c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.north_48d4 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: 0 0 60px rgba(131, 56, 236, 0.5);
    transition: var(--transition-normal);
    border: 2px solid rgba(6, 255, 165, 0.2);
    filter: brightness(1.05) contrast(1.05);
}

.north_48d4:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 80px rgba(131, 56, 236, 0.8);
    border-color: rgba(6, 255, 165, 0.5);
}

/* Payment Methods - 玻璃拟态卡片 */
.popup_ee78 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup_ee78 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-next-8e9d {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(6, 255, 165, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.component-next-8e9d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 255, 165, 0.1), transparent);
    transition: var(--transition-normal);
}

.component-next-8e9d:hover::before {
    left: 100%;
}

.component-next-8e9d:hover {
    border-color: rgba(6, 255, 165, 0.5);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.link_plasma_0ad4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
    font-weight: 800;
}

.chip_753c {
    list-style: none;
}

.chip_753c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip_753c li:last-child {
    border-bottom: none;
}

/* Games Features */
.title-bottom-13e0 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.surface-1631 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.label-bottom-634b {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_pink_1308 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight - 超现代霓虹卡片 */
.dark-18e5 {
    margin: 3rem 0;
}

.sort_pink_c9bc {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    color: var(--text-white);
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff, #06ffa5) 1;
    box-shadow: 0 0 80px rgba(255, 0, 110, 0.5), 0 0 120px rgba(131, 56, 236, 0.4);
    position: relative;
    overflow: hidden;
}

.sort_pink_c9bc::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(6, 255, 165, 0.1), transparent 30%);
    animation: bonusRotate 4s linear infinite;
}

@keyframes bonusRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.caption_b091 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(6, 255, 165, 0.8);
    position: relative;
    z-index: 1;
}

.sort-da1f {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 6s ease infinite;
    position: relative;
    z-index: 1;
}

.left_a940 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
    position: relative;
    z-index: 1;
}

/* VIP Tiers - 霓虹玻璃卡片 */
.button-current-1d12 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .button-current-1d12 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_559a {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 0, 110, 0.3);
    transition: var(--transition-normal);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
}

.fixed_559a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
    opacity: 0;
    transition: var(--transition-normal);
}

.fixed_559a:hover::before {
    opacity: 1;
}

.fixed_559a:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 0, 110, 0.6);
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.6), 0 0 80px rgba(131, 56, 236, 0.4);
}

.layout_action_22b3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.paper-04df {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

.link-old-b50d {
    color: var(--neon-pink);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.hero_7047 {
    list-style: none;
}

.hero_7047 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hero_7047 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.nav-prev-7d52 {
    margin: 2rem 0;
}

.pattern-c666 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.nav_active_056b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav_active_056b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-58ea {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 208, 132, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.icon-down-48e5 {
    font-size: 1.25rem;
}

.notification-fluid-dfcd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.wood_6aad,
.tertiary_bc21 {
    text-align: center;
    margin: 2rem 0;
}

.small_ce25,
.shade_5bb0 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections - 超现代霓虹风格 */
.easy_148b {
    margin: 3rem 0;
    text-align: center;
}

.surface_steel_603b {
    background: rgba(26, 11, 46, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(6, 255, 165, 0.2);
    border-bottom: 2px solid rgba(6, 255, 165, 0.2);
}

.surface_steel_603b::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(255, 0, 110, 0.15) 0%, 
        rgba(131, 56, 236, 0.1) 30%, 
        transparent 70%);
    animation: ctaRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes ctaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.focus-963b {
    position: relative;
    z-index: 1;
}

.next_73db {
    margin-bottom: 1rem;
}

.brown_b30b {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detail-hot-e7e3 {
    margin-bottom: 3rem;
}

.accordion-complex-5aef {
    margin-top: 3rem;
}

.search-lower-ab14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .search-lower-ab14 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-lower-ab14 .selected_f83c {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(6, 255, 165, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.search-lower-ab14 .selected_f83c:hover {
    border-color: rgba(6, 255, 165, 0.6);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.5);
}

.tag_6313 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 6s ease infinite;
    margin-bottom: 0.75rem;
}

.liquid-4e31 {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer - 玻璃拟态 */
.button-b3fc {
    background: rgba(26, 11, 46, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 2px solid rgba(6, 255, 165, 0.2);
    margin-top: 6rem;
    box-shadow: 0 -8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
}

.button-b3fc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 0, 110, 0.5), 
        rgba(131, 56, 236, 0.5), 
        rgba(6, 255, 165, 0.5), 
        transparent);
}

.mask-middle-3080 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .mask-middle-3080 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mask-middle-3080 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notice-bottom-a9d2 {
    margin-bottom: 1rem;
}

.main-new-4ea9 img {
    margin-bottom: 1rem;
}

.widget-smooth-6c5e {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification-full-9c66 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
    font-weight: 800;
}

.selected-f61e {
    list-style: none;
}

.selected-f61e li {
    margin-bottom: 0.5rem;
}

.selected-f61e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.selected-f61e a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    transform: translateX(5px);
}

.box_white_b5ad {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.hovered-6955 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(6, 255, 165, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    border: 2px solid rgba(6, 255, 165, 0.2);
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.2);
}

.hovered-6955:hover {
    background: var(--accent-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.8);
    border-color: var(--accent-color);
}

.aside_full_a1fb {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.aside_full_a1fb p {
    margin-bottom: 0.25rem;
}

.grid-6da4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .grid-6da4 {
        flex-direction: row;
    }
}

.hard-2678 {
    text-align: center;
}

@media (min-width: 768px) {
    .hard-2678 {
        text-align: left;
    }
}

.hard-2678 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown-out-925b {
    font-size: 0.75rem !important;
}

.pattern-green-187c {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notice_57ed {
    padding: 0.5rem 1rem;
    background: rgba(6, 255, 165, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid rgba(6, 255, 165, 0.3);
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.3);
    transition: var(--transition-normal);
}

.notice_57ed:hover {
    background: rgba(6, 255, 165, 0.2);
    box-shadow: 0 0 30px rgba(6, 255, 165, 0.6);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.blue_f58f {
    animation: fadeInUp 0.6s ease-out;
}

.tooltip-static-5412 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.background_action_f408 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_action_f408 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.paper_7789 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paper_7789 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-mini-5f3b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.modal-mini-5f3b .label-bottom-634b {
    font-size: 1.25rem;
}

.modal-mini-5f3b .tertiary_978f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.carousel-7e8e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-7e8e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_9df9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: var(--transition-normal);
}

.paragraph_9df9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_fast_6ef1 {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-accent);
}

.status_a689 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay-fresh-7bf0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-d9cc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_copper_7be1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.hero_copper_7be1 .header_pink_1308 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_copper_7be1 .notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-ffcb {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.main_first_6297 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.main_first_6297 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.main_first_6297 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.description-0609 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.footer-simple-4289 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cold_071d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cold_071d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.cold_071d input {
    padding: 1rem;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.cold_071d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.cold_071d input::placeholder {
    color: var(--text-muted);
}

.section_stale_2b69 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.wrapper-fixed-2e36 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.wrapper-fixed-2e36 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.pro_3237 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.pro_3237:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.nav_active_056b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_active_056b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-58ea {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.layout-58ea .icon-down-48e5 {
    font-size: 1.25rem;
}

.layout-58ea .notification-fluid-dfcd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.item-lite-fb8a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_9638 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.outline_9638 .label-bottom-634b {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_9638 .header_pink_1308 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outline_9638 .notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy_e740 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_top_a396 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.focus_top_a396 .dark_1c96 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focus_top_a396 .caption_abce {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-2c0d {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.wrapper-d3f7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-d3f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-next-8a1d {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: var(--transition-normal);
}

.icon-next-8a1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_center_fc24 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.easy-65ea {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.message-2e9a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lite-9507 {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.lite-9507:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.lite-6ae6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-6ae6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-upper-a206 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.backdrop-upper-a206:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module_full_c5f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-1df9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-0998 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture_f200 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.picture-hard-0f8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel-13e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-4eee {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.tertiary-4eee .container-warm-75e3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary-4eee .heading_8e57 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_530d {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.smooth-be7d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_4e89 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.texture_4e89 .label-bottom-634b {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_4e89 .header_pink_1308 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_4e89 .notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver-d4a8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-d4a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_dim_c319 {
    padding: 1rem;
    background: rgba(168, 85, 247, 0.1);
    color: var(--info-color);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.menu_dim_c319:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.detail_3a48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail_3a48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-2a16 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.module-2a16:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.selected-3b3b {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_1a60 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption_b091 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.alert-hot-ad72 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.over_0575 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_8a60 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: var(--transition-normal);
}

.module_8a60:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel-gas-3338 {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}

.notification_11e2 {
    flex: 1;
}

.search_in_8ae6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.surface_dirty_7ab6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gradient-narrow-5f0a {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-9468 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-steel-b8f1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.backdrop-steel-b8f1 .dark_1c96 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop-steel-b8f1 .caption_abce {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary_bc21 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.paragraph_wide_8d9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_wide_8d9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.active_9561 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_9561 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_638c {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.tall_638c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under-a243 {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-2477 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component-dirty-2ad6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media_dynamic_83ca {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.description-99be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-fddb {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.smooth_44fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-606e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-15b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-be7d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_4e89 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.texture_4e89 .header_pink_1308 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.texture_4e89 .notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-fluid-5d16 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.element-over-9c78 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-over-9c78 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-over-9c78 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny_b7c5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tiny_b7c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze-d5c5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.column_current_d3be {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.photo_636f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.item_liquid_0e63 {
    padding: 1.5rem;
}

.sidebar_d62f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.outer-6983 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outer-6983 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.outer-6983 li:last-child {
    border-bottom: none;
}

.outer-6983 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.menu_cadf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_cadf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_4a2f {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.tooltip_4a2f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.right-c73e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_c854 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress_8636 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.west-0e7b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-dynamic-19db {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_fluid_6836 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.slider_ed77 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-6932 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-cold-5862 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-9f2c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal_985e {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.overlay_2a4b {
    text-align: center;
}

.info_dark_6ae6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast-82db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.message-d8e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed_4390 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.pressed_4390 .header_pink_1308 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed_4390 .notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-3bab {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .article-3bab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article-3bab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_42c8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.light_42c8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_hard_7e96 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.photo_1bb5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header_pink_1308 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.menu-e258 {
    padding: 1.5rem;
}

.notification-mini-4b36 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden-bright-e446 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden-bright-e446 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.hidden-bright-e446 li:last-child {
    border-bottom: none;
}

.hidden-bright-e446 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.panel-dark-9788 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-dark-9788 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_brown_d05d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.card_brown_d05d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_hovered_06a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paper_6963 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.block_fast_6ef1 {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.status_a689 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-fresh-7bf0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-b0c0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-purple-9009 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.layout_action_f814 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_b7bf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.action-c108 {
    display: flex;
    gap: 1rem;
}

.action-c108 .small_2272 {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_9434 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outline_active_c832 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.shade-yellow-c706 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade-yellow-c706 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.shade-yellow-c706 li:last-child {
    border-bottom: none;
}

.shade-yellow-c706 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.label-left-3607 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .label-left-3607 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-left-3607 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_6eeb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs_6eeb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fresh-a58e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.gradient-b9c3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.container-warm-75e3 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.thick_69a6 {
    font-size: 1rem;
}

.layout-bright-29b2 {
    padding: 1.5rem;
}

.heading_8e57 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.clean_bc8e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.clean_bc8e .overlay_2a4b {
    text-align: center;
}

.clean_bc8e .fast-82db {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.clean_bc8e .search_lite_8b17 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component_440a {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.component_440a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.logo_rough_7b6f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_rough_7b6f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.preview-e34b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.preview-e34b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_09f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-complex-47dc {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.stone-9720 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_e3d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.full_035f {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-1299 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.smooth_b409 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_hard_bd09 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.filter-next-ef96 {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-next-ef96.label_e9ad {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.filter-next-ef96.stale_9a2c {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.filter-next-ef96.surface-lower-309e {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1e1b4b;
}

.filter-next-ef96.east_5441 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #1e1b4b;
}

.filter-next-ef96.border-f6ce {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #1e1b4b;
}

.avatar_first_d526 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide-0960 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_lower_0b0c {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.cool_8306 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.easy_e740 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy_e740 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.easy_e740 li:last-child {
    border-bottom: none;
}

.easy_e740 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.secondary_460c {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary_460c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_460c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_2bf0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.background_2bf0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_2bf0.next_0f1d {
    grid-column: 1 / -1;
    border-color: rgba(168, 85, 247, 0.3);
}

@media (min-width: 1024px) {
    .background_2bf0.next_0f1d {
        grid-column: span 3;
    }
}

.status-first-d9a2 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    background: rgba(251, 191, 36, 0.05);
}

.background_2bf0.next_0f1d .status-first-d9a2 {
    background: rgba(168, 85, 247, 0.1);
}

.caption_d930 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.thumbnail_b76f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.background_2bf0.next_0f1d .thumbnail_b76f {
    color: var(--info-color);
}

.shade_ac8c {
    padding: 1.5rem;
    text-align: center;
}

.section-gas-c13e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.background_2bf0.next_0f1d .section-gas-c13e {
    color: var(--info-color);
}

.menu_lower_eeea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.upper_dbda {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
}

/* Platform Page Specific Styles */
.thick_99a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick_99a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-dynamic-569a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition-normal);
}

.tag-dynamic-569a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-6d8b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline_9638 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-down-48e5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-c666 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge-b4b7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-7911 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.left_101c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.section-current-4faa {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notice_57ed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.image_40ad {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.image_40ad .overlay_2a4b {
    text-align: center;
}

.image_40ad .info_dark_6ae6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.image_40ad .fast-82db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focus-8e61 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_current_da56 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.dropdown_stone_7845 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink-1c6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_8eb8 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.wide_daed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_orange_ced8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_simple_a9ca {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_simple_a9ca {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video_simple_a9ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-west-378b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.icon-west-378b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label_iron_a003 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    background: rgba(251, 191, 36, 0.05);
}

.wrapper-hard-ff8b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.lite_02e8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.caption-fixed-f199 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caption-fixed-f199.accordion-de9e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.caption-fixed-f199.button_pink_fa5b {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-color);
}

.caption-fixed-f199.input-e719 {
    background: rgba(168, 85, 247, 0.2);
    color: var(--info-color);
}

.sort-e133 {
    padding: 1.5rem;
    text-align: center;
}

.accordion_b721 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_eccd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background_eccd .gas-74bd {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.fixed_74c3 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.fixed_74c3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slider-c6e3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.container_purple_c39f {
    text-align: center;
}

.container_purple_c39f .info_dark_6ae6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.container_purple_c39f .fast-82db {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.item-west-75b7 { text-align: center; }
.focus_580a { text-align: left; }
.summary_5d4a { text-align: right; }

.medium_d2bc { margin-bottom: 0; }
.nav-8cfc { margin-bottom: 0.5rem; }
.fresh-dd9d { margin-bottom: 1rem; }
.dynamic-906b { margin-bottom: 1.5rem; }
.border_9de8 { margin-bottom: 2rem; }

.filter-fluid-d719 { margin-top: 0; }
.pagination-static-f4c7 { margin-top: 0.5rem; }
.icon-7e20 { margin-top: 1rem; }
.outline-26b8 { margin-top: 1.5rem; }
.banner_orange_4940 { margin-top: 2rem; }

.fn-hidden-38aa { display: none; }
.fn-visible-38aa { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .heading-968f {
        padding: 6rem 0 3rem;
    }
    
    .banner_bright_8cff {
        text-align: center;
    }
    
    .shadow_9e35 {
        text-align: center;
    }
    
    .large-8ef0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .description_advanced_b711,
    .grid-021d,
    .surface_steel_603b,
    .button-b3fc {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .heading-968f {
        background: none;
    }
}
/* css-noise: 58e6 */
.promo-block-v3 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
