/* {$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%; }
}

.prev-64ac {
    background: var(--hero-gradient);
    min-height: 100vh;
    position: relative;
}

/* Container */
.status-brown-b218 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .status-brown-b218 {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .status-brown-b218 {
        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 - 玻璃拟态 */
.content_stone_82e4 {
    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);
}

.content_stone_82e4::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;
}

.focus_green_b65f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .focus_green_b65f {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .status_f9e4 {
        grid-column: 1;
    }
    
    .purple_cec7 {
        grid-column: 2;
    }
    
    .fixed-e519 {
        grid-column: 3;
    }
}

.status_f9e4 img {
    height: 55px;
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 20px rgba(6, 255, 165, 0.6));
}

.status_f9e4:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 30px rgba(6, 255, 165, 0.9));
}

/* Navigation */
.outline-a662 {
    display: none;
}

@media (min-width: 1024px) {
    .outline-a662 {
        display: block;
    }
}

/* Grouped Navigation */
.out_b7f1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.info-ba83 {
    position: relative;
}

.detail-8349 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.info-ba83 .selected_31c8 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.selected_31c8 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.wrapper-hard-ebf0 {
    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;
}

.wrapper-hard-ebf0::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);
}

.wrapper-hard-ebf0:hover::before,
.wrapper-hard-ebf0.fn-active-3697::before {
    left: 100%;
}

.wrapper-hard-ebf0:hover,
.wrapper-hard-ebf0.fn-active-3697 {
    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 */
.under-3e4a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .under-3e4a {
        display: flex;
    }
}

/* Mobile Register Button */
.purple_cec7 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .purple_cec7 {
        display: none;
    }
}


/* 移动端注册按钮 - 霓虹发光 */
.prev_6ed2 {
    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;
}

.prev_6ed2::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);
    }
}

.prev_6ed2: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 */
.fixed-e519 {
    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) {
    .fixed-e519 {
        display: none;
    }
}

.fixed-e519 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);
}

.fixed-e519.fn-active-3697 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.fixed-e519.fn-active-3697 span:nth-child(2) {
    opacity: 0;
}

.fixed-e519.fn-active-3697 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.new_8711 {
    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);
}

.new_8711.fn-active-3697 {
    display: block;
    max-height: 600px;
}

/* Prevent body scroll when menu is open */
body.disabled-hard-2682 {
    overflow: hidden;
}

.layout-40cb {
    list-style: none;
    padding: 0.75rem 0;
}

.pattern_9d79 {
    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;
}

.pattern_9d79::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);
}

.pattern_9d79:hover::before,
.pattern_9d79.fn-active-3697::before {
    width: 4px;
}

.pattern_9d79:hover,
.pattern_9d79.fn-active-3697 {
    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;
}


/* 移动端注册按钮 - 霓虹动画 */
.pattern_9d79.label-5c7b {
    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;
}

.pattern_9d79.label-5c7b::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);
    }
}

.pattern_9d79.label-5c7b: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 - 霓虹发光按钮 */
.backdrop_advanced_1acf {
    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;
}

.backdrop_advanced_1acf::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;
}

.backdrop_advanced_1acf:hover::before {
    width: 300px;
    height: 300px;
}

.aside_29f6 {
    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);
}

.aside_29f6: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);
}

.article-action-5b1e {
    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);
}

.article-action-5b1e: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);
}

.black_2b32 {
    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);
    }
}

.black_2b32: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;
}

.primary_hard_db28 {
    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);
}

.cold_9f63 {
    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);
}

.cold_9f63: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);
}

.heading-narrow-d2c8 {
    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);
}

.heading-narrow-d2c8:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px rgba(6, 255, 165, 0.9);
}

.item-42d2 {
    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);
}

.item-42d2: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);
}

.secondary_top_2849 {
    font-size: 1em;
    font-weight: 700;
}

.table_gold_84db {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section - 超现代霓虹风格 */
.form-ec1f {
    padding: 10rem 0 6rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.form-ec1f::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); }
}

