/* {$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%; }
}

.highlight_8994 {
    background: var(--hero-gradient);
    min-height: 100vh;
    position: relative;
}

/* Container */
.copper_a26e {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .copper_a26e {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .copper_a26e {
        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 - 玻璃拟态 */
.breadcrumb-next-2246 {
    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);
}

.breadcrumb-next-2246::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;
}

.form_e7c4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .form_e7c4 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .surface-old-0ca1 {
        grid-column: 1;
    }
    
    .sort_8b5a {
        grid-column: 2;
    }
    
    .frame_c8fa {
        grid-column: 3;
    }
}

.surface-old-0ca1 img {
    height: 55px;
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(6, 255, 165, 0.6));
}

.surface-old-0ca1:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(6, 255, 165, 0.9));
}

/* Navigation */
.inner-15e9 {
    display: none;
}

@media (min-width: 1024px) {
    .inner-15e9 {
        display: block;
    }
}

/* Grouped Navigation */
.bright_8d5d {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.chip-cold-e866 {
    position: relative;
}

.badge-bronze-d8c7 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.chip-cold-e866 .alert-liquid-df86 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.alert-liquid-df86 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.copper_e810 {
    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;
}

.copper_e810::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);
}

.copper_e810:hover::before,
.copper_e810.fn-active-c155::before {
    left: 100%;
}

.copper_e810:hover,
.copper_e810.fn-active-c155 {
    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 */
.overlay_wood_e83c {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .overlay_wood_e83c {
        display: flex;
    }
}

/* Mobile Register Button */
.sort_8b5a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .sort_8b5a {
        display: none;
    }
}


/* 移动端注册按钮 - 霓虹发光 */
.notice_tiny_721f {
    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;
}

.notice_tiny_721f::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);
    }
}

.notice_tiny_721f: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 */
.frame_c8fa {
    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) {
    .frame_c8fa {
        display: none;
    }
}

.frame_c8fa 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);
}

.frame_c8fa.fn-active-c155 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.frame_c8fa.fn-active-c155 span:nth-child(2) {
    opacity: 0;
}

.frame_c8fa.fn-active-c155 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.notice-72d1 {
    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);
}

.notice-72d1.fn-active-c155 {
    display: block;
    max-height: 600px;
}

/* Prevent body scroll when menu is open */
body.solid-2d71 {
    overflow: hidden;
}

.clean-9bda {
    list-style: none;
    padding: 0.75rem 0;
}

.link_warm_7050 {
    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;
}

.link_warm_7050::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);
}

.link_warm_7050:hover::before,
.link_warm_7050.fn-active-c155::before {
    width: 4px;
}

.link_warm_7050:hover,
.link_warm_7050.fn-active-c155 {
    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;
}


/* 移动端注册按钮 - 霓虹动画 */
.link_warm_7050.component-629a {
    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;
}

.link_warm_7050.component-629a::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);
    }
}

.link_warm_7050.component-629a: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 - 霓虹发光按钮 */
.notice_left_f846 {
    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;
}

.notice_left_f846::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;
}

.notice_left_f846:hover::before {
    width: 300px;
    height: 300px;
}

.module_white_449f {
    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);
}

.module_white_449f: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);
}

.button_dynamic_7a05 {
    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);
}

.button_dynamic_7a05: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);
}

.avatar_b23a {
    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);
    }
}

.avatar_b23a: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_3376 {
    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);
}

.purple_d003 {
    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);
}

.purple_d003: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);
}

.carousel_4d49 {
    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);
}

.carousel_4d49:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px rgba(6, 255, 165, 0.9);
}

.sidebar-hard-4ac4 {
    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);
}

.sidebar-hard-4ac4: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);
}

.description_cbd6 {
    font-size: 1em;
    font-weight: 700;
}

.layout-glass-c7ea {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section - 超现代霓虹风格 */
.header-b9bb {
    padding: 10rem 0 6rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.header-b9bb::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); }
}

.header-b9bb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
    pointer-events: none;
}

.disabled_paper_c4bb {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .disabled_paper_c4bb {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.button_fast_afa4 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.black_8248 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.static_a4c6 {
    margin-bottom: 2rem;
}

.picture_east_7f0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .picture_east_7f0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_simple_510d {
    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);
}

.photo_simple_510d: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);
}

.heading_b689 {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(6, 255, 165, 0.8));
}

.north-898e {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.background_brown_9770 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stale-b45d {
    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);
}

.stale-b45d: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;
}

.thumbnail_top_f582 {
    text-align: center;
    margin-bottom: 3rem;
}

.card-43fb {
    margin-bottom: 1rem;
}

.avatar-c1d8 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.slider-1380 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .slider-1380 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .slider-1380.up_9f09 {
        direction: rtl;
    }
    
    .slider-1380.up_9f09 > * {
        direction: ltr;
    }
}

