/* {$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%; }
}

.footer_full_3ca0 {
    background: var(--hero-gradient);
    min-height: 100vh;
    position: relative;
}

/* Container */
.disabled-cbe9 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .disabled-cbe9 {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .disabled-cbe9 {
        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 - 玻璃拟态 */
.hard_7044 {
    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);
}

.hard_7044::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;
}

.short_cfb6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .short_cfb6 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .medium_f65e {
        grid-column: 1;
    }
    
    .description_complex_1040 {
        grid-column: 2;
    }
    
    .element-3e6b {
        grid-column: 3;
    }
}

.medium_f65e img {
    height: 55px;
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(6, 255, 165, 0.6));
}

.medium_f65e:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(6, 255, 165, 0.9));
}

/* Navigation */
.widget-76c2 {
    display: none;
}

@media (min-width: 1024px) {
    .widget-76c2 {
        display: block;
    }
}

/* Grouped Navigation */
.accordion-copper-9819 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.brown-6a2c {
    position: relative;
}

.focus_short_df84 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.brown-6a2c .tag-tall-4339 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.tag-tall-4339 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.form_huge_7ae9 {
    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;
}

.form_huge_7ae9::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);
}

.form_huge_7ae9:hover::before,
.form_huge_7ae9.fn-active-b244::before {
    left: 100%;
}

.form_huge_7ae9:hover,
.form_huge_7ae9.fn-active-b244 {
    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 */
.row_37bf {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .row_37bf {
        display: flex;
    }
}

/* Mobile Register Button */
.description_complex_1040 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .description_complex_1040 {
        display: none;
    }
}


/* 移动端注册按钮 - 霓虹发光 */
.image_inner_6572 {
    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;
}

.image_inner_6572::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);
    }
}

.image_inner_6572: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 */
.element-3e6b {
    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) {
    .element-3e6b {
        display: none;
    }
}

.element-3e6b 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);
}

.element-3e6b.fn-active-b244 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.element-3e6b.fn-active-b244 span:nth-child(2) {
    opacity: 0;
}

.element-3e6b.fn-active-b244 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.message_7cae {
    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);
}

.message_7cae.fn-active-b244 {
    display: block;
    max-height: 600px;
}

/* Prevent body scroll when menu is open */
body.progress-motion-d61c {
    overflow: hidden;
}

.filter-f71c {
    list-style: none;
    padding: 0.75rem 0;
}

.warm-a03e {
    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;
}

.warm-a03e::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);
}

.warm-a03e:hover::before,
.warm-a03e.fn-active-b244::before {
    width: 4px;
}

.warm-a03e:hover,
.warm-a03e.fn-active-b244 {
    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;
}


/* 移动端注册按钮 - 霓虹动画 */
.warm-a03e.carousel-bdd2 {
    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;
}

.warm-a03e.carousel-bdd2::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);
    }
}

.warm-a03e.carousel-bdd2: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 - 霓虹发光按钮 */
.over_e745 {
    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;
}

.over_e745::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;
}

.over_e745:hover::before {
    width: 300px;
    height: 300px;
}

.thick-f879 {
    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);
}

.thick-f879: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);
}

.description-next-9ee5 {
    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);
}

.description-next-9ee5: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);
}

.preview-last-31e4 {
    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);
    }
}

.preview-last-31e4: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;
}

.fluid_0abd {
    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);
}

.highlight-fresh-8183 {
    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);
}

.highlight-fresh-8183: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);
}

.status-fe60 {
    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);
}

.status-fe60:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px rgba(6, 255, 165, 0.9);
}

.panel-fe73 {
    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);
}

.panel-fe73: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);
}

.hard-38f7 {
    font-size: 1em;
    font-weight: 700;
}

.search_648d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section - 超现代霓虹风格 */
.gas-ec1e {
    padding: 10rem 0 6rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.gas-ec1e::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); }
}

.gas-ec1e::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
    pointer-events: none;
}