.form-ec1f::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
    pointer-events: none;
}

.breadcrumb_prev_bb7a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .breadcrumb_prev_bb7a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.block-3b77 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.progress-9e91 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.north-0ba3 {
    margin-bottom: 2rem;
}

.detail-a0b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .detail-a0b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_hot_4c63 {
    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);
}

.tag_hot_4c63: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);
}

.caption_1d24 {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(6, 255, 165, 0.8));
}

.popup_bb24 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.paragraph-3cae {
    display: flex;
    justify-content: center;
    align-items: center;
}

.border-mini-7b3c {
    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);
}

.border-mini-7b3c: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;
}

.mask_d147 {
    text-align: center;
    margin-bottom: 3rem;
}

.tabs-306a {
    margin-bottom: 1rem;
}

.outer_1143 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.summary_d852 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .summary_d852 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .summary_d852.module-cool-8321 {
        direction: rtl;
    }
    
    .summary_d852.module-cool-8321 > * {
        direction: ltr;
    }
}

.panel_1d71 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.panel_1d71:first-child {
    margin-top: 0;
}

.text_first_e86d {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.block-f4fc {
    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);
}

.block-f4fc: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 - 玻璃拟态卡片 */
.heading-top-0ae7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading-top-0ae7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple-2290 {
    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;
}

.simple-2290::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);
}

.simple-2290:hover::before {
    left: 100%;
}

.simple-2290: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);
}

.hero_bright_374b {
    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;
}

.primary-active-2a26 {
    list-style: none;
}

.primary-active-2a26 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-active-2a26 li:last-child {
    border-bottom: none;
}

/* Games Features */
.modal-rough-09e3 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.over_54d7 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.narrow-93f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-cac8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight - 超现代霓虹卡片 */
.layout-stone-e854 {
    margin: 3rem 0;
}

.secondary-15f1 {
    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;
}

.secondary-15f1::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); }
}

.background_974e {
    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;
}

.form-7688 {
    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;
}

.dynamic_1291 {
    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 - 霓虹玻璃卡片 */
.picture_next_43f7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture_next_43f7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-focused-9988 {
    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;
}

.alert-focused-9988::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);
}

.alert-focused-9988:hover::before {
    opacity: 1;
}

.alert-focused-9988: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);
}

.info_basic_a927 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stale_adb9 {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

.hero-aa4c {
    color: var(--neon-pink);
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.tooltip-in-e753 {
    list-style: none;
}

.tooltip-in-e753 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tooltip-in-e753 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.highlight-next-c98f {
    margin: 2rem 0;
}

.stone_a3ea {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.surface-c9ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .surface-c9ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm_fd74 {
    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);
}

.next-7cab {
    font-size: 1.25rem;
}

.middle-69ac {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.progress-b5cf,
.sidebar_pink_8869 {
    text-align: center;
    margin: 2rem 0;
}

.icon_narrow_08b3,
.picture-new-b884 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections - 超现代霓虹风格 */
.outer_d362 {
    margin: 3rem 0;
    text-align: center;
}

.fluid_9f62 {
    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);
}

.fluid_9f62::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); }
}

.row-45a0 {
    position: relative;
    z-index: 1;
}

.block-east-34ed {
    margin-bottom: 1rem;
}

.tiny_775f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-dim-b224 {
    margin-bottom: 3rem;
}

.cold_f8fe {
    margin-top: 3rem;
}

.gold-462f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gold-462f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gold-462f .tag_hot_4c63 {
    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);
}

.gold-462f .tag_hot_4c63:hover {
    border-color: rgba(6, 255, 165, 0.6);
    box-shadow: 0 0 40px rgba(6, 255, 165, 0.5);
}

.tag-focused-993f {
    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;
}

.fresh-a337 {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer - 玻璃拟态 */
.filter_center_b335 {
    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;
}

.filter_center_b335::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);
}

