/* {$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%; }
}

.title-red-6783 {
    background: var(--hero-gradient);
    min-height: 100vh;
    position: relative;
}

/* Container */
.under-d4c4 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .under-d4c4 {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .under-d4c4 {
        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 - 玻璃拟态 */
.slider_over_5e82 {
    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);
}

.slider_over_5e82::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;
}

.upper-8244 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .upper-8244 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .left-7129 {
        grid-column: 1;
    }
    
    .black_40c8 {
        grid-column: 2;
    }
    
    .main_first_1af8 {
        grid-column: 3;
    }
}

.left-7129 img {
    height: 55px;
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(6, 255, 165, 0.6));
}

.left-7129:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(6, 255, 165, 0.9));
}

/* Navigation */
.detail-231e {
    display: none;
}

@media (min-width: 1024px) {
    .detail-231e {
        display: block;
    }
}

/* Grouped Navigation */
.photo_next_fab1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.primary_left_7d03 {
    position: relative;
}

.short_33e9 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.primary_left_7d03 .stone_7a8e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.stone_7a8e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.detail-lower-cd5d {
    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;
}

.detail-lower-cd5d::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);
}

.detail-lower-cd5d:hover::before,
.detail-lower-cd5d.fn-active-65e6::before {
    left: 100%;
}

.detail-lower-cd5d:hover,
.detail-lower-cd5d.fn-active-65e6 {
    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 */
.content_simple_f073 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .content_simple_f073 {
        display: flex;
    }
}

/* Mobile Register Button */
.black_40c8 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .black_40c8 {
        display: none;
    }
}


/* 移动端注册按钮 - 霓虹发光 */
.surface-2cb6 {
    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;
}

.surface-2cb6::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);
    }
}

.surface-2cb6: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 */
.main_first_1af8 {
    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) {
    .main_first_1af8 {
        display: none;
    }
}

.main_first_1af8 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);
}

.main_first_1af8.fn-active-65e6 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.main_first_1af8.fn-active-65e6 span:nth-child(2) {
    opacity: 0;
}

.main_first_1af8.fn-active-65e6 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.text-81ec {
    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);
}

.text-81ec.fn-active-65e6 {
    display: block;
    max-height: 600px;
}

/* Prevent body scroll when menu is open */
body.label-center-76af {
    overflow: hidden;
}

.accordion-2128 {
    list-style: none;
    padding: 0.75rem 0;
}

.title-hovered-b301 {
    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;
}

.title-hovered-b301::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);
}

.title-hovered-b301:hover::before,
.title-hovered-b301.fn-active-65e6::before {
    width: 4px;
}

.title-hovered-b301:hover,
.title-hovered-b301.fn-active-65e6 {
    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;
}


/* 移动端注册按钮 - 霓虹动画 */
.title-hovered-b301.feature_cd38 {
    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;
}

.title-hovered-b301.feature_cd38::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);
    }
}

.title-hovered-b301.feature_cd38: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 - 霓虹发光按钮 */
.slow-5e9f {
    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;
}

.slow-5e9f::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;
}

.slow-5e9f:hover::before {
    width: 300px;
    height: 300px;
}

.south-28e2 {
    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);
}

.south-28e2: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);
}

.sidebar_aed5 {
    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);
}

.sidebar_aed5: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);
}

.summary-b3ff {
    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);
    }
}

.summary-b3ff: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;
}

.button-hot-f1ef {
    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);
}

.search_under_2137 {
    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);
}

.search_under_2137: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);
}

.main-east-7d2d {
    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);
}

.main-east-7d2d:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px rgba(6, 255, 165, 0.9);
}

.fluid_5170 {
    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);
}

.fluid_5170: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);
}

.image_dirty_0291 {
    font-size: 1em;
    font-weight: 700;
}

.texture_green_a63a {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section - 超现代霓虹风格 */
.label_38a7 {
    padding: 10rem 0 6rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.label_38a7::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); }
}

.label_38a7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
    pointer-events: none;
}

.brown-acc0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .brown-acc0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.texture-b067 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.over_ecdf {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.north-ca83 {
    margin-bottom: 2rem;
}

.light_f0bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .light_f0bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-b455 {
    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);
}

.label-b455: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);
}

.popup-soft-3822 {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(6, 255, 165, 0.8));
}

.chip-bright-2c43 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.top_a24e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hard-e6ad {
    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);
}

.hard-e6ad: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;
}

.article_silver_e828 {
    text-align: center;
    margin-bottom: 3rem;
}

.plasma_f827 {
    margin-bottom: 1rem;
}

.grid_stale_51db {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.input-pink-1c76 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .input-pink-1c76 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .input-pink-1c76.box-over-4abe {
        direction: rtl;
    }
    
    .input-pink-1c76.box-over-4abe > * {
        direction: ltr;
    }
}