.hard-aea8 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hard-aea8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.texture-stale-f838 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.preview-paper-1590 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.section-4b90 {
    margin-bottom: 2rem;
}

.dropdown_basic_c0c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .dropdown_basic_c0c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-orange-a5d5 {
    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);
}

.layout-orange-a5d5: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);
}

.static_b125 {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(6, 255, 165, 0.8));
}

.title-da36 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.focus-action-449a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.backdrop-78aa {
    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);
}

.backdrop-78aa: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;
}

.description-bottom-1824 {
    text-align: center;
    margin-bottom: 3rem;
}

.primary-inner-47ac {
    margin-bottom: 1rem;
}

.thumbnail_left_afb4 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.thumbnail_d075 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .thumbnail_d075 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .thumbnail_d075.basic-a57e {
        direction: rtl;
    }
    
    .thumbnail_d075.basic-a57e > * {
        direction: ltr;
    }
}

.blue_810a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.blue_810a:first-child {
    margin-top: 0;
}

.column-ec03 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.video-hot-ea51 {
    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);
}

.video-hot-ea51: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 - 玻璃拟态卡片 */
.hover-hard-cc8a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-hard-cc8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination_674b {
    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;
}

.pagination_674b::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);
}

.pagination_674b:hover::before {
    left: 100%;
}

.pagination_674b: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);
}

.picture-mini-2afe {
    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;
}

.filter-lite-7361 {
    list-style: none;
}

.filter-lite-7361 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-lite-7361 li:last-child {
    border-bottom: none;
}

/* Games Features */
.dropdown-dark-357c {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shadow_4987 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.carousel-4f0e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-south-04fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight - 超现代霓虹卡片 */
.photo_a861 {
    margin: 3rem 0;
}

.accordion-simple-49d4 {
    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;
}

.accordion-simple-49d4::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); }
}

.dim-78d1 {
    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;
}

.black-e7e8 {
    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;
}

.orange-f2cb {
    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 - 霓虹玻璃卡片 */
.first-eb37 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .first-eb37 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-fd16 {
    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;
}

.info-fd16::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);
}

.info-fd16:hover::before {
    opacity: 1;
}

.info-fd16: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);
}

.gold_eb7d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.background-soft-22ae {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

.static-048c {
    color: var(--neon-pink);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.tooltip_basic_e81e {
    list-style: none;
}

.tooltip_basic_e81e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tooltip_basic_e81e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.row-1d0d {
    margin: 2rem 0;
}

.pressed_b627 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.accordion_warm_64a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .accordion_warm_64a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-4420 {
    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);
}

.heading-bb00 {
    font-size: 1.25rem;
}

.pattern_green_aec9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.mask-new-c507,
.shadow-last-acdd {
    text-align: center;
    margin: 2rem 0;
}

.progress_0f29,
.simple-29de {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections - 超现代霓虹风格 */
.lite_baf0 {
    margin: 3rem 0;
    text-align: center;
}

.slow_fd93 {
    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);
}

.slow_fd93::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); }
}

.large_ccd9 {
    position: relative;
    z-index: 1;
}

.down_3f7f {
    margin-bottom: 1rem;
}

.alert_17b5 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section_7a7e {
    margin-bottom: 3rem;
}

.background-7790 {
    margin-top: 3rem;
}

.title_huge_e8a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .title_huge_e8a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_huge_e8a6 .layout-orange-a5d5 {
    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);
}

.title_huge_e8a6 .layout-orange-a5d5:hover {
    border-color: rgba(6, 255, 165, 0.6);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.5);
}

.nav_purple_2740 {
    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;
}

.photo-upper-b695 {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer - 玻璃拟态 */
.breadcrumb_yellow_0004 {
    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;
}

.breadcrumb_yellow_0004::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);
}

.input-complex-4b33 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .input-complex-4b33 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input-complex-4b33 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.chip_fc96 {
    margin-bottom: 1rem;
}