.block-fresh-ead3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.block-fresh-ead3:first-child {
    margin-top: 0;
}

.form-98d9 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.picture_green_f699 {
    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);
}

.picture_green_f699: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 - 玻璃拟态卡片 */
.component-3f4f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component-3f4f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_next_51e1 {
    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;
}

.link_next_51e1::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);
}

.link_next_51e1:hover::before {
    left: 100%;
}

.link_next_51e1: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);
}

.white_a5b5 {
    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;
}

.nav-8a9c {
    list-style: none;
}

.nav-8a9c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-8a9c li:last-child {
    border-bottom: none;
}

/* Games Features */
.stone_5af4 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.avatar-c17a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.soft-b5aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner_rough_edcc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight - 超现代霓虹卡片 */
.column_dynamic_db9e {
    margin: 3rem 0;
}

.warm_591c {
    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;
}

.warm_591c::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); }
}

.module-e9fc {
    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;
}

.table-0190 {
    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;
}

.fixed_0c04 {
    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 - 霓虹玻璃卡片 */
.element_6dcd {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element_6dcd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-650c {
    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;
}

.box-650c::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);
}

.box-650c:hover::before {
    opacity: 1;
}

.box-650c: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);
}

.form_a0ac {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.slider_06f1 {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

.popup_fcc0 {
    color: var(--neon-pink);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.info-fresh-2e0a {
    list-style: none;
}

.info-fresh-2e0a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.info-fresh-2e0a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.progress_ea8c {
    margin: 2rem 0;
}

.section_bf40 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.sidebar-blue-5d0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .sidebar-blue-5d0e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_short_48fd {
    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);
}

.full-d206 {
    font-size: 1.25rem;
}

.filter_a767 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.north_fb14,
.tag-fixed-8b6d {
    text-align: center;
    margin: 2rem 0;
}

.description-480b,
.photo_hovered_f171 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections - 超现代霓虹风格 */
.yellow-5196 {
    margin: 3rem 0;
    text-align: center;
}

.search_6a86 {
    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);
}

.search_6a86::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); }
}

.info-rough-c10d {
    position: relative;
    z-index: 1;
}

.lower_b820 {
    margin-bottom: 1rem;
}

.hard_4d84 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.active_e274 {
    margin-bottom: 3rem;
}

.easy-0067 {
    margin-top: 3rem;
}

.white-efb2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .white-efb2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-efb2 .photo_simple_510d {
    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);
}

.white-efb2 .photo_simple_510d:hover {
    border-color: rgba(6, 255, 165, 0.6);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.5);
}

.description-easy-cf15 {
    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;
}

.surface_soft_fb35 {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer - 玻璃拟态 */
.fluid-6304 {
    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;
}

.fluid-6304::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);
}

.prev_dc0e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .prev_dc0e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .prev_dc0e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.hidden-0800 {
    margin-bottom: 1rem;
}

.pink-b9aa img {
    margin-bottom: 1rem;
}

.white_d338 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content-up-4697 {
    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;
}

.text_269c {
    list-style: none;
}

.text_269c li {
    margin-bottom: 0.5rem;
}

.text_269c a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.text_269c a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    transform: translateX(5px);
}

.left_8467 {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.glass_b84b {
    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);
}

.glass_b84b: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);
}

.selected_dc13 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.selected_dc13 p {
    margin-bottom: 0.25rem;
}

.carousel-f7f7 {
    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) {
    .carousel-f7f7 {
        flex-direction: row;
    }
}

.text_39be {
    text-align: center;
}

@media (min-width: 768px) {
    .text_39be {
        text-align: left;
    }
}

.text_39be p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gold-2be8 {
    font-size: 0.75rem !important;
}

.fast_a67d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notification_e2fc {
    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);
}

.notification_e2fc: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);
    }
}

.border-inner-7964 {
    animation: fadeInUp 0.6s ease-out;
}

.media-dim-3932 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.info_static_d2fd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_static_d2fd {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.section_2950 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_2950 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-4462 {
    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);
}

.new-4462 .soft-b5aa {
    font-size: 1.25rem;
}

.new-4462 .orange-e0fc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.caption-last-355a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption-last-355a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_3e45 {
    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);
}

.video_3e45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.iron-3bf6 {
    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);
}

.overlay-top-5a8b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.header-9a04 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_168c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.current-0a4e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.current-0a4e .banner_rough_edcc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.current-0a4e .pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_9095 {
    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);
}

.pro_d42c {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pro_d42c img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.pro_d42c img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.focus_black_2fd7 {
    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);
}

.photo-pressed-832e {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.full_def5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.full_def5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.full_def5 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);
}

.full_def5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.full_def5 input::placeholder {
    color: var(--text-muted);
}