.pink-d683 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pink-d683:first-child {
    margin-top: 0;
}

.right_04ab {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.green_6eb2 {
    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);
}

.green_6eb2: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 - 玻璃拟态卡片 */
.menu_38b1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu_38b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_new_d761 {
    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;
}

.row_new_d761::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);
}

.row_new_d761:hover::before {
    left: 100%;
}

.row_new_d761: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);
}

.old-9104 {
    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;
}

.sort_63a2 {
    list-style: none;
}

.sort_63a2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort_63a2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.dim_a762 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.simple-3805 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.heading-fba9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_rough_d2f9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight - 超现代霓虹卡片 */
.label_c431 {
    margin: 3rem 0;
}

.avatar-05f6 {
    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;
}

.avatar-05f6::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); }
}

.hidden_6910 {
    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;
}

.right-d0d3 {
    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;
}

.accordion-steel-b38d {
    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 - 霓虹玻璃卡片 */
.video-a75e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-a75e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_c61e {
    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;
}

.gallery_c61e::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);
}

.gallery_c61e:hover::before {
    opacity: 1;
}

.gallery_c61e: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);
}

.plasma_e113 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lite_bb26 {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

.copper_1ab7 {
    color: var(--neon-pink);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.tag-gold-7ef9 {
    list-style: none;
}

.tag-gold-7ef9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tag-gold-7ef9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.old-5b94 {
    margin: 2rem 0;
}

.red-0b4f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.caption-slow-7178 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .caption-slow-7178 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom_72f4 {
    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);
}

.first-3346 {
    font-size: 1.25rem;
}

.short-3f1e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.up_ed40,
.content_in_fac4 {
    text-align: center;
    margin: 2rem 0;
}

.nav-99e9,
.sidebar-fresh-ba44 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections - 超现代霓虹风格 */
.shade_pressed_5b9a {
    margin: 3rem 0;
    text-align: center;
}

.carousel-bottom-2d38 {
    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);
}

.carousel-bottom-2d38::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); }
}

.left_426f {
    position: relative;
    z-index: 1;
}

.detail-old-bc2c {
    margin-bottom: 1rem;
}

.cool-597a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.silver_39d9 {
    margin-bottom: 3rem;
}

.tag_fb45 {
    margin-top: 3rem;
}

.card_a56d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card_a56d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_a56d .label-b455 {
    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);
}

.card_a56d .label-b455:hover {
    border-color: rgba(6, 255, 165, 0.6);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.5);
}

.highlight-b0dd {
    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;
}

.light-33c6 {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer - 玻璃拟态 */
.west_c5a6 {
    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;
}

.west_c5a6::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);
}

.focused_8705 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .focused_8705 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focused_8705 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.last_b998 {
    margin-bottom: 1rem;
}

.active_gas_3d59 img {
    margin-bottom: 1rem;
}

.pagination_26b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.north_f791 {
    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;
}

.search-3f0e {
    list-style: none;
}

.search-3f0e li {
    margin-bottom: 0.5rem;
}

.search-3f0e a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.search-3f0e a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    transform: translateX(5px);
}

.focused-1e34 {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.action-099d {
    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);
}

.action-099d: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);
}

.tabs-pro-231b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tabs-pro-231b p {
    margin-bottom: 0.25rem;
}

.search-3a6b {
    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) {
    .search-3a6b {
        flex-direction: row;
    }
}

.shadow_easy_d694 {
    text-align: center;
}

@media (min-width: 768px) {
    .shadow_easy_d694 {
        text-align: left;
    }
}

.shadow_easy_d694 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.action-266a {
    font-size: 0.75rem !important;
}

.bottom-97b4 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pro-8ff2 {
    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);
}

.pro-8ff2: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);
    }
}

.icon-3d13 {
    animation: fadeInUp 0.6s ease-out;
}

.secondary-left-bb69 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.frame_b951 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_b951 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.liquid_42ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_42ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_d2ea {
    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);
}

.chip_d2ea .heading-fba9 {
    font-size: 1.25rem;
}

.chip_d2ea .section-7bb1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.motion-629b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .motion-629b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze-bfbd {
    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);
}

.bronze-bfbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-693f {
    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);
}

.paper-9cf1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tooltip_large_91e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_first_cda2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-soft-585e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.icon-soft-585e .frame_rough_d2f9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon-soft-585e .frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current-9308 {
    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);
}

.solid_6476 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.solid_6476 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.solid_6476 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.up-3078 {
    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);
}

.active-dark-afe4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.east_7e90 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.east_7e90 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.east_7e90 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);
}

.east_7e90 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.east_7e90 input::placeholder {
    color: var(--text-muted);
}