.overlay_c2e3 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .overlay_c2e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay_c2e3 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dynamic-22f3 {
    margin-bottom: 1rem;
}

.tabs_9099 img {
    margin-bottom: 1rem;
}

.tabs_lite_160e {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-ba74 {
    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;
}

.image-first-d358 {
    list-style: none;
}

.image-first-d358 li {
    margin-bottom: 0.5rem;
}

.image-first-d358 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.image-first-d358 a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
    transform: translateX(5px);
}

.secondary-2a3d {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.hot-be97 {
    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);
}

.hot-be97: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);
}

.new_8ed2 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.new_8ed2 p {
    margin-bottom: 0.25rem;
}

.heading_paper_af3e {
    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) {
    .heading_paper_af3e {
        flex-direction: row;
    }
}

.dynamic-8932 {
    text-align: center;
}

@media (min-width: 768px) {
    .dynamic-8932 {
        text-align: left;
    }
}

.dynamic-8932 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.main_efd8 {
    font-size: 0.75rem !important;
}

.inner_9a5d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-smooth-623c {
    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);
}

.highlight-smooth-623c: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);
    }
}

.lower-63b5 {
    animation: fadeInUp 0.6s ease-out;
}

.hover-steel-f4a0 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.last_8df2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_8df2 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.header_6b94 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_6b94 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall-77cc {
    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);
}

.tall-77cc .narrow-93f5 {
    font-size: 1.25rem;
}

.tall-77cc .motion-d198 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.active_57c8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_57c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.new-2a84 {
    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);
}

.new-2a84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media-3890 {
    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);
}

.focus_18a4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_949f {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_a238 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent-b486 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.accent-b486 .summary-cac8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent-b486 .selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-hard-2f09 {
    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-367d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.cool-367d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cool-367d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.picture_tiny_2f79 {
    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);
}

.red-4b2c {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.in_df38 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.in_df38 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.in_df38 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);
}

.in_df38 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.in_df38 input::placeholder {
    color: var(--text-muted);
}

.border_gas_ceee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.solid-dd4c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.solid-dd4c input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.chip-6ac9 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.chip-6ac9:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.surface-c9ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-c9ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.warm_fd74 {
    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);
}

.warm_fd74 .next-7cab {
    font-size: 1.25rem;
}

.warm_fd74 .middle-69ac {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gradient_cff2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_3e6f {
    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);
}

.south_3e6f .narrow-93f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.south_3e6f .summary-cac8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.south_3e6f .selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_wood_4a07 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small_6fa6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.small_6fa6 .main-3545 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.small_6fa6 .east_9972 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_mini_d3d7 {
    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);
}

.info_fluid_9460 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info_fluid_9460 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_c226 {
    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);
}

.tertiary_c226:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_bc24 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cold-befe {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.text-hovered-258f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture_tall_ccde {
    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);
}

.picture_tall_ccde:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.current-4c3c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-4c3c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left-cc6d {
    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);
}

.left-cc6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top_409f {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron_2c12 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last_e1a8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.component_31f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.carousel_e426 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left-f960 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-7803 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.dynamic-7803 .badge_23e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-7803 .media-53ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-2444 {
    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);
}

.column-over-5b87 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-bdbb {
    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);
}

.wood-bdbb .narrow-93f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood-bdbb .summary-cac8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood-bdbb .selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-blue-68ba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-blue-68ba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-middle-48d4 {
    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);
}

.widget-middle-48d4:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.message_soft_7f8a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_soft_7f8a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black_9c23 {
    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);
}

.black_9c23:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary_e7b9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-02d4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.background_974e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.shade-medium-edd3 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.component-0699 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_6ea8 {
    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);
}

.section_6ea8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next-0577 {
    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);
}

.card-white-18b7 {
    flex: 1;
}

.wrapper-8766 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.search-8d54 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.progress_huge_201b {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_east_14c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block-cool-2c6a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.block-cool-2c6a .main-3545 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.block-cool-2c6a .east_9972 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_pink_8869 {
    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);
}