.modal-5e91 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip_tiny_930d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.chip_tiny_930d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.status_f675 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.status_f675:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.sidebar-blue-5d0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-blue-5d0e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element_short_48fd {
    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);
}

.element_short_48fd .full-d206 {
    font-size: 1.25rem;
}

.element_short_48fd .filter_a767 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.motion-9447 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-3340 {
    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-3340 .soft-b5aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-3340 .banner_rough_edcc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-3340 .pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_south_e1bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_wide_23b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.grid_wide_23b4 .link-cbd9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.grid_wide_23b4 .cool_0ed4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tall-d544 {
    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);
}

.active_24ec {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_24ec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red_0841 {
    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);
}

.red_0841:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_next_6d32 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.heading-medium-ff41 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.white-54b8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel_a64c {
    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);
}

.panel_a64c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.breadcrumb-ed13 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-ed13 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-large-3c87 {
    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);
}

.logo-large-3c87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-cd71 {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-d0f6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.container_gold_19b0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.modal-26fd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.layout-a4c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_ae97 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_white_9319 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.tertiary_white_9319 .button-glass-b3f4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary_white_9319 .highlight-2b4d {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_76fe {
    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);
}

.cool-e5fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_396c {
    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);
}

.hover_396c .soft-b5aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_396c .banner_rough_edcc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hover_396c .pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-be51 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-be51 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-5a6f {
    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);
}

.image-5a6f:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.picture_next_2a85 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_next_2a85 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small_6d63 {
    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);
}

.small_6d63:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.active_a13f {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-04fb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.module-e9fc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.short_d8ce {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.disabled-bottom-1119 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-smooth-5aaf {
    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);
}

.notification-smooth-5aaf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper_c38c {
    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);
}

.outline_dc15 {
    flex: 1;
}

.heading-6bc0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.summary_large_f53c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hard_c324 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_4ffd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inner_27ed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.inner_27ed .link-cbd9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inner_27ed .cool_0ed4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-fixed-8b6d {
    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);
}

.hovered-62b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered-62b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.advanced_1add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced_1add {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner_a459 {
    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);
}

.inner_a459:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-static-f8f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_5dad {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input_91e3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search-full-b659 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.stone-e6c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green_1885 {
    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);
}

.thumbnail_2b68 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-5a7d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-bronze-3b55 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool-e5fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_396c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hover_396c .banner_rough_edcc {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover_396c .pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-advanced-c2c5 {
    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);
}

.section-05d7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .section-05d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-05d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-6d58 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-6d58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.module-yellow-5782 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.out-d34e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.surface-5bf4 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.first_fb2b {
    padding: 1.5rem;
}

.hover-b01c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.box-5629 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-5629 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;
}

.box-5629 li:last-child {
    border-bottom: none;
}

.box-5629 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.highlight_slow_1de5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_slow_1de5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_70ad {
    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);
}

.west_70ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card-d485 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-a510 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.carousel-325a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.status_basic_218c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outer-bf04 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification_bronze_bcd1 {
    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);
}

.search_fd7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.row_63c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_0678 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-704c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner_wide_4b62 {
    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);
}

.panel_7006 {
    text-align: center;
}

.iron-eecf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tiny-a1a0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.link_ceb4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-rough-b10a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.sidebar-rough-b10a .banner_rough_edcc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-rough-b10a .pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east_f214 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .east_f214 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east_f214 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-94cb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.form-94cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.plasma-4a15 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.nav_solid_1b6e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.banner_rough_edcc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.purple-e128 {
    padding: 1.5rem;
}

.pagination-afc7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer_2731 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_2731 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;
}

.footer_2731 li:last-child {
    border-bottom: none;
}

.footer_2731 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.slider_selected_1cdd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_selected_1cdd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_4d99 {
    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);
}

.simple_4d99:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.selected-10bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.component-bf50 {
    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);
}

.iron-3bf6 {
    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;
}

.overlay-top-5a8b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header-9a04 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-c80c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_2f24 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.breadcrumb-inner-5150 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag-plasma-505a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.icon-3e56 {
    display: flex;
    gap: 1rem;
}

.icon-3e56 .sort-2a72 {
    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;
}

.complex-58f1 {
    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);
}

.current_34b3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.notice_3b3b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice_3b3b 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;
}

.notice_3b3b li:last-child {
    border-bottom: none;
}

.notice_3b3b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.banner_fast_1f66 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_fast_1f66 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner_fast_1f66 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed_36f3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fixed_36f3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_iron_58e9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.carousel-blue-2c74 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.button-glass-b3f4 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.grid-fixed-270e {
    font-size: 1rem;
}

.heading-static-fca3 {
    padding: 1.5rem;
}