.modal_d101 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu_cool_f062 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.menu_cool_f062 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.south_3804 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.south_3804:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.caption-slow-7178 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-slow-7178 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom_72f4 {
    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);
}

.bottom_72f4 .first-3346 {
    font-size: 1.25rem;
}

.bottom_72f4 .short-3f1e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.texture-outer-fa62 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_gold_9898 {
    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);
}

.chip_gold_9898 .heading-fba9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_gold_9898 .frame_rough_d2f9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip_gold_9898 .frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-81de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-complex-551c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.wrapper-complex-551c .simple_d6d5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-complex-551c .brown_2924 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_plasma_0f03 {
    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);
}

.paragraph-advanced-00bc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-advanced-00bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_6718 {
    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);
}

.outline_6718:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_5424 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.link-wide-71b4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.south-03d7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge_soft_bf16 {
    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);
}

.badge_soft_bf16:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.column_156c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_156c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_9cb2 {
    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);
}

.hidden_9cb2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-d553 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main_old_d31c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-6264 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article_south_f83f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.list_orange_71d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_6681 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.under-7179 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.under-7179 .outline-warm-889f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.under-7179 .search_pro_00b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-middle-84e0 {
    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);
}

.west-f703 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel_action_4104 {
    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);
}

.carousel_action_4104 .heading-fba9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_action_4104 .frame_rough_d2f9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel_action_4104 .frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-c42d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cold-c42d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-pro-390c {
    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);
}

.popup-pro-390c:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.bright_2689 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bright_2689 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_817c {
    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);
}

.easy_817c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_5a99 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-hard-33c8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hidden_6910 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.new-b276 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.tabs-82a1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-center-6b3a {
    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);
}

.main-center-6b3a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-simple-494c {
    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);
}

.black_be82 {
    flex: 1;
}

.mask-4ac3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.center_272b {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.column_dark_aeef {
    color: var(--text-gray);
    line-height: 1.6;
}

.search_da0b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_4da6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.background_4da6 .simple_d6d5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background_4da6 .brown_2924 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_in_fac4 {
    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);
}

.button_easy_0f7b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_easy_0f7b {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.mini_8749 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mini_8749 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow_0313 {
    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);
}

.narrow_0313:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_c4be {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption_4a9a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture-wood-431a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.glass_27b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lite-1c2e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.east-dcf1 {
    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);
}

.pro_a0a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite-f035 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-06ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.west-f703 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel_action_4104 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.carousel_action_4104 .frame_rough_d2f9 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel_action_4104 .frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_9231 {
    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);
}

.highlight_19a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_19a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_19a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_right_db4e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_right_db4e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.silver_9f3f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.card_2ca9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.frame_a1e3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hovered_ba9f {
    padding: 1.5rem;
}

.banner-a126 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner-ca8a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-ca8a 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;
}

.banner-ca8a li:last-child {
    border-bottom: none;
}

.banner-ca8a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.link_5ee3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_5ee3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_ec71 {
    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_ec71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_8a82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item_medium_7cd5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.heading-out-8772 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pink_52f1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort-dirty-ba67 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_wood_eb61 {
    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);
}

.caption-action-11b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_e6af {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-2cd2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.action_6ea6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.lite_22cc {
    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);
}

.module_next_4ddb {
    text-align: center;
}

.block_last_ffb7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mini-3117 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.new-30bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_9f49 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.heading_9f49 .frame_rough_d2f9 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_9f49 .frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_current_85d7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo_current_85d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo_current_85d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status-red-2a14 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.status-red-2a14:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-brown-ab3e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.smooth-0235 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.frame_rough_d2f9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.title_lite_720d {
    padding: 1.5rem;
}

.frame_dirty_c466 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-c24c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-c24c 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;
}

.link-c24c li:last-child {
    border-bottom: none;
}

.link-c24c li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.large_8c9f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large_8c9f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-687f {
    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);
}

.table-687f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-d658 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_copper_f80d {
    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);
}

.frame-693f {
    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;
}

.paper-9cf1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_large_91e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-a0f7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-dark-ced3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.steel-1c5a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.west_3fe5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.description_short_5664 {
    display: flex;
    gap: 1rem;
}

.description_short_5664 .carousel_b77e {
    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;
}

.accordion_7d05 {
    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);
}

.tabs-4e42 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table-ded2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-ded2 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;
}

.table-ded2 li:last-child {
    border-bottom: none;
}

.table-ded2 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.new_38dc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .new_38dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new_38dc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-small-6de1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hover-small-6de1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description_ce43 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.heading-d210 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.outline-warm-889f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.grid_warm_add8 {
    font-size: 1rem;
}

.bottom_3b7c {
    padding: 1.5rem;
}

