/* {$keywords} - Main Stylesheet */
/* Modern Brazilian Gaming Platform Styles */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables - 深海蓝青绿主题 */
:root {
    /* 背景色系 */
    --primary-bg: #0f172a;      /* 深海蓝 - 主背景 */
    --secondary-bg: #1e293b;     /* 中蓝 - 卡片背景 */
    --tertiary-bg: #334155;     /* 浅蓝 - 悬浮背景 */
    
    /* 强调色系 */
    --accent-color: #06b6d4;     /* 青绿 - 主要CTA */
    --accent-hover: #0891b2;     /* 深青绿 - 悬停状态 */
    --accent-light: #67e8f9;    /* 浅青绿 - 高亮文字 */
    
    /* 文字色系 */
    --text-white: #f8fafc;      /* 纯白 - 主要文字 */
    --text-gray: #cbd5e1;       /* 淡灰 - 次要文字 */
    --text-muted: #94a3b8;      /* 灰色 - 辅助文字 */
    
    /* 功能色系 */
    --success-color: #10b981;   /* 翠绿 - 成功状态 */
    --danger-color: #ef4444;    /* 红色 - 错误状态 */
    --warning-color: #f97316;   /* 橙色 - 警告状态 */
    --info-color: #06b6d4;      /* 青绿 - 信息提示 */
    
    /* 渐变色系 */
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    
    /* Shadows - 深海蓝青绿主题 */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.4);
    --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-vip: 0 0 20px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Slab', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.filter-4c29 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.icon_f7e3 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .icon_f7e3 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .icon_f7e3 {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Header Styles */