.module_out_f9e4 img {
    margin-bottom: 1rem;
}

.preview-tiny-4361 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-0f51 {
    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;
}

.notice-9ac2 {
    list-style: none;
}

.notice-9ac2 li {
    margin-bottom: 0.5rem;
}

.notice-9ac2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.notice-9ac2 a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    transform: translateX(5px);
}

.logo_61be {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.caption-small-445e {
    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);
}

.caption-small-445e: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);
}

.progress-plasma-5682 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.progress-plasma-5682 p {
    margin-bottom: 0.25rem;
}

.item_8556 {
    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) {
    .item_8556 {
        flex-direction: row;
    }
}

.outer_0c78 {
    text-align: center;
}

@media (min-width: 768px) {
    .outer_0c78 {
        text-align: left;
    }
}

.outer_0c78 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.alert_soft_bb39 {
    font-size: 0.75rem !important;
}

.north-da4f {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.white_0e8e {
    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);
}

.white_0e8e: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);
    }
}

.pink_3f41 {
    animation: fadeInUp 0.6s ease-out;
}

.gradient_rough_bb25 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.alert_orange_4c06 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_orange_4c06 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pressed_cf4b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed_cf4b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current_9568 {
    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);
}

.current_9568 .carousel-4f0e {
    font-size: 1.25rem;
}

.current_9568 .brown_1863 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.texture_dark_a9b1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture_dark_a9b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-2b94 {
    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);
}

.background-2b94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_out_07bf {
    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);
}

.light_b1a6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery-f78a {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_warm_e476 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_easy_dad2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.summary_easy_dad2 .hidden-south-04fd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary_easy_dad2 .widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-50eb {
    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);
}

.top-38f4 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.top-38f4 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.top-38f4 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.detail-bdd8 {
    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);
}

.left_54f9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grid_a430 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.grid_a430 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid_a430 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);
}

.grid_a430 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.grid_a430 input::placeholder {
    color: var(--text-muted);
}

.focused-e812 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.yellow-01cf {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.yellow-01cf input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.row_medium_ab68 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.row_medium_ab68:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.accordion_warm_64a4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_warm_64a4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-4420 {
    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);
}

.dark-4420 .heading-bb00 {
    font-size: 1.25rem;
}

.dark-4420 .pattern_green_aec9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.first_dc64 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over_7e42 {
    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);
}

.over_7e42 .carousel-4f0e {
    font-size: 2rem;
    flex-shrink: 0;
}

.over_7e42 .hidden-south-04fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.over_7e42 .widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-5dec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron-243a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.iron-243a .border-tall-2b57 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.iron-243a .logo-d845 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-0da0 {
    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);
}

.hovered-950d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hovered-950d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-solid-8f82 {
    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);
}

.filter-solid-8f82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.current_383a {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.component_stone_8388 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notice_ae2a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.outer-55dd {
    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);
}

.outer-55dd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.panel_0eee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_0eee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.soft_01c6 {
    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);
}

.soft_01c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element_3c50 {
    font-size: 2rem;
    flex-shrink: 0;
}

.last-8e78 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption-smooth-dd3f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.status-bottom-18ce {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fast-3849 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_800d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-21a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.banner-21a5 .black_270e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner-21a5 .popup-9935 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-pressed-4029 {
    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);
}

.notice_yellow_e15d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_hard_2e87 {
    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);
}

.feature_hard_2e87 .carousel-4f0e {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_hard_2e87 .hidden-south-04fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature_hard_2e87 .widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-cold-846b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-cold-846b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section_tiny_a472 {
    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);
}

.section_tiny_a472:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.video-c131 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-c131 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_f550 {
    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);
}

.row_f550:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-8ddb {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline_complex_94d8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dim-78d1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.prev-1dfe {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.header_cold_727e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_last_8198 {
    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);
}

.heading_last_8198:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over-9dae {
    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);
}

.header-851c {
    flex: 1;
}