.large_a03f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large_a03f {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.text_2502 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_2502 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_top_3b5c {
    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);
}

.sidebar_top_3b5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower-ab98 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-complex-0ce8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay_9653 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.basic_5c93 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hot-60a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_1eb2 {
    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);
}

.mini_f217 {
    font-size: 2rem;
    flex-shrink: 0;
}

.static_cbe4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue-e6be {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-over-5b87 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wood-bdbb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wood-bdbb .summary-cac8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wood-bdbb .selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-hovered-9b2c {
    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);
}

.carousel-narrow-3d11 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-narrow-3d11 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-narrow-3d11 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav_west_c679 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.nav_west_c679:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall-5aff {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.rough-fd46 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs-static-64e1 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.component-2ebe {
    padding: 1.5rem;
}

.message-purple-7ef3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.container-tiny-6f02 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-tiny-6f02 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;
}

.container-tiny-6f02 li:last-child {
    border-bottom: none;
}

.container-tiny-6f02 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.down-7ce1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-7ce1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-liquid-c372 {
    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);
}

.photo-liquid-c372:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_7f23 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar_768b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.disabled_d07b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.block-next-4738 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.lower-3ec4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fluid_f845 {
    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);
}

.notice_f72c {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-b95b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_0a12 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_7720 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.down-2e80 {
    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);
}

.search-66ac {
    text-align: center;
}

.sidebar-c786 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean-f974 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.old_006e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_fbb6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.panel_fbb6 .summary-cac8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_fbb6 .selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_large_7ff5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow_large_7ff5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_large_7ff5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_short_b5a8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tag_short_b5a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-d6e4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.article_silver_05f4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.summary-cac8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.progress_orange_06c1 {
    padding: 1.5rem;
}

.selected_b151 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-east-2c31 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-east-2c31 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-east-2c31 li:last-child {
    border-bottom: none;
}

.notice-east-2c31 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.popup_da90 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_da90 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.old_5007 {
    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);
}

.old_5007:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_left_16fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_stale_a648 {
    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);
}

.media-3890 {
    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;
}

.focus_18a4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_949f {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_west_b313 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge_0ea6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.carousel-ddf2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade_d4a6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shadow-north-dc5f {
    display: flex;
    gap: 1rem;
}

.shadow-north-dc5f .outline-rough-cc84 {
    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;
}

.hero-lite-89f4 {
    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);
}

.widget-fbf4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture-f7c1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texture-f7c1 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;
}

.texture-f7c1 li:last-child {
    border-bottom: none;
}

.texture-f7c1 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.aside_slow_c17e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_slow_c17e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_slow_c17e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper_e4d6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wrapper_e4d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_25f1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.motion_6a9b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.badge_23e0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.alert_fresh_bd7c {
    font-size: 1rem;
}

.slider_75f0 {
    padding: 1.5rem;
}

.media-53ec {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.widget_new_74aa {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.widget_new_74aa .search-66ac {
    text-align: center;
}

.widget_new_74aa .clean-f974 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.widget_new_74aa .notification-108c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.feature-silver-7d33 {
    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);
}

.feature-silver-7d33:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.tabs-wide-0f97 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-wide-0f97 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.easy_4d3c {
    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_4d3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-ecb9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_f8fd {
    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);
}

.box_caee {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-steel-97d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.black_b223 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth_253a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.liquid_0f5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_5d29 {
    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);
}

.modal-first-81e4 {
    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;
}

.modal-first-81e4.hover-up-6423 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.modal-first-81e4.accordion_active_76f2 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.modal-first-81e4.focus_hot_1b5d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1e1b4b;
}

.modal-first-81e4.selected-55db {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #1e1b4b;
}

.modal-first-81e4.search_d5ad {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #1e1b4b;
}

.media-c55d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.orange-b23e {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-small-7d74 {
    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);
}

.picture_hard_2f08 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.widget_wood_4a07 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_wood_4a07 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;
}