.label_831c {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.logo-stale-84df {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .logo-stale-84df {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .glass_0501 {
        grid-column: 1;
    }
    
    .east_6630 {
        grid-column: 2;
    }
    
    .accordion-7e63 {
        grid-column: 3;
    }
}

.glass_0501 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.glass_0501:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tag-rough-72d2 {
    display: none;
}

@media (min-width: 1024px) {
    .tag-rough-72d2 {
        display: block;
    }
}

/* Grouped Navigation */
.accordion-gas-1b6b {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.logo-0e23 {
    position: relative;
}

.message-b3d3 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.logo-0e23 .selected-ac76 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.selected-ac76 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.frame-bff2 {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}

.frame-bff2:hover,
.frame-bff2.fn-active-5e74 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.layout-3517 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .layout-3517 {
        display: flex;
    }
}

/* Mobile Register Button */
.east_6630 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .east_6630 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.stone-e044 {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.stone-e044::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.accordion-7e63 {
    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) {
    .accordion-7e63 {
        display: none;
    }
}

.accordion-7e63 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.accordion-7e63.fn-active-5e74 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.accordion-7e63.fn-active-5e74 span:nth-child(2) {
    opacity: 0;
}

.accordion-7e63.fn-active-5e74 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.old-6174 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.old-6174.fn-active-5e74 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.module-wood-70de {
    overflow: hidden;
}

.gallery_4c89 {
    list-style: none;
    padding: 0.75rem 0;
}

.progress_white_ba30 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9rem;
}

.progress_white_ba30:hover,
.progress_white_ba30.fn-active-5e74 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.progress_white_ba30.text_ebaf {
    background: var(--primary-gradient);
    color: var(--primary-bg);
    font-weight: 700;
    text-align: center;
    justify-content: center;
    margin: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-glow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.progress_white_ba30.text_ebaf::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Button Styles */
.hard-0fcc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.focus-3819 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.focus-3819:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.label_out_e383 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.label_out_e383:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.heading-solid-0f20 {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.25rem;
}

.heading-solid-0f20:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.static-6c8c {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.5rem;
}

.badge_4023 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.badge_4023:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media-2b9a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media-2b9a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form_b6c5 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.form_b6c5:hover {
    background: linear-gradient(135deg, var(--info-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.hidden-red-267a {
    font-size: 1em;
    font-weight: 700;
}

.video_copper_f17b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.heading_down_58e0 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.heading_down_58e0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.north_2218 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .north_2218 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.wood-82f7 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.overlay-wood-2f2b {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-d6a9 {
    margin-bottom: 2rem;
}

.liquid_d57b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .liquid_d57b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_82e9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.info_out_89d0 {
    font-size: 1.5rem;
}

.preview-9717 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.dynamic-135a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight_pressed_7276 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.highlight_pressed_7276:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.modal-e02c {
    text-align: center;
    margin-bottom: 3rem;
}

.cold-46ef {
    margin-bottom: 1rem;
}

.image-4c80 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.badge-complex-71c5 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .badge-complex-71c5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .badge-complex-71c5.gallery_south_b883 {
        direction: rtl;
    }
    
    .badge-complex-71c5.gallery_south_b883 > * {
        direction: ltr;
    }
}

.grid_current_533e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.grid_current_533e:first-child {
    margin-top: 0;
}

.wrapper-stone-328c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.image_e952 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.image_e952:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.primary-selected-e999 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-selected-e999 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_static_33e1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.huge_203e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.form_da0d {
    list-style: none;
}

.form_da0d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form_da0d li:last-child {
    border-bottom: none;
}

/* Games Features */
.orange_4c12 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.gradient-6e86 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.active-copper-4f21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-current-ae51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.overlay_a2aa {
    margin: 2rem 0;
}

.brown-aaa5 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.block-f08b {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.sort_plasma_c609 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.link_west_c525 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.article_cold_d919 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_cold_d919 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_light_dc4e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.main_light_dc4e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_f232 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.texture-5eaf {
    font-size: 1.5rem;
}

.disabled-ff4c {
    color: var(--accent-color);
    margin: 0;
}

.pagination_lower_13db {
    list-style: none;
}

.pagination_lower_13db li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pagination_lower_13db li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.down_d0b7 {
    margin: 2rem 0;
}

.description-short-24be {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.lower_0247 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .lower_0247 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-25dd {
    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);
}

.box_selected_122e {
    font-size: 1.25rem;
}

.gallery_complex_836f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.last-e91d,
.dropdown-b527 {
    text-align: center;
    margin: 2rem 0;
}

.west-95bf,
.brown-876d {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.video_130e {
    margin: 2rem 0;
    text-align: center;
}

.shadow_full_1c6d {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shadow_full_1c6d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.carousel-motion-18fb {
    position: relative;
    z-index: 1;
}

.slider-hovered-7363 {
    margin-bottom: 1rem;
}

.texture-d4a0 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steel-0dfe {
    margin-bottom: 3rem;
}

.clean-3fee {
    margin-top: 3rem;
}

.filter-6c87 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .filter-6c87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-6c87 .slider_82e9 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.header-basic-3e64 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-a8c7 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.bronze-749b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.notification_green_3275 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .notification_green_3275 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .notification_green_3275 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.article_fluid_e471 {
    margin-bottom: 1rem;
}

.main_a34e img {
    margin-bottom: 1rem;
}

.tooltip-orange-06b8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in-867a {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.paper-bac2 {
    list-style: none;
}

.paper-bac2 li {
    margin-bottom: 0.5rem;
}

.paper-bac2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.paper-bac2 a:hover {
    color: var(--accent-color);
}

.summary_wood_af50 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cold_0bdd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.cold_0bdd:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.background-127c {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.background-127c p {
    margin-bottom: 0.25rem;
}

.selected-e5d9 {
    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) {
    .selected-e5d9 {
        flex-direction: row;
    }
}

.tabs-next-15a6 {
    text-align: center;
}

@media (min-width: 768px) {
    .tabs-next-15a6 {
        text-align: left;
    }
}

.tabs-next-15a6 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.down_ff54 {
    font-size: 0.75rem !important;
}

.heading-outer-25a4 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.backdrop_warm_9405 {
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* 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);
    }
}

.aside_dim_09eb {
    animation: fadeInUp 0.6s ease-out;
}

.picture-3de6 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.gallery_9964 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_9964 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.overlay-2dbe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-2dbe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.left_93b2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left_93b2 .active-copper-4f21 {
    font-size: 1.25rem;
}

.left_93b2 .sidebar_3bc1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.wrapper-center-8b26 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-center-8b26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_wide_c0ad {
    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(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.hero_wide_c0ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_9b7e {
    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-e12d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.carousel_last_8c67 {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_lower_a75d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_3ab4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.middle_3ab4 .disabled-current-ae51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.middle_3ab4 .header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_9343 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red_5d8d {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.red_5d8d img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.red_5d8d img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.last-6f3f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.green_20df {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-bright-277e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-bright-277e label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-bright-277e input {
    padding: 1rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.hero-bright-277e input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hero-bright-277e input::placeholder {
    color: var(--text-muted);
}

.highlight_east_71de {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.progress_fast_7cb1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.progress_fast_7cb1 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.caption_hovered_5090 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.caption_hovered_5090:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.lower_0247 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower_0247 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-25dd {
    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);
}

.fast-25dd .box_selected_122e {
    font-size: 1.25rem;
}

.fast-25dd .gallery_complex_836f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.old_aef8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-b7c5 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-b7c5 .active-copper-4f21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-b7c5 .disabled-current-ae51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-b7c5 .header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-down-0a99 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_black_fd4f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module_black_fd4f .badge_7b5e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_black_fd4f .liquid-93ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-bronze-8a3d {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-6655 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer-6655 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tiny_053b {
    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(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.tiny_053b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old-25af {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hard-6070 {
    flex: 1;
}

.icon-21aa {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mini-cc46 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.next_86e5 {
    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);
}

.next_86e5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.column-cool-4710 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-cool-4710 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rough_7bed {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.rough_7bed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-prev-7e7b {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-center-63fa {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cool-e589 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.west_45a5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.message_brown_2f1b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-motion-7ed6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white-04df {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.white-04df .input-9e37 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white-04df .paragraph-34a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_huge_8bf1 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_huge_1476 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_bd68 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice_bd68 .active-copper-4f21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_bd68 .disabled-current-ae51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_bd68 .header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-first-5954 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-first-5954 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.huge-6f04 {
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--info-color);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.huge-6f04:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.copper_2ea7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .copper_2ea7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced-973e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.advanced-973e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_9e7c {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-bb60 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.block-f08b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.aside_easy_69e4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.tooltip_28d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_solid_c733 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.image_solid_c733:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny_b8cb {
    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-cool-e857 {
    flex: 1;
}

.tiny-37f9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.slider_a7cb {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.panel_basic_bf3d {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_hard_a002 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel_8d0d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_8d0d .badge_7b5e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.steel_8d0d .liquid-93ce {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-b527 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel-b02e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel-b02e {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.nav_0cd9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_0cd9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-south-bd62 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary-south-bd62:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under_9f7e {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-1ca3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture-cbe5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture-dim-372a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.accordion-narrow-5514 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-06b7 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dark-e467 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_active_42d6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_focused_3951 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_huge_1476 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_bd68 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.notice_bd68 .disabled-current-ae51 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice_bd68 .header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-246e {
    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-92db {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-92db {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-92db {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-cold-f394 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.frame-cold-f394:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south-7c00 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-motion-8325 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accent_white_85f4 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.inner-3497 {
    padding: 1.5rem;
}

.west-f006 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pressed_34da {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pressed_34da 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;
}

.pressed_34da li:last-child {
    border-bottom: none;
}

.pressed_34da li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.grid_5bd1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_5bd1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_blue_33ec {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop_blue_33ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in_4cf8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_ea52 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.clean-8855 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.main_glass_627f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mini_1578 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-gas-9d81 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_7a94 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down-8ddd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-834f {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-93d7 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shadow-5953 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.small_5d12 {
    text-align: center;
}

.basic-bf18 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-129c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.basic_7539 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel-blue-7dec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-blue-7dec .disabled-current-ae51 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-blue-7dec .header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-b23a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .easy-b23a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .easy-b23a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-6554 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tertiary-6554:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_e994 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.input-middle-c797 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.disabled-current-ae51 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.title-15a3 {
    padding: 1.5rem;
}

.header_8373 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module_649e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module_649e 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;
}

.module_649e li:last-child {
    border-bottom: none;
}

.module_649e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.button_down_4599 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tiny-5e3c {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tiny-5e3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-plasma-a243 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_e0e0 {
    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(6, 182, 212, 0.1);
}

.gradient_9b7e {
    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-e12d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel_last_8c67 {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-8283 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-fd51 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_0223 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gas_a883 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.filter-7d03 {
    display: flex;
    gap: 1rem;
}

.filter-7d03 .light-a8a9 {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.table_gold_8870 {
    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);
}

.image_590f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.table-1457 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-1457 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-1457 li:last-child {
    border-bottom: none;
}

.table-1457 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.wrapper-d13e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-d13e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrapper-d13e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-short-c0b3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.grid-short-c0b3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-ec15 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip_brown_cb73 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input-9e37 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.title_f257 {
    font-size: 1rem;
}

.new-8608 {
    padding: 1.5rem;
}

.paragraph-34a9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.section-east-c0c1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-east-c0c1 .small_5d12 {
    text-align: center;
}

.section-east-c0c1 .component-129c {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.section-east-c0c1 .wrapper_a8f1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.module_bottom_62ef {
    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);
}

.module_bottom_62ef:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.secondary-current-abd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-current-abd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-2238 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop-2238:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_8edc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-wood-1f8d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice-1851 {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_inner_defe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-ca50 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pink-9f91 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.media_f919 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stone-2434 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video_white_97b9 {
    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;
}

.video_white_97b9.chip_422f {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.video_white_97b9.notice_wood_4c76 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.video_white_97b9.title-5c78 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.video_white_97b9.small_af14 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.video_white_97b9.current_be4d {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.hover_4010 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.menu_9023 {
    color: var(--text-gray);
    line-height: 1.6;
}

.east-e26c {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-9a4c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.avatar-down-0a99 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avatar-down-0a99 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;
}

.avatar-down-0a99 li:last-child {
    border-bottom: none;
}

.avatar-down-0a99 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.sidebar_4533 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar_4533 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar_4533 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_short_8e17 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.avatar_short_8e17:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_short_8e17.main-671f {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .avatar_short_8e17.main-671f {
        grid-column: span 3;
    }
}

.middle_4f66 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.avatar_short_8e17.main-671f .middle_4f66 {
    background: rgba(6, 182, 212, 0.1);
}

.black-1dad {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hidden-glass-29a3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.avatar_short_8e17.main-671f .hidden-glass-29a3 {
    color: var(--info-color);
}

.progress-a147 {
    padding: 1.5rem;
    text-align: center;
}

.full_7a96 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.avatar_short_8e17.main-671f .full_7a96 {
    color: var(--info-color);
}

.content_silver_6490 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.fluid-26a0 {
    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 */
.banner_iron_e72d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_iron_e72d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_complex_c221 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask_complex_c221:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel-d582 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-b7c5 {
    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);
}

.box_selected_122e {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient_0312 {
    flex: 1;
}

.description-short-24be {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal_ed73 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_c4a6 {
    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);
}

.tag_c538 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner-db95 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.backdrop_warm_9405 {
    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_up_c0b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_up_c0b0 .small_5d12 {
    text-align: center;
}

.focus_up_c0b0 .basic-bf18 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.focus_up_c0b0 .component-129c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper_ee36 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_center_e556 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-blue-2cea {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bottom_06ba {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_3fef {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected-1e36 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header-purple-33b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver-d46b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .silver-d46b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver-d46b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-wood-25b2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.widget-wood-25b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft-69f1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.in-c370 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.video_a0f7 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.fast_dcd7 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fast_dcd7.row_short_bf89 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.fast_dcd7.detail-fluid-1c24 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.fast_dcd7.component_a7a7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.plasma_1abf {
    padding: 1.5rem;
    text-align: center;
}

.highlight-upper-b98f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav-3b94 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.nav-3b94 .orange-883a {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.description_aaa9 {
    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);
}

.description_aaa9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hot-df88 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 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);
}

.logo-1bc0 {
    text-align: center;
}

.logo-1bc0 .basic-bf18 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.logo-1bc0 .component-129c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.aside_hot_81b4 { text-align: center; }
.picture_hovered_326c { text-align: left; }
.item_brown_efec { text-align: right; }

.paragraph-silver-cd80 { margin-bottom: 0; }
.filter-soft-bced { margin-bottom: 0.5rem; }
.shade_bottom_86b5 { margin-bottom: 1rem; }
.grid-fbf1 { margin-bottom: 1.5rem; }
.row_dim_8496 { margin-bottom: 2rem; }

.right_4346 { margin-top: 0; }
.column_brown_6364 { margin-top: 0.5rem; }
.blue-0352 { margin-top: 1rem; }
.bronze-2d01 { margin-top: 1.5rem; }
.table_5e00 { margin-top: 2rem; }

.fn-hidden-5e74 { display: none; }
.fn-visible-5e74 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .heading_down_58e0 {
        padding: 6rem 0 3rem;
    }
    
    .north_2218 {
        text-align: center;
    }
    
    .badge-complex-71c5 {
        text-align: center;
    }
    
    .liquid_d57b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .label_831c,
    .old-6174,
    .shadow_full_1c6d,
    .bronze-749b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .heading_down_58e0 {
        background: none;
    }
}

/* Providers Section */
.gallery_bronze_cb1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_out_4366 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_out_4366 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_out_4366 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_new_8e49 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.description_new_8e49:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fresh-daa6 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shade-0b3b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-middle-099d {
    list-style: none;
    padding: 0;
}

.article-middle-099d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.article-middle-099d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.static_93ba {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static_93ba p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.avatar-gas-8ba9 {
    padding: var(--section-padding);
}

.pattern_west_3492 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_west_3492 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cold-9588 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cold-9588:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.filter_08b2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.accent_164a {
    display: flex;
    flex-direction: column;
}

.tag_35ea {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.center-23a3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.media-d148 {
    color: var(--accent-color);
}

.fluid_b654 {
    font-size: 1.25rem;
}

.description_d838 {
    margin-bottom: 1rem;
}

.description_d838 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.banner-top-5d2e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.west_2a23 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.small_5d12 {
    text-align: center;
}

.basic-bf18 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-129c {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hover_6030 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_tall_7120 {
    margin: 2rem 0;
}

.paragraph-04d9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.paragraph-04d9 .active-copper-4f21 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red_a5f1 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-smooth-65c2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.modal-smooth-65c2:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image_motion_f082 {
    font-size: 2rem;
}

.image_clean_de06 {
    display: flex;
    flex-direction: column;
}

.module_27be {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tooltip_5a5f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.icon_005b {
    padding: var(--section-padding);
}

.link_7369 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .link_7369 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link_7369 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east_e2a7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    transition: var(--transition-normal);
}

.east_e2a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.east_e2a7 .basic-bf18 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.east_e2a7 .component-129c {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.east_e2a7 .active-small-b9f3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.hidden_upper_2192 {
    margin-top: 4rem;
}

.primary_e7ca {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.logo-paper-647a {
    overflow-x: auto;
}

.prev_9380 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.prev_9380 thead {
    background: var(--accent-color);
}

.prev_9380 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.prev_9380 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.prev_9380 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.prev_9380 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.active_smooth_e9e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-glass-43d7 {
    max-width: 900px;
    margin: 0 auto;
}

.input-north-ef89 {
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.input-north-ef89:hover {
    border-color: var(--accent-color);
}

.in_aa5c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.in_aa5c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.heading_next_41d6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.input-north-ef89.fn-active-5e74 .heading_next_41d6 {
    transform: rotate(45deg);
}

.pagination_38ff {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.input-north-ef89.fn-active-5e74 .pagination_38ff {
    max-height: 1000px;
}

.pagination_38ff p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.carousel-paper-b1c1 {
    padding: var(--section-padding);
}

.red_5d8d {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.alert_cd70 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_easy_29ac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_easy_29ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

.row_923a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border-active-b9e6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.smooth_26d9 {
    font-size: 2rem;
}

.huge-151c {
    color: var(--text-white);
    margin: 0;
}

.prev-eda1 {
    list-style: none;
    padding: 0;
}

.prev-eda1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prev-eda1 li:last-child {
    border-bottom: none;
}

.carousel-old-203d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.carousel-old-203d p {
    color: var(--success-color);
    margin: 0;
}

.main-cool-6b11 {
    margin-top: 3rem;
}

.image_590f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.badge-a4f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .badge-a4f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-ab21 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description-liquid-0662 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video-ab21 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.wood-1d18 {
    padding: var(--section-padding);
}

.breadcrumb-c532 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-c532 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-a182 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article-a182:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.description-stale-af28 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stale-02d2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.short-4bab {
    flex: 1;
}

.hard-ba79 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hard_97c9 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.tertiary-small-e05b {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_0d25 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huge_0d25:last-child {
    border-bottom: none;
}

/* Comparison Section */
.breadcrumb_c219 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.column-orange-f2d5 {
    padding: var(--section-padding);
}

.prev-3a47 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.mask-02dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-02dc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-bd40 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under_2714, .hidden_active_f25d, .block_dc5f {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.block_dc5f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 0.75rem;
}

/* Terms Section */
.pink_debe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_tiny_5860 {
    margin: 2rem 0;
}

.tabs-b035 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.grid_0b98 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb_cold_0c02 {
    list-style: none;
    padding: 0;
}

.breadcrumb_cold_0c02 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.breadcrumb_cold_0c02 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.breadcrumb_cold_0c02 li:last-child {
    border-bottom: none;
}

.title-6878 {
    text-align: center;
    margin-top: 2rem;
}

.mini_8453 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.icon_pink_cf56 {
    padding: var(--section-padding);
}

.shadow-9ed8 {
    margin: 2rem 0;
}

.content_c9f7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    gap: 1.5rem;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .content_c9f7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.content_c9f7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shadow_89d2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.disabled-76c9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sort-228b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hover-f989 {
    flex: 1;
}

.current_72ec {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.glass_a23c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gallery-hard-c695 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.module-right-599e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .module-right-599e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.filter_selected_4992 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.filter_selected_4992:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.filter_selected_4992 .basic-bf18 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter_selected_4992 .component-129c {
    color: var(--text-gray);
    font-size: 1rem;
}

.hovered_cec0 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_3787 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.popup_3787 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.gradient_8772 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .gradient_8772 {
        grid-template-columns: 1fr 1fr;
    }
}

.title_7761 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-e535 {
    margin-bottom: 1.5rem;
}

.item-e535 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-e535 input,
.item-e535 select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
}

.item-e535 input:focus,
.item-e535 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.slider_cool_af5f {
    width: 100%;
    margin-top: 1rem;
}

.status-south-5245 {
    display: flex;
    align-items: center;
}

.silver-218e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.narrow_a508 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.avatar-3ce2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.gas-6c7f {
    color: var(--text-gray);
}

.filter-wood-53ca {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.aside_gas_c446 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning-color);
}

.aside_gas_c446 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.photo-south-38ce {
    margin-top: 3rem;
}

.tertiary_current_a2a9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.cold_6804 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_1efc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.glass_28f7 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass_28f7:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.gallery-static-6cec {
    padding: var(--section-padding);
}

.list-soft-0165 {
    margin: 2rem 0;
}

.module-fixed-3505 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form-8483 {
    padding: 1rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
}

.form-8483:hover, .form-8483.fn-active-5e74 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.advanced_ec54 {
    display: none;
}

.advanced_ec54.fn-active-5e74 {
    display: block;
}

.clean-24af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_stale_30d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.brown_f789 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.brown_f789 ul {
    list-style: none;
    padding: 0;
}

.brown_f789 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.brown_f789 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.feature-1a8b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
    color: var(--text-gray);
}

/* Historical Data Section */
.breadcrumb-8079 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot-e6d3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-small-3ba7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.overlay-north-5a74 {
    color: var(--accent-color);
    margin: 0;
}

.mask_purple_fb33 {
    display: flex;
    gap: 1.5rem;
}

.element-gold-cb98 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.carousel-tall-4e5c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.item-warm-606e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.item-warm-606e.slow-1ae3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.item-warm-606e.list-soft-8a34 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.item-warm-606e.stone-b263 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.card-steel-962a {
    margin-top: 2rem;
}

.icon-3d5a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gradient-8e31 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .gradient-8e31 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_d5d0 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.feature-north-8790 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tooltip_stone_77f0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.disabled-2391 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

/* Responsible Gaming Section */
.wide-f54e {
    padding: var(--section-padding);
}

.gold-b2f0 {
    margin: 2rem 0;
}

.silver_99a5 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.accent-active-8328 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.summary_7975 {
    list-style: none;
    padding: 0;
}

.summary_7975 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-left: 1.5rem;
    position: relative;
}

.summary_7975 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.summary_7975 li:last-child {
    border-bottom: none;
}

.menu-middle-fd0f {
    margin: 2rem 0;
}

.sidebar_1ea8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.paragraph_plasma_8680 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paragraph_plasma_8680 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.copper-8fc7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.layout-89e9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip_old_afca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight-b8ac {
    margin-top: 2rem;
}

.icon-21aa {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.main_936e {
    list-style: none;
    padding: 0;
}

.purple_b1ae {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.purple_b1ae a {
    color: var(--accent-color);
    text-decoration: none;
}

.purple_b1ae a:hover {
    text-decoration: underline;
}

.logo-clean-4f2f {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.content_545e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_8b0c {
    margin: 2rem 0;
}

.hovered-9d5b {
    margin-bottom: 3rem;
}

.hovered-9d5b .grid_0b98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.layout_small_e3e1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.status-hard-532b {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.status-hard-532b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.gold_788a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .gold_788a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-2e12 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.steel-ad22 {
    padding: var(--section-padding);
}

.notice-cool-5c9c {
    margin: 2rem 0;
}

.selected_3316 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.rough_10ca {
    overflow-x: auto;
    margin: 2rem 0;
}

.button_cf85 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.column-orange-9bec {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--success-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.west_f095 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.cold_9f50 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .cold_9f50 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-full-be49 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-full-be49 .active-copper-4f21 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.form-full-be49 .disabled-current-ae51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert-full-3f45 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.article-2812 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick-39bb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick-39bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_5b3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.feature_5b3c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.primary-action-d7d6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-center-bda4 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.upper-e45a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.inner-a638 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.gallery_14b2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.cold-6888 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.column_stale_9afe {
    color: var(--text-white);
    font-weight: 600;
}

.over_811e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paragraph-7bc8 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph-7bc8 .light-a8a9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tiny_36fc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tiny_36fc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header-yellow-a973 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.header-yellow-a973:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header-yellow-a973 .basic-bf18 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header-yellow-a973 .component-129c {
    color: var(--text-gray);
    font-size: 1rem;
}

.frame-f816 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.warm_61ab {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.warm_61ab strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.accordion-narrow-5514 {
    margin: 2rem 0;
}

.info-06b7 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.info-06b7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.dark-e467 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.slider_d396 {
    flex: 1;
}

.element_active_42d6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary_focused_3951 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.main_huge_1476 {
    margin: 2rem 0;
}

.notice_bd68 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_bd68 .disabled-current-ae51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.notice_bd68 .header_8373 {
    color: var(--text-gray);
    margin: 0;
}

.tertiary-246e {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.tertiary-246e .west-95bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.alert-full-3f45 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.tiny_b8cb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.card-cool-e857 {
    flex: 1;
}

.slider_a7cb {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.panel_basic_bf3d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.gradient_9b7e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bright-8ad4 {
    flex: 1;
}

.focus-e12d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.carousel_last_8c67 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.banner_0223 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.gas_a883 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.filter-7d03 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.filter-7d03 .light-a8a9 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.table_gold_8870 {
    margin-top: 2rem;
}

.table_gold_8870 .image_590f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.wood-cbb8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-5953 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shadow-5953 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-5953 .small_5d12 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.basic_7539 {
    margin: 2rem 0;
}

.carousel-blue-7dec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Game Features Section */
.accent_de1e {
    padding: var(--section-padding);
}

.title-15a3 {
    margin-top: 1rem;
}

.module_649e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.module_649e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.module_649e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.popup_short_7537 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_ca90 {
    margin: 2rem 0;
}

.background_purple_d04a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.tertiary-inner-a379 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.banner_east_d693 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.heading-slow-ab29 {
    margin: 2rem 0;
}

.heading_7187 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.heading_7187 .grid_0b98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_fluid_2e93 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sort_fluid_2e93 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay-under-f937 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.out_04d2 {
    color: var(--text-white);
    font-weight: 600;
}

.input_1325 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hovered-73de {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hovered-73de p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tag-focused-bb33 {
    padding: var(--section-padding);
}

.feature_rough_44da {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature_rough_44da:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pink-b408 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pink-b408 .description-liquid-0662 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-b408 .button-1254 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.right-c4e1 {
    flex: 1;
}

.wrapper_selected_f903 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pro-a42b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-a42b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pro-a42b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.accent_12f7 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.accent_12f7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent_12f7 strong {
    color: var(--warning-color);
}

/* Slots Section */
.plasma-d758 {
    padding: var(--section-padding);
}

.message_brown_2f1b {
    margin: 2rem 0;
}

/* Table Games Section */
.preview_inner_48dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-motion-7ed6 {
    margin: 2rem 0;
}

.white-04df {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.white-04df:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.white-04df .input-9e37 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white-04df .paragraph-34a9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.frame_huge_8bf1 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.frame_huge_8bf1 .west-95bf {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.message-eef2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-c837 {
    margin: 2rem 0;
}

.primary_basic_1542 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-large-34e9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort-e86a {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover_92ce {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.hover_92ce:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hover_92ce.fn-active-5e74 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-dark-afbe {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.tabs-north-4417 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tabs-north-4417 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.active-e8e9 {
    padding: var(--section-padding);
}

.fast-dbd1 {
    margin: 2rem 0;
}

.tertiary-bc5f {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.tertiary-bc5f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tertiary-bc5f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cold_6784 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.info_3709 {
    flex: 1;
}

.right_ddbe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider_b8bf {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-7643 {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.highlight-thick-83b1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-5d6c {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.overlay_0104 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.column_3b23 {
    padding: 0.875rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.column_3b23:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tall-3d8f {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.filter-last-1faa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.filter-last-1faa strong {
    color: var(--accent-color);
}

/* New Games Section */
.dropdown-a203 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light_aafa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .light_aafa {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .light_aafa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_dirty_83a0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.overlay_dirty_83a0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.out-bfb6 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--warning-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.element-focused-d3f0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.label-stale-0e24 {
    font-size: 2rem;
}

.mask_d914 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.block_792a {
    flex: 1;
}

.top-02cd {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.notification-fluid-f381 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.backdrop-up-fd26 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.module-action-bc98 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.old-f69e {
    padding: 0.375rem 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
}

.plasma-2f19 {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-normal);
    display: block;
}

.plasma-2f19:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.middle_bbd9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-narrow-6914 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form_de7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form_de7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_fluid_ec7b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider_middle_c8e9 {
    color: var(--text-white);
    font-weight: 600;
}

.primary-1855 {
    color: var(--accent-color);
    font-weight: 600;
}

.large-508e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.large-508e strong {
    color: var(--accent-color);
}

/* Security Section */
.last-cafa {
    padding: var(--section-padding);
}

/* Benefits Section */
.thumbnail-center-c353 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.info-inner-514c {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.focus-45f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-slow-6b4c {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.filter_b240 {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .filter_b240 {
        flex-direction: column;
        gap: 1rem;
    }
}

.filter_b240:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.filter_b240 .gradient_9b7e {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.filter_b240 .bright-8ad4 {
    flex: 1;
}

.filter_b240 .focus-e12d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.filter_b240 .carousel_last_8c67 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.center-ba12 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center-ba12 .description-short-24be {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.center-ba12 .old_aef8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-ba12 .old_aef8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.center-ba12 .old_aef8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.table_b6ea {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dropdown-huge-baf6 {
    padding: var(--section-padding);
}

.secondary_short_5e4a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .secondary_short_5e4a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-dcbd {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active-dcbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.active-dcbd .new-0430 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-dcbd .hidden-action-d4ea {
    flex: 1;
}

.active-dcbd .badge_7b5e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-dcbd .surface_29a4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.overlay-soft-4cbd {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-soft-4cbd .white_d0f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-soft-4cbd .summary_black_d534 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.overlay-soft-4cbd .summary_black_d534 li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-soft-4cbd .summary_black_d534 li:last-child {
    border-bottom: none;
}

.overlay-soft-4cbd .summary_black_d534 li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.overlay-soft-4cbd .summary_black_d534 li strong {
    color: var(--text-white);
}

.blue_4e6d {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.blue_4e6d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.blue_4e6d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.notice_7a85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper-dark-8591 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wrapper-dark-8591 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern-in-a777 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pattern-in-a777:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.over-7897 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled_c06e {
    font-size: 2rem;
}

.smooth-e512 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.grid_e4bc {
    flex: 1;
}

.hovered_d10f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered_d10f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered_d10f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.white-7bc6 {
    margin-top: 3rem;
}

.silver_99a5 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.accent-active-8328 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.summary_7975 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary_7975 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.summary_7975 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.summary_7975 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.menu-south-61e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-7898 {
    margin: 2rem 0;
}

.pagination-93fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pagination-93fa .grid_0b98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_1487 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .preview_1487 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard_9ecd {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.hard_9ecd:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.logo-complex-2e59 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.silver-d590 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.disabled_wide_ba7c {
    padding: var(--section-padding);
}

.summary-bronze-cee8 {
    margin: 2rem 0;
}

.message-down-1876 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .message-down-1876 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message-down-1876 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_611a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.image_611a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.grid-b8bd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.box-lite-970e {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.table-tall-7764 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.table-tall-7764.accordion_inner_dafc {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.south-c6b9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.button_red_ea0f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.cool_a56e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.east-f875 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny_c79f {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.tiny_c79f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tiny_c79f strong {
    color: var(--accent-color);
}

/* Update Log Section */
.form-9c33 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-thick-87b8 {
    margin: 2rem 0;
}

.notice-075a {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .notice-075a {
        flex-direction: column;
        gap: 1rem;
    }
}

.notice-075a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.notice-075a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.avatar_soft_c8a5 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.paper_9cd0 {
    flex: 1;
}

.button_selected_7901 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.black_0427 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.black_0427 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.full_bc8a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-cc38 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture-ef43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .texture-ef43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-31cd {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini_4430 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.description-6656 {
    flex: 1;
}

.middle_13a9 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.accordion-91e3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dim-af52 {
    margin-top: 2rem;
    text-align: center;
}

.huge-486e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.huge-486e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.secondary-current-abd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-current-abd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop-2238 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.backdrop-2238:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.backdrop-2238 .in_4cf8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-2238 .tiny_ea52 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.backdrop-2238 .clean-8855 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.backdrop-2238 .main_glass_627f {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.east-6600 {
    padding: var(--section-padding);
}

.media-wood-1f8d .slider_pink_9f79 {
    flex: 1;
}

/* Promo Calendar Section */
.info_dark_518a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-bronze-0be1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-bronze-0be1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_stone_2379 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-iron-0916 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.description-729d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro-18ed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-short-3c0a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.over_a313 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.footer-807a {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.footer-807a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer-807a strong {
    color: var(--accent-color);
}

/* Requirements Section */
.texture-480b {
    padding: var(--section-padding);
}

.heading-bronze-44ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading-bronze-44ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info_bottom_984a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-4471 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video-advanced-7f6e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-advanced-7f6e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_bottom_09b5 {
    margin-top: 3rem;
}

.disabled_bottom_09b5 .silver_99a5 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.disabled_bottom_09b5 .accent-active-8328 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_bottom_09b5 .summary_7975 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.disabled_bottom_09b5 .summary_7975 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.disabled_bottom_09b5 .summary_7975 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.disabled_bottom_09b5 .summary_7975 li strong {
    color: var(--warning-color);
}

.box-wide-c9ff {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box-wide-c9ff strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.icon-dark-4a62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-fdc9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-fdc9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_paper_3f80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_paper_3f80 .grid_0b98 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.wide-e414 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blue-f329 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.blue-f329:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.thumbnail-d2e3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-ae42 {
    flex: 1;
}

.easy_4c9d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.column_8efd {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.container_ead1 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.dirty_3365 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.solid_1dbb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .solid_1dbb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-4f2a {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fixed-4f2a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mini-6a53 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.container-cool-5fcf {
    color: var(--text-gray);
    font-size: 1rem;
}

.popup_3787 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_plasma_1fe3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.primary_plasma_1fe3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.icon_f7e3 { width:100%; max-width:1200px; padding:0 16px; box-sizing:border-box; }
* { box-sizing:border-box; }

img, video, svg { max-width:100%; height:auto; display:block; }
.highlight_pressed_7276, .image_e952 { max-width:100%; height:auto; }

.hard-0fcc, .heading-solid-0f20, .static-6c8c { white-space:normal; }

.north_2218,
.badge-complex-71c5,
.banner_iron_e72d,
.secondary-current-abd3,
.main_huge_1476,
.silver-d46b {
  flex-wrap:wrap;
}

[class*="grid"],
.solid_1dbb,
.message-down-1876,
.filter-6c87 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.heading_down_58e0 img,
.badge-complex-71c5 img,
.dynamic-135a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.wood-82f7, .overlay-wood-2f2b,
.cold-46ef, .image-4c80 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.logo-paper-647a { width:100%; overflow-x:auto; }
.logo-paper-647a table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.list_out_4366 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .list_out_4366 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.description_new_8e49 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.link_7369,
.media_f9fb,
.center_aa91,
.footer_cc05,
.module-right-599e,
.solid_1dbb,
.message-down-1876,
.filter-6c87,
.hot-df88,
.fast-dbd1,
.list_out_4366 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .link_7369,
  .media_f9fb,
  .center_aa91,
  .footer_cc05,
  .module-right-599e,
  .solid_1dbb,
  .message-down-1876,
  .filter-6c87,
  .hot-df88,
  .fast-dbd1,
  .list_out_4366 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.east_e2a7,
.filter_selected_4992,
.fixed-4f2a,
.slider_82e9,
.image_611a,
.logo-1bc0,
.tertiary-bc5f,
.description_new_8e49 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.filter-076d,
.footer-top-5fdd,
.chip-57a3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter-076d > *,
.footer-top-5fdd > *,
.chip-57a3 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 724a */
.ghost-box-f9 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