.over-76df {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.banner-fluid-94ed {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.primary-11c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_69a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-fdc3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.complex-fdc3 .border-tall-2b57 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.complex-fdc3 .logo-d845 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-last-acdd {
    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);
}

.stone_4d9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stone_4d9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.image_f3ee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_f3ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_239d {
    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);
}

.detail_239d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame_glass_a8b0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron_9de3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.new_822d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media-d580 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.cold-306f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-large-3f16 {
    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);
}

.next_2ec8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.large-a6bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_action_f3d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_yellow_e15d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_hard_2e87 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature_hard_2e87 .hidden-south-04fd {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature_hard_2e87 .widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_first_04aa {
    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);
}

.modal-in-99cf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .modal-in-99cf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal-in-99cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-fresh-a83c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wrapper-fresh-a83c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel_1af8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.solid-e457 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.content-green-0bff {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.prev-27c9 {
    padding: 1.5rem;
}

.main-center-88f3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero_5f8a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero_5f8a 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;
}

.hero_5f8a li:last-child {
    border-bottom: none;
}

.hero_5f8a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.glass-2408 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass-2408 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full-060e {
    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);
}

.full-060e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.slow-c994 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-static-afd7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-white-8c56 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.medium-6c1a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.breadcrumb-db32 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_8cac {
    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);
}

.input-271f {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag_fresh_3a7d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel-0fe9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info_basic_518c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sort_338d {
    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);
}

.shadow_be55 {
    text-align: center;
}

.component_left_c5da {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-8b0a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.blue_067d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-east-8f45 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.avatar-east-8f45 .hidden-south-04fd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-east-8f45 .widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_7018 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail_7018 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_7018 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_0083 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient_0083:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro_b86b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.green-a36e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hidden-south-04fd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.motion_d5e9 {
    padding: 1.5rem;
}

.widget-3fac {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.main-fe77 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-fe77 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;
}

.main-fe77 li:last-child {
    border-bottom: none;
}

.main-fe77 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.green-a063 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-a063 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_d733 {
    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);
}

.menu_d733:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_upper_586f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower-bd3f {
    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);
}

.notice_out_07bf {
    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;
}

.light_b1a6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-f78a {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-tall-e1a2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.in_f12b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.pattern-f2d8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide-e63a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pagination-dim-4a7c {
    display: flex;
    gap: 1rem;
}

.pagination-dim-4a7c .layout-stone-a61f {
    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;
}

.cold_5f7b {
    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);
}

.row-full-f07e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.content-steel-d3ef {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-steel-d3ef 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;
}

.content-steel-d3ef li:last-child {
    border-bottom: none;
}

.content-steel-d3ef li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.last_1068 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last_1068 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last_1068 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-iron-ee99 {
    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-iron-ee99:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-4f0d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.carousel-7a41 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.black_270e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shade-b51d {
    font-size: 1rem;
}

.mask_mini_5936 {
    padding: 1.5rem;
}

.popup-9935 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.focused-5715 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.focused-5715 .shadow_be55 {
    text-align: center;
}

.focused-5715 .component-8b0a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.focused-5715 .left-5ed6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.silver_ac78 {
    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);
}

.silver_ac78:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.lite-a5a2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite-a5a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current_a295 {
    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);
}

.current_a295:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_d2ad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer_6dbb {
    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);
}

.summary_prev_ef72 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-wide-645e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pattern-4a1d {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_slow_73ff {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bottom_4d8b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_273b {
    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);
}

.component_9425 {
    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;
}

.component_9425.yellow_d62a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.component_9425.caption_1390 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.component_9425.tertiary_north_42de {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1e1b4b;
}

.component_9425.section_white_2b14 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #1e1b4b;
}

.component_9425.row_3af5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #1e1b4b;
}

.fresh_1fde {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_969a {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-rough-7750 {
    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);
}

.pressed_4dd8 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.east-5dec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east-5dec 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;
}