.widget_wood_4a07 li:last-child {
    border-bottom: none;
}

.widget_wood_4a07 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.sidebar-glass-8ec4 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-glass-8ec4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-glass-8ec4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_complex_69b9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel_complex_69b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel_complex_69b9.easy-21f5 {
    grid-column: 1 / -1;
    border-color: rgba(168, 85, 247, 0.3);
}

@media (min-width: 1024px) {
    .panel_complex_69b9.easy-21f5 {
        grid-column: span 3;
    }
}

.hard-dc64 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    background: rgba(251, 191, 36, 0.05);
}

.panel_complex_69b9.easy-21f5 .hard-dc64 {
    background: rgba(168, 85, 247, 0.1);
}

.paper_2fe3 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.box_plasma_a418 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.panel_complex_69b9.easy-21f5 .box_plasma_a418 {
    color: var(--info-color);
}

.text-fast-97f2 {
    padding: 1.5rem;
    text-align: center;
}

.block_0685 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.panel_complex_69b9.easy-21f5 .block_0685 {
    color: var(--info-color);
}

.gas_6a1f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.filter_old_b844 {
    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 */
.notification_dim_bb1e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_dim_bb1e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_hard_fa6f {
    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);
}

.breadcrumb_hard_fa6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_c60a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south_3e6f {
    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);
}

.next-7cab {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone_a3ea {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.silver_ca51 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-f76e {
    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);
}

.detail-0d4e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focus-smooth-5569 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-smooth-623c {
    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);
}

.focus_8877 {
    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);
}

.focus_8877 .search-66ac {
    text-align: center;
}

.focus_8877 .sidebar-c786 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.focus_8877 .clean-f974 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.background_selected_b101 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini_f17d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.description-38ca {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north_f9a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-lite-e9b3 {
    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);
}

.pattern-3697 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-e086 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-7f93 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lite-7f93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lite-7f93 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_3e75 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.row_3e75:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_warm_51b3 {
    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);
}

.progress_3c5f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_8222 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.active_c17d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active_c17d.section-72b4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.active_c17d.border_4f03 {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-color);
}

.active_c17d.footer_south_e448 {
    background: rgba(168, 85, 247, 0.2);
    color: var(--info-color);
}

.small_de5e {
    padding: 1.5rem;
    text-align: center;
}

.accordion-a840 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_fixed_d5da {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.background_fixed_d5da .backdrop_over_8cc6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.pressed_73ad {
    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);
}

.pressed_73ad:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.iron_721e {
    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);
}

.border_bottom_b96c {
    text-align: center;
}

.border_bottom_b96c .sidebar-c786 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.border_bottom_b96c .clean-f974 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.secondary_9099 { text-align: center; }
.pagination_dim_ef0d { text-align: left; }
.logo-basic-1ee7 { text-align: right; }

.top-e9ce { margin-bottom: 0; }
.article_ba81 { margin-bottom: 0.5rem; }
.progress_inner_2a48 { margin-bottom: 1rem; }
.photo-fac3 { margin-bottom: 1.5rem; }
.panel-8b55 { margin-bottom: 2rem; }

.block_liquid_0fdf { margin-top: 0; }
.notification_brown_3a9a { margin-top: 0.5rem; }
.pagination-smooth-08e9 { margin-top: 1rem; }
.narrow-151e { margin-top: 1.5rem; }
.highlight-fixed-4a28 { margin-top: 2rem; }

.fn-hidden-3697 { display: none; }
.fn-visible-3697 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .form-ec1f {
        padding: 6rem 0 3rem;
    }
    
    .breadcrumb_prev_bb7a {
        text-align: center;
    }
    
    .summary_d852 {
        text-align: center;
    }
    
    .detail-a0b0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .content_stone_82e4,
    .new_8711,
    .fluid_9f62,
    .filter_center_b335 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .form-ec1f {
        background: none;
    }
}
/* css-noise: 9bb8 */
.ghost-box-c1 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