.search_pro_00b6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.main-d51e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.main-d51e .module_next_4ddb {
    text-align: center;
}

.main-d51e .mini-3117 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.main-d51e .icon_tall_e24a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.upper-35e6 {
    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);
}

.upper-35e6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.hard-3346 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard-3346 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_f819 {
    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);
}

.dynamic_f819:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer_59f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_new_bd3f {
    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);
}

.north-b164 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-upper-76ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail_8e85 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_d60b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hovered-eac6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.black_f44c {
    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);
}

.article_3b1a {
    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;
}

.article_3b1a.heading-purple-30b8 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.article_3b1a.east_d09c {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.article_3b1a.surface-da70 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1e1b4b;
}

.article_3b1a.smooth-a8af {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #1e1b4b;
}

.article_3b1a.message-red-6681 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #1e1b4b;
}

.card-040d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dropdown_wood_7911 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom-6362 {
    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);
}

.logo-hard-4f5c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.header-81de {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-81de 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;
}

.header-81de li:last-child {
    border-bottom: none;
}

.header-81de li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.shadow-bottom-83f2 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow-bottom-83f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow-bottom-83f2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-e0a0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.block-e0a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-e0a0.primary_1aab {
    grid-column: 1 / -1;
    border-color: rgba(168, 85, 247, 0.3);
}

@media (min-width: 1024px) {
    .block-e0a0.primary_1aab {
        grid-column: span 3;
    }
}

.column_e403 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    background: rgba(251, 191, 36, 0.05);
}

.block-e0a0.primary_1aab .column_e403 {
    background: rgba(168, 85, 247, 0.1);
}

.paragraph_easy_2d63 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.container-74ef {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.block-e0a0.primary_1aab .container-74ef {
    color: var(--info-color);
}

.form_e1a6 {
    padding: 1.5rem;
    text-align: center;
}

.old-7096 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.block-e0a0.primary_1aab .old-7096 {
    color: var(--info-color);
}

.clean-5a9b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sort_advanced_b6b7 {
    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 */
.caption-glass-1d3c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-glass-1d3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-3095 {
    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);
}

.image-3095:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden-cec5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_gold_9898 {
    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);
}

.first-3346 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-0b4f {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop-paper-4e74 {
    color: var(--text-gray);
    line-height: 1.6;
}

.action-82c9 {
    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_out_b690 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.search_e36a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pro-8ff2 {
    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);
}

.clean-b68d {
    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);
}

.clean-b68d .module_next_4ddb {
    text-align: center;
}

.clean-b68d .block_last_ffb7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.clean-b68d .mini-3117 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip-2dad {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_c471 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.widget-7749 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-18fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-advanced-d443 {
    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);
}

.active-liquid-60ca {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-ad89 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-static-76cc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-static-76cc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-static-76cc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media_ea23 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.media_ea23:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_05c3 {
    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);
}

.accordion-4c79 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_steel_9231 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.first_6a8f {
    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_6a8f.progress-7564 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.first_6a8f.tertiary_d7f4 {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-color);
}

.first_6a8f.column_90d2 {
    background: rgba(168, 85, 247, 0.2);
    color: var(--info-color);
}

.nav-8d1a {
    padding: 1.5rem;
    text-align: center;
}

.article-d6bf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dark_a8ad {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dark_a8ad .soft_abaf {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.wide_9b2e {
    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);
}

.wide_9b2e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.progress-3d76 {
    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);
}

.element_048f {
    text-align: center;
}

.element_048f .block_last_ffb7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.element_048f .mini-3117 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.background-dynamic-8df5 { text-align: center; }
.overlay_gold_c13f { text-align: left; }
.border-new-23fa { text-align: right; }

.middle-2d0d { margin-bottom: 0; }
.link-stone-260e { margin-bottom: 0.5rem; }
.pagination_huge_9315 { margin-bottom: 1rem; }
.notification-54a3 { margin-bottom: 1.5rem; }
.tabs_tiny_4755 { margin-bottom: 2rem; }

.nav_first_787a { margin-top: 0; }
.clean_393f { margin-top: 0.5rem; }
.cool-1d92 { margin-top: 1rem; }
.article_86d8 { margin-top: 1.5rem; }
.search-bright-1950 { margin-top: 2rem; }

.fn-hidden-65e6 { display: none; }
.fn-visible-65e6 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .label_38a7 {
        padding: 6rem 0 3rem;
    }
    
    .brown-acc0 {
        text-align: center;
    }
    
    .input-pink-1c76 {
        text-align: center;
    }
    
    .light_f0bd {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .slider_over_5e82,
    .text-81ec,
    .carousel-bottom-2d38,
    .west_c5a6 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .label_38a7 {
        background: none;
    }
}
/* css-noise: 7f6b */
.promo-block-a5 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