.east-5dec li:last-child {
    border-bottom: none;
}

.east-5dec li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.avatar-over-92cd {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar-over-92cd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-over-92cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-top-1a8c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message-top-1a8c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-top-1a8c.tertiary-medium-004f {
    grid-column: 1 / -1;
    border-color: rgba(168, 85, 247, 0.3);
}

@media (min-width: 1024px) {
    .message-top-1a8c.tertiary-medium-004f {
        grid-column: span 3;
    }
}

.warm_dd00 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    background: rgba(251, 191, 36, 0.05);
}

.message-top-1a8c.tertiary-medium-004f .warm_dd00 {
    background: rgba(168, 85, 247, 0.1);
}

.paper-4b38 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tag-middle-8c9c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.message-top-1a8c.tertiary-medium-004f .tag-middle-8c9c {
    color: var(--info-color);
}

.tall_5af2 {
    padding: 1.5rem;
    text-align: center;
}

.down-8ccd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.message-top-1a8c.tertiary-medium-004f .down-8ccd {
    color: var(--info-color);
}

.label-9821 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.orange_5971 {
    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 */
.new_3a87 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new_3a87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_pink_f4b1 {
    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);
}

.dropdown_pink_f4b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_0acf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.over_7e42 {
    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);
}

.heading-bb00 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pressed_b627 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard_3312 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-large-920a {
    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);
}

.sidebar_d34a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pressed-8e28 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.white_0e8e {
    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);
}

.iron_e0ab {
    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);
}

.iron_e0ab .shadow_be55 {
    text-align: center;
}

.iron_e0ab .component_left_c5da {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.iron_e0ab .component-8b0a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element_166d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall-4cff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.clean-b6eb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-10a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-9534 {
    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);
}

.paper_e28b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_glass_5526 {
    color: var(--text-gray);
    line-height: 1.6;
}

.new-c731 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .new-c731 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new-c731 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-71f1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hard-71f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old_ae8a {
    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);
}

.overlay-26e2 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.logo_b342 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.block-paper-54c6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.block-paper-54c6.panel_5666 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.block-paper-54c6.title_3d1c {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-color);
}

.block-paper-54c6.header_slow_d577 {
    background: rgba(168, 85, 247, 0.2);
    color: var(--info-color);
}

.menu_red_8f67 {
    padding: 1.5rem;
    text-align: center;
}

.banner_cool_522c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pagination-fc55 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pagination-fc55 .banner-6b17 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.liquid_1f10 {
    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);
}

.liquid_1f10:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.video-dark-2108 {
    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);
}

.secondary_0ce7 {
    text-align: center;
}

.secondary_0ce7 .component_left_c5da {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.secondary_0ce7 .component-8b0a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.heading-yellow-9901 { text-align: center; }
.wide-d8e1 { text-align: left; }
.media-ad34 { text-align: right; }

.status_9c00 { margin-bottom: 0; }
.slider_c223 { margin-bottom: 0.5rem; }
.feature_motion_a517 { margin-bottom: 1rem; }
.right_7501 { margin-bottom: 1.5rem; }
.texture_soft_8d2a { margin-bottom: 2rem; }

.left_6b3b { margin-top: 0; }
.tooltip-4d6a { margin-top: 0.5rem; }
.steel-b142 { margin-top: 1rem; }
.feature_d4c2 { margin-top: 1.5rem; }
.plasma-1382 { margin-top: 2rem; }

.fn-hidden-b244 { display: none; }
.fn-visible-b244 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .gas-ec1e {
        padding: 6rem 0 3rem;
    }
    
    .hard-aea8 {
        text-align: center;
    }
    
    .thumbnail_d075 {
        text-align: center;
    }
    
    .dropdown_basic_c0c1 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hard_7044,
    .message_7cae,
    .slow_fd93,
    .breadcrumb_yellow_0004 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .gas-ec1e {
        background: none;
    }
}
/* css-noise: 5782 */
.promo-block-s8 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