.highlight-2b4d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.carousel-07be {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.carousel-07be .panel_7006 {
    text-align: center;
}

.carousel-07be .tiny-a1a0 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.carousel-07be .alert-d368 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accent_c561 {
    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);
}

.accent_c561:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.status_8374 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_8374 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-3e91 {
    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);
}

.focused-3e91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-advanced-766a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid_0ab5 {
    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);
}

.picture_50f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main_new_b13f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info_5ac5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-west-3ed0 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading_73c3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-ca6e {
    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);
}

.pagination_motion_a213 {
    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;
}

.pagination_motion_a213.tag-down-7109 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.pagination_motion_a213.sort_fresh_1e0a {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.pagination_motion_a213.tooltip_9ba6 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1e1b4b;
}

.pagination_motion_a213.new_69f3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #1e1b4b;
}

.pagination_motion_a213.media_short_e812 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #1e1b4b;
}

.bronze-07da {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bright_faa7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern_6d35 {
    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);
}

.plasma-ec01 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.popup_south_e1bd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup_south_e1bd 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;
}

.popup_south_e1bd li:last-child {
    border-bottom: none;
}

.popup_south_e1bd li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.gallery-55af {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-55af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-55af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north-9107 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.north-9107:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-9107.thumbnail_fixed_a6dc {
    grid-column: 1 / -1;
    border-color: rgba(168, 85, 247, 0.3);
}

@media (min-width: 1024px) {
    .north-9107.thumbnail_fixed_a6dc {
        grid-column: span 3;
    }
}

.picture_84b4 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    background: rgba(251, 191, 36, 0.05);
}

.north-9107.thumbnail_fixed_a6dc .picture_84b4 {
    background: rgba(168, 85, 247, 0.1);
}

.outline-gas-2db1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.image-steel-729f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.north-9107.thumbnail_fixed_a6dc .image-steel-729f {
    color: var(--info-color);
}

.secondary-rough-7188 {
    padding: 1.5rem;
    text-align: center;
}

.old_825a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.north-9107.thumbnail_fixed_a6dc .old_825a {
    color: var(--info-color);
}

.accordion_54f7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tabs_f44f {
    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 */
.fixed-4126 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed-4126 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east_cbaa {
    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);
}

.east_cbaa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-0ec5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-3340 {
    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);
}

.full-d206 {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_bf40 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_advanced_d431 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-b7ac {
    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);
}

.list-274a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.modal_selected_cee6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notification_e2fc {
    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);
}

.hovered-96bd {
    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);
}

.hovered-96bd .panel_7006 {
    text-align: center;
}

.hovered-96bd .iron-eecf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.hovered-96bd .tiny-a1a0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dropdown_under_88b5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_tiny_cb16 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.card-590b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input-c90b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-fluid-e009 {
    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);
}

.box_ae39 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tiny_3161 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_4b7b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .input_4b7b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_4b7b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_east_b3d4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card_east_b3d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper-e5bf {
    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);
}

.block_4a8e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.preview_clean_3bb8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.first_c46f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.first_c46f.silver_a26d {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.first_c46f.notice-0954 {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-color);
}

.first_c46f.light_ef1d {
    background: rgba(168, 85, 247, 0.2);
    color: var(--info-color);
}

.form-lower-6e6b {
    padding: 1.5rem;
    text-align: center;
}

.fresh_a746 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture-6fe2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.picture-6fe2 .overlay-full-3807 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.menu_1d19 {
    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);
}

.menu_1d19:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.green_e7d8 {
    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);
}

.hovered_849d {
    text-align: center;
}

.hovered_849d .iron-eecf {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hovered_849d .tiny-a1a0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tertiary_down_3925 { text-align: center; }
.clean-2a42 { text-align: left; }
.black-4937 { text-align: right; }

.aside-fd93 { margin-bottom: 0; }
.description-4c86 { margin-bottom: 0.5rem; }
.tag_730d { margin-bottom: 1rem; }
.container_edb3 { margin-bottom: 1.5rem; }
.card-silver-2c7e { margin-bottom: 2rem; }

.media-light-3933 { margin-top: 0; }
.message_463c { margin-top: 0.5rem; }
.disabled_mini_da70 { margin-top: 1rem; }
.sidebar-fa59 { margin-top: 1.5rem; }
.hidden_upper_a0af { margin-top: 2rem; }

.fn-hidden-c155 { display: none; }
.fn-visible-c155 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .header-b9bb {
        padding: 6rem 0 3rem;
    }
    
    .disabled_paper_c4bb {
        text-align: center;
    }
    
    .slider-1380 {
        text-align: center;
    }
    
    .picture_east_7f0a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-next-2246,
    .notice-72d1,
    .search_6a86,
    .fluid-6304 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .header-b9bb {
        background: none;
    }
}
/* css-noise: beef */
.widget-item-w4 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
