/* {$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;
}

.carousel-6241 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.caption_776d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .caption_776d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .caption_776d {
        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 */
.hidden_complex_4665 {
    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);
}

.pattern-9cdc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .pattern-9cdc {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .container_mini_70bf {
        grid-column: 1;
    }
    
    .mini-ee4a {
        grid-column: 2;
    }
    
    .thumbnail_1f5a {
        grid-column: 3;
    }
}

.container_mini_70bf img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.container_mini_70bf:hover img {
    transform: scale(1.05);
}

/* Navigation */
.selected_3d8f {
    display: none;
}

@media (min-width: 1024px) {
    .selected_3d8f {
        display: block;
    }
}

/* Grouped Navigation */
.yellow-488d {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.feature_medium_743e {
    position: relative;
}

.image_0f33 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.feature_medium_743e .widget_04ee {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.widget_04ee {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.shadow-f160 {
    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;
}

.shadow-f160:hover,
.shadow-f160.fn-active-91a1 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.black-d619 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .black-d619 {
        display: flex;
    }
}

/* Mobile Register Button */
.mini-ee4a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .mini-ee4a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.bright_4ae9 {
    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;
}

.bright_4ae9::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 */
.thumbnail_1f5a {
    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) {
    .thumbnail_1f5a {
        display: none;
    }
}

.thumbnail_1f5a span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.thumbnail_1f5a.fn-active-91a1 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.thumbnail_1f5a.fn-active-91a1 span:nth-child(2) {
    opacity: 0;
}

.thumbnail_1f5a.fn-active-91a1 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.smooth-76c5 {
    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;
}

.smooth-76c5.fn-active-91a1 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.caption-middle-209a {
    overflow: hidden;
}

.element-0a75 {
    list-style: none;
    padding: 0.75rem 0;
}

.media_7a3a {
    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;
}

.media_7a3a:hover,
.media_7a3a.fn-active-91a1 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.media_7a3a.button_9106 {
    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;
}

.media_7a3a.button_9106::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 */
.item_0891 {
    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;
}

.banner-west-b227 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.banner-west-b227:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.photo-green-1c1b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.photo-green-1c1b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.white-594c {
    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;
}

.white-594c:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.dynamic_a2a8 {
    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;
}

.up-333a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.up-333a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focused_c52e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.focused_c52e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.badge-bronze-7e4e {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.badge-bronze-7e4e: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);
}

.dynamic-a791 {
    font-size: 1em;
    font-weight: 700;
}

.simple_7f19 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.button_4b2d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.button_4b2d::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;
}

.copper-ebf9 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .copper-ebf9 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gallery-medium-c5d5 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-white-28fa {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.slider-b509 {
    margin-bottom: 2rem;
}

.wood_75c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .wood_75c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_d534 {
    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);
}

.progress-fc60 {
    font-size: 1.5rem;
}

.pressed_9166 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.accordion-static-ff2e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_small_3c12 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.logo_small_3c12:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.detail-fresh-da97 {
    text-align: center;
    margin-bottom: 3rem;
}

.badge-wood-e81f {
    margin-bottom: 1rem;
}

.sidebar-f2b8 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.caption_bronze_5261 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .caption_bronze_5261 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .caption_bronze_5261.disabled-acda {
        direction: rtl;
    }
    
    .caption_bronze_5261.disabled-acda > * {
        direction: ltr;
    }
}

.caption_paper_a5b6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.caption_paper_a5b6:first-child {
    margin-top: 0;
}

.smooth_4ff6 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.action-b743 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.action-b743:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.tag-bde4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-bde4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-dim-5ccf {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_b854 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.panel_cool_f0b4 {
    list-style: none;
}

.panel_cool_f0b4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel_cool_f0b4 li:last-child {
    border-bottom: none;
}

/* Games Features */
.purple-06cf {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.block_4b3b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.new_74ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.image_53e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.form_easy_d729 {
    margin: 2rem 0;
}

.photo-light-a72a {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.shadow-hard-f64c {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.background_7bb9 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.action-0b0e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.hidden-a850 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden-a850 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module_advanced_33fb {
    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);
}

.module_advanced_33fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.up_ca97 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.new_67cb {
    font-size: 1.5rem;
}

.form-4f25 {
    color: var(--accent-color);
    margin: 0;
}

.next_f34f {
    list-style: none;
}

.next_f34f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.next_f34f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.static_398a {
    margin: 2rem 0;
}

.rough_c322 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.chip-next-bba5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .chip-next-bba5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_d08b {
    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);
}

.secondary_dim_ec10 {
    font-size: 1.25rem;
}

.shade_fast_2679 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.steel-ba3f,
.dropdown_copper_cbcc {
    text-align: center;
    margin: 2rem 0;
}

.hero_8491,
.primary-074f {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.active-67a9 {
    margin: 2rem 0;
    text-align: center;
}

.wrapper_eaf1 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wrapper_eaf1::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;
}

.description-b6a1 {
    position: relative;
    z-index: 1;
}

.silver-7cfd {
    margin-bottom: 1rem;
}

.frame_9a96 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.active-79dd {
    margin-bottom: 3rem;
}

.shadow_brown_0f0f {
    margin-top: 3rem;
}

.component_soft_19fe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .component_soft_19fe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.component_soft_19fe .button_d534 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.media-8fec {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.widget_365d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.footer_prev_162b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.nav_8100 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .nav_8100 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav_8100 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.shade-narrow-982f {
    margin-bottom: 1rem;
}

.sidebar_under_1499 img {
    margin-bottom: 1rem;
}

.nav_liquid_7830 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list-1b23 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.search_pink_4626 {
    list-style: none;
}

.search_pink_4626 li {
    margin-bottom: 0.5rem;
}

.search_pink_4626 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.search_pink_4626 a:hover {
    color: var(--accent-color);
}

.accent-slow-0a81 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-short-16fe {
    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);
}

.search-short-16fe:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.prev-0015 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.prev-0015 p {
    margin-bottom: 0.25rem;
}

.box-dynamic-df6e {
    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) {
    .box-dynamic-df6e {
        flex-direction: row;
    }
}

.label_blue_5c21 {
    text-align: center;
}

@media (min-width: 768px) {
    .label_blue_5c21 {
        text-align: left;
    }
}

.label_blue_5c21 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.red_6a32 {
    font-size: 0.75rem !important;
}

.hero-e0e9 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.row_tall_1e3a {
    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);
    }
}

.shade-huge-e709 {
    animation: fadeInUp 0.6s ease-out;
}

.search_west_0868 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.pink-007e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-007e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.under-535a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-535a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-b203 {
    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);
}

.tooltip-b203 .new_74ff {
    font-size: 1.25rem;
}

.tooltip-b203 .under_3af8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.notification_thick_904a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification_thick_904a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-ee0c {
    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);
}

.card-ee0c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-158a {
    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_bottom_7ce1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hidden-09db {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze-6f64 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_2e95 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_2e95 .image_53e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_2e95 .message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-bronze-4fe8 {
    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);
}

.progress_4098 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.progress_4098 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.progress_4098 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.media_b1ec {
    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);
}

.label_brown_f7b8 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mask_7fdb {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mask_7fdb label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask_7fdb 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);
}

.mask_7fdb input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask_7fdb input::placeholder {
    color: var(--text-muted);
}

.element_2a9e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.middle-8455 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.middle-8455 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.shade_6276 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.shade_6276:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.chip-next-bba5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-next-bba5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_d08b {
    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);
}

.tooltip_d08b .secondary_dim_ec10 {
    font-size: 1.25rem;
}

.tooltip_d08b .shade_fast_2679 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.short_574e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-6c98 {
    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);
}

.tag-6c98 .new_74ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-6c98 .image_53e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag-6c98 .message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-solid-f4f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.carousel_6546 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel_6546 .photo-dim-2263 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel_6546 .aside_north_2967 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_wide_92ea {
    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);
}

.video_8773 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video_8773 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-3e00 {
    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);
}

.right-3e00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bronze-0cad {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.preview_current_f0d3 {
    flex: 1;
}

.grid_last_c04a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.list_d3ed {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery_thick_6781 {
    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);
}

.gallery_thick_6781:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.narrow_a05b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_a05b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-d6fd {
    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);
}

.table-d6fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip_0a78 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_16f7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.layout-action-47ca {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture_5bc7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.aside_6261 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.full-62fc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-a6a0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.north-a6a0 .input_first_f6bd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north-a6a0 .mask_north_b25b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-stone-b06b {
    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);
}

.highlight_thick_4045 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-abaf {
    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);
}

.popup-abaf .new_74ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-abaf .image_53e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-abaf .message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard_3f35 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_3f35 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-9f0a {
    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);
}

.prev-9f0a:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.next_2676 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .next_2676 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-narrow-ffa8 {
    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);
}

.logo-narrow-ffa8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean_25c5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph-70e5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shadow-hard-f64c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.avatar_9107 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.filter-4a5e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main_down_95a4 {
    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);
}

.main_down_95a4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_6681 {
    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);
}

.pink_5242 {
    flex: 1;
}

.carousel_eb67 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.old-d091 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.description_yellow_ced0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-right-6b7d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-tiny-eb75 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-tiny-eb75 .photo-dim-2263 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-tiny-eb75 .aside_north_2967 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_copper_cbcc {
    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);
}

.outer-c8ea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer-c8ea {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.shadow_center_4cd5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_center_4cd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_2346 {
    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);
}

.tag_2346:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav-0118 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-a5b6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.in_a50b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline_static_dd8b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon-west-e13f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft-9d43 {
    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);
}

.shade_gold_c2ee {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_5e37 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_3b98 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_thick_4045 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup-abaf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.popup-abaf .image_53e5 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.popup-abaf .message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.short_7386 {
    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);
}

.info_31c8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info_31c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info_31c8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-simple-be9e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card-simple-be9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_solid_fb09 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_7079 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.logo-fast-2f2c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.active_dc2b {
    padding: 1.5rem;
}

.inner_7baf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary_822c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.secondary_822c 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;
}

.secondary_822c li:last-child {
    border-bottom: none;
}

.secondary_822c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.static_6e6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_6e6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up-fba0 {
    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);
}

.up-fba0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-6f59 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface_fa91 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tag_tall_db0d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.heading-iron-9120 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.light_85eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outline-tall-0eb9 {
    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);
}

.status_tall_fa90 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-f253 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wood_a11d {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-ca3f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary-paper-77b1 {
    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);
}

.avatar-ea8b {
    text-align: center;
}

.shadow-15f6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-dd57 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.cool-f02b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-8f96 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-8f96 .image_53e5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright-8f96 .message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-hard-f659 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hover-hard-f659 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-hard-f659 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-large-9470 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.description-large-9470:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background_inner_5227 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header_center_be3e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.image_53e5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.stone-bfe9 {
    padding: 1.5rem;
}

.message_upper_86a1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav-7c0a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-7c0a 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;
}

.nav-7c0a li:last-child {
    border-bottom: none;
}

.nav-7c0a li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.layout-orange-6d15 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.photo_464b {
    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);
}

.photo_464b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article-eb0b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-2077 {
    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);
}

.description-158a {
    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_bottom_7ce1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden-09db {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-prev-e08f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center_d352 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.message_basic_356f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel-0b6e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advanced-938a {
    display: flex;
    gap: 1rem;
}

.advanced-938a .image-west-5879 {
    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;
}

.out_da67 {
    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);
}

.upper-ece5 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.next_1efc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_1efc 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;
}

.next_1efc li:last-child {
    border-bottom: none;
}

.next_1efc li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.down_de7a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .down_de7a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .down_de7a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_south_d889 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary_south_d889:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-lower-a193 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_1e18 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input_first_f6bd {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.disabled_lower_521c {
    font-size: 1rem;
}

.highlight_cold_e314 {
    padding: 1.5rem;
}

.mask_north_b25b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.last-0bc9 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.last-0bc9 .avatar-ea8b {
    text-align: center;
}

.last-0bc9 .notification-dd57 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.last-0bc9 .filter_f59a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.summary_prev_dbe1 {
    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);
}

.summary_prev_dbe1:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.carousel_a9d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_a9d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_f7a9 {
    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);
}

.shadow_f7a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_c855 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-427a {
    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);
}

.article_hard_2a62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark-4bd5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-simple-d7ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-85e6 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.glass_722f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.huge-2b2a {
    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);
}

.detail_9d3b {
    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;
}

.detail_9d3b.chip_6929 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.detail_9d3b.content_white_a426 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.detail_9d3b.form_gold_e342 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.detail_9d3b.overlay_motion_7cef {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.detail_9d3b.nav-97e7 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.section-219e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.huge_8d37 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_d6e4 {
    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);
}

.surface-1c74 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.summary-solid-f4f2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-solid-f4f2 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;
}

.summary-solid-f4f2 li:last-child {
    border-bottom: none;
}

.summary-solid-f4f2 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.backdrop-bd24 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .backdrop-bd24 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop-bd24 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-7e57 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list-7e57:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-7e57.video-c96e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .list-7e57.video-c96e {
        grid-column: span 3;
    }
}

.north_6144 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.list-7e57.video-c96e .north_6144 {
    background: rgba(6, 182, 212, 0.1);
}

.summary-blue-7c20 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-cool-deeb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.list-7e57.video-c96e .feature-cool-deeb {
    color: var(--info-color);
}

.chip_white_e75f {
    padding: 1.5rem;
    text-align: center;
}

.pagination_22a1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.list-7e57.video-c96e .pagination_22a1 {
    color: var(--info-color);
}

.gold-2964 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.filter_warm_d816 {
    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 */
.info_5ea3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_5ea3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_pro_7fa1 {
    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);
}

.block_pro_7fa1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-mini-d8fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-6c98 {
    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);
}

.secondary_dim_ec10 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny-f770 {
    flex: 1;
}

.rough_c322 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden-dynamic-a385 {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_small_e3ba {
    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);
}

.hard-0316 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.complex-fd39 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.row_tall_1e3a {
    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);
}

.copper_1354 {
  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);
}

.copper_1354 .avatar-ea8b {
    text-align: center;
}

.copper_1354 .shadow-15f6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.copper_1354 .notification-dd57 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.light-91ae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_15c7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_0f7c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dim_0238 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-3193 {
    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);
}

.texture-86d2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.texture-hot-6b6a {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-narrow-2834 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-narrow-2834 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-narrow-2834 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_rough_6e88 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider_rough_6e88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-fcba {
    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);
}

.silver_cebd {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mini-e484 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.middle-d9af {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.middle-d9af.alert-a311 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.middle-d9af.first-7ff5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.middle-d9af.popup-plasma-ae9b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.texture-east-134b {
    padding: 1.5rem;
    text-align: center;
}

.sort_focused_154f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mini_99f1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mini_99f1 .accordion_b1b3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.filter-05d4 {
    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);
}

.filter-05d4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.lite-2009 {
  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);
}

.aside_68b8 {
    text-align: center;
}

.aside_68b8 .shadow-15f6 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.aside_68b8 .notification-dd57 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.south-7c2f { text-align: center; }
.banner-b872 { text-align: left; }
.item_fixed_332f { text-align: right; }

.warm-3d77 { margin-bottom: 0; }
.tabs-active-fbe1 { margin-bottom: 0.5rem; }
.tag-55a4 { margin-bottom: 1rem; }
.bright_d37a { margin-bottom: 1.5rem; }
.grid_bronze_1907 { margin-bottom: 2rem; }

.tall_a866 { margin-top: 0; }
.thumbnail_easy_70de { margin-top: 0.5rem; }
.simple-a565 { margin-top: 1rem; }
.focused-9aff { margin-top: 1.5rem; }
.column-old-7871 { margin-top: 2rem; }

.fn-hidden-91a1 { display: none; }
.fn-visible-91a1 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .button_4b2d {
        padding: 6rem 0 3rem;
    }
    
    .copper-ebf9 {
        text-align: center;
    }
    
    .caption_bronze_5261 {
        text-align: center;
    }
    
    .wood_75c0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .hidden_complex_4665,
    .smooth-76c5,
    .wrapper_eaf1,
    .footer_prev_162b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .button_4b2d {
        background: none;
    }
}

/* Providers Section */
.backdrop_4ca3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.warm-9b79 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm-9b79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .warm-9b79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_old_0711 {
    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_old_0711:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.yellow-2ee4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.basic_c2de {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.heading_pro_aeff {
    list-style: none;
    padding: 0;
}

.heading_pro_aeff li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.heading_pro_aeff li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tag_535c {
    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);
}

.tag_535c p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hard_b258 {
    padding: var(--section-padding);
}

.breadcrumb_005b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_005b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short_89ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.short_89ec:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gradient_dbda {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hover_1b25 {
    display: flex;
    flex-direction: column;
}

.purple-3f41 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.blue_59e6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.row-d079 {
    color: var(--accent-color);
}

.sidebar_77a4 {
    font-size: 1.25rem;
}

.backdrop_mini_a698 {
    margin-bottom: 1rem;
}

.backdrop_mini_a698 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.clean_8b28 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.border_warm_f95f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.avatar-ea8b {
    text-align: center;
}

.shadow-15f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-dd57 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.border_smooth_2fe7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-pink-6830 {
    margin: 2rem 0;
}

.avatar-stone-af72 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.avatar-stone-af72 .new_74ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_purple_0bb4 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form_down_baa7 {
    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;
}

.form_down_baa7:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.green_9501 {
    font-size: 2rem;
}

.sort-1051 {
    display: flex;
    flex-direction: column;
}

.box_white_96c5 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.input_easy_f716 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.icon_0300 {
    padding: var(--section-padding);
}

.title-silver-9391 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .title-silver-9391 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .title-silver-9391 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_dirty_36ba {
    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);
}

.border_dirty_36ba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border_dirty_36ba .shadow-15f6 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.border_dirty_36ba .notification-dd57 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.border_dirty_36ba .image_7cfc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.progress-d977 {
    margin-top: 4rem;
}

.panel_e927 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.full-0dad {
    overflow-x: auto;
}

.over-17a0 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.over-17a0 thead {
    background: var(--accent-color);
}

.over-17a0 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.over-17a0 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.over-17a0 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.over-17a0 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.slow-b40f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_8b4f {
    max-width: 900px;
    margin: 0 auto;
}

.liquid-86aa {
    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);
}

.liquid-86aa:hover {
    border-color: var(--accent-color);
}

.box_8cc6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.box_8cc6 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.dim_3a87 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.liquid-86aa.fn-active-91a1 .dim_3a87 {
    transform: rotate(45deg);
}

.avatar-basic-de11 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.liquid-86aa.fn-active-91a1 .avatar-basic-de11 {
    max-height: 1000px;
}

.avatar-basic-de11 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.glass_f23a {
    padding: var(--section-padding);
}

.progress_4098 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.top-2dbc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron_99ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_99ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-6fdf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.right_1a57 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-5325 {
    font-size: 2rem;
}

.lower_ae55 {
    color: var(--text-white);
    margin: 0;
}

.next_5989 {
    list-style: none;
    padding: 0;
}

.next_5989 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next_5989 li:last-child {
    border-bottom: none;
}

.backdrop-ac5c {
    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);
}

.backdrop-ac5c p {
    color: var(--success-color);
    margin: 0;
}

.text_093e {
    margin-top: 3rem;
}

.upper-ece5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dim_d8b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dim_d8b4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.logo-59fb {
    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);
}

.photo_1cd1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.logo-59fb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.lite-2525 {
    padding: var(--section-padding);
}

.sort-stone-faed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-stone-faed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-4bef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.accordion-4bef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.easy_7f67 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.soft_d22a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.outline-slow-d0d4 {
    flex: 1;
}

.border_a4bd {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hero-glass-3ea3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.detail_559b {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_b702 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu_b702:last-child {
    border-bottom: none;
}

/* Comparison Section */
.old_4e98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.active-82c8 {
    padding: var(--section-padding);
}

.slider-345f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.grid_wide_bffe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_wide_bffe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_1f7a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-smooth-4748, .pagination_fixed_447b, .input_14e2 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.input_14e2 {
    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 */
.section_last_9d2b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_steel_7170 {
    margin: 2rem 0;
}

.huge-596b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-fe92 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.banner_solid_ab7e {
    list-style: none;
    padding: 0;
}

.banner_solid_ab7e 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;
}

.banner_solid_ab7e li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.banner_solid_ab7e li:last-child {
    border-bottom: none;
}

.hover_short_70a4 {
    text-align: center;
    margin-top: 2rem;
}

.tag-47db {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.badge-advanced-00cd {
    padding: var(--section-padding);
}

.border-5454 {
    margin: 2rem 0;
}

.tertiary_middle_06c3 {
    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) {
    .tertiary_middle_06c3 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tertiary_middle_06c3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.outline_east_6d6a {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.red-1023 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.form_medium_49b2 {
    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;
}

.carousel-dark-dd37 {
    flex: 1;
}

.outer-8cda {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.last-a903 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.full-8f17 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.paragraph_beca {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .paragraph_beca {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.complex_b29a {
    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);
}

.complex_b29a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.complex_b29a .shadow-15f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.complex_b29a .notification-dd57 {
    color: var(--text-gray);
    font-size: 1rem;
}

.row_3089 {
    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);
}

.copper_23ee {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.copper_23ee strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.menu-east-46fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .menu-east-46fd {
        grid-template-columns: 1fr 1fr;
    }
}

.video_current_1f7c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_60e0 {
    margin-bottom: 1.5rem;
}

.outer_60e0 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.outer_60e0 input,
.outer_60e0 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;
}

.outer_60e0 input:focus,
.outer_60e0 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paragraph_f411 {
    width: 100%;
    margin-top: 1rem;
}

.texture-2a1a {
    display: flex;
    align-items: center;
}

.slider_clean_9516 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.alert_west_9ccf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.chip_f562 {
    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;
}

.primary-516f {
    color: var(--text-gray);
}

.content_down_d19a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dropdown_01e6 {
    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);
}

.dropdown_01e6 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.column-3b55 {
    margin-top: 3rem;
}

.tertiary_8c3c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.aside-pro-297c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean-2c05 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.gradient-dark-7430 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-dark-7430:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.liquid_48ed {
    padding: var(--section-padding);
}

.column_c151 {
    margin: 2rem 0;
}

.iron_531c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hard_953b {
    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;
}

.hard_953b:hover, .hard_953b.fn-active-91a1 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.basic-1178 {
    display: none;
}

.basic-1178.fn-active-91a1 {
    display: block;
}

.outer_a6a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_5376 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.widget-current-913d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.widget-current-913d ul {
    list-style: none;
    padding: 0;
}

.widget-current-913d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.widget-current-913d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.heading-0dc7 {
    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 */
.footer-fa60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-white-36af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale_48ff {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.content_down_c420 {
    color: var(--accent-color);
    margin: 0;
}

.heading_8803 {
    display: flex;
    gap: 1.5rem;
}

.modal-iron-9829 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pattern_hovered_6698 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.modal-46b2 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal-46b2.hot-0cb4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.modal-46b2.badge-motion-3d7a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.modal-46b2.media_9ca2 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.column_7b4a {
    margin-top: 2rem;
}

.card_be83 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pro_7f8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pro_7f8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.red-b469 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tabs_down_da92 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.menu_60aa {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.tooltip-2a12 {
    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 */
.text-center-75f4 {
    padding: var(--section-padding);
}

.dirty_e83d {
    margin: 2rem 0;
}

.active-fixed-6bb1 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.icon_5f0e {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.current_4d99 {
    list-style: none;
    padding: 0;
}

.current_4d99 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;
}

.current_4d99 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.current_4d99 li:last-child {
    border-bottom: none;
}

.pattern_b4aa {
    margin: 2rem 0;
}

.current_b6fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline_narrow_d2ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_narrow_d2ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.next-3fda {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-c8d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected_d8a5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.basic-194a {
    margin-top: 2rem;
}

.grid_last_c04a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.border-lower-5803 {
    list-style: none;
    padding: 0;
}

.overlay-b810 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.overlay-b810 a {
    color: var(--accent-color);
    text-decoration: none;
}

.overlay-b810 a:hover {
    text-decoration: underline;
}

.disabled-yellow-9037 {
    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 */
.blue-ae54 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_aec8 {
    margin: 2rem 0;
}

.module_dark_0830 {
    margin-bottom: 3rem;
}

.module_dark_0830 .hero-fe92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.backdrop_a031 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.slider-3904 {
    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);
}

.slider-3904:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.picture-mini-fba1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .picture-mini-fba1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_67c4 {
    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 */
.brown-863a {
    padding: var(--section-padding);
}

.grid-c68e {
    margin: 2rem 0;
}

.logo_wide_2eed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.media_upper_cbc1 {
    overflow-x: auto;
    margin: 2rem 0;
}

.shadow-action-3202 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.white_e022 {
    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;
}

.picture_narrow_92d2 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.texture-c8f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .texture-c8f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-91b7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-91b7 .new_74ff {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.background-91b7 .image_53e5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.advanced_3c06 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.backdrop-785c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-9209 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-9209 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini_4d0b {
    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;
}

.mini_4d0b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.mini_7e8d {
    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);
}

.thick-b103 {
    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;
}

.chip_left_2574 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown-fe7d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hover-e911 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.article-f2ba {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-current-920e {
    color: var(--text-white);
    font-weight: 600;
}

.cold-3ca0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_b322 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered_b322 .image-west-5879 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gas-2152 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gas-2152 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-f1a8 {
    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);
}

.video-f1a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.video-f1a8 .shadow-15f6 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-f1a8 .notification-dd57 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video_ab5d {
    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);
}

.hero-79d5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hero-79d5 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.icon-west-e13f {
    margin: 2rem 0;
}

.soft-9d43 {
    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);
}

.soft-9d43:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.shade_gold_c2ee {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thumbnail-11f7 {
    flex: 1;
}

.tooltip_5e37 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_3b98 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.highlight_thick_4045 {
    margin: 2rem 0;
}

.popup-abaf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-abaf .image_53e5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.popup-abaf .message_upper_86a1 {
    color: var(--text-gray);
    margin: 0;
}

.short_7386 {
    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);
}

.short_7386 .hero_8491 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.advanced_3c06 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.breadcrumb_6681 {
    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;
}

.pink_5242 {
    flex: 1;
}

.old-d091 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.description_yellow_ced0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.description-158a {
    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;
}

.feature-7a03 {
    flex: 1;
}

.focus_bottom_7ce1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hidden-09db {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.message_basic_356f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.carousel-0b6e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.advanced-938a {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.advanced-938a .image-west-5879 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.out_da67 {
    margin-top: 2rem;
}

.out_da67 .upper-ece5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.link-lite-9962 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-paper-77b1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tertiary-paper-77b1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-paper-77b1 .avatar-ea8b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-f02b {
    margin: 2rem 0;
}

.bright-8f96 {
    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 */
.item_cold_b3cd {
    padding: var(--section-padding);
}

.stone-bfe9 {
    margin-top: 1rem;
}

.nav-7c0a {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.nav-7c0a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.nav-7c0a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.content-65a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_cold_9b1b {
    margin: 2rem 0;
}

.new-01b4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.fluid-1c22 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.heading-iron-e308 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.disabled-d963 {
    margin: 2rem 0;
}

.aside-0a3a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.aside-0a3a .hero-fe92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs-ef12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tabs-ef12 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-up-0229 {
    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);
}

.notice-c343 {
    color: var(--text-white);
    font-weight: 600;
}

.outline-hard-e980 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.popup-hard-af0f {
    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);
}

.popup-hard-af0f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.row_simple_a2fa {
    padding: var(--section-padding);
}

.summary-7844 {
    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;
}

.summary-7844:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.header-active-0b7b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-active-0b7b .photo_1cd1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-active-0b7b .picture_medium_3210 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tiny_3e14 {
    flex: 1;
}

.avatar-copper-6b22 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slider_7930 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider_7930 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.slider_7930 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.in_dc1a {
    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);
}

.in_dc1a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.in_dc1a strong {
    color: var(--warning-color);
}

/* Slots Section */
.fixed-613b {
    padding: var(--section-padding);
}

.aside_6261 {
    margin: 2rem 0;
}

/* Table Games Section */
.top-afd7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full-62fc {
    margin: 2rem 0;
}

.north-a6a0 {
    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);
}

.north-a6a0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.north-a6a0 .input_first_f6bd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north-a6a0 .mask_north_b25b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tooltip-stone-b06b {
    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);
}

.tooltip-stone-b06b .hero_8491 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.pink-49fa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-d0c9 {
    margin: 2rem 0;
}

.dark-453f {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-6925 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_5456 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.prev-93fb {
    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);
}

.prev-93fb:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.prev-93fb.fn-active-91a1 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-114b {
    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);
}

.slider_lite_c48a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider_lite_c48a strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.paragraph_warm_7b02 {
    padding: var(--section-padding);
}

.icon_wide_0a73 {
    margin: 2rem 0;
}

.huge_32f1 {
    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);
}

.huge_32f1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .huge_32f1 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.filter-ed3a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.caption_2ffe {
    flex: 1;
}

.chip_bff2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.fixed-d868 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.video_cool_2af3 {
    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;
}

.heading-black-c0af {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-bb96 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.popup-bright-0f3c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero_complex_b051 {
    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;
}

.hero_complex_b051:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.banner_7e09 {
    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);
}

.fresh_8e2c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fresh_8e2c strong {
    color: var(--accent-color);
}

/* New Games Section */
.pattern-pink-468c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-9051 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .brown-9051 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown-9051 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in_2cfb {
    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;
}

.in_2cfb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.aside-narrow-a591 {
    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;
}

.primary_up_0e2c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.overlay_1a60 {
    font-size: 2rem;
}

.bronze-0955 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.stale-1429 {
    flex: 1;
}

.focus-narrow-3922 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.fixed_b4d9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-blue-f9be {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.heading_pressed_7d96 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.static_8fd8 {
    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;
}

.image-517c {
    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;
}

.image-517c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.overlay-center-3e53 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_top_4d82 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight-west-60f5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .highlight-west-60f5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light_3278 {
    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);
}

.button_simple_7fa0 {
    color: var(--text-white);
    font-weight: 600;
}

.disabled-action-ab30 {
    color: var(--accent-color);
    font-weight: 600;
}

.slow-17ad {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.slow-17ad strong {
    color: var(--accent-color);
}

/* Security Section */
.hovered-bcf6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.border-stone-bd08 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.content-e098 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pattern-030c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden-a2a0 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.popup_0a79 {
    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) {
    .popup_0a79 {
        flex-direction: column;
        gap: 1rem;
    }
}

.popup_0a79:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.popup_0a79 .description-158a {
    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;
}

.popup_0a79 .feature-7a03 {
    flex: 1;
}

.popup_0a79 .focus_bottom_7ce1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.popup_0a79 .hidden-09db {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.badge-0ff9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-0ff9 .rough_c322 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge-0ff9 .short_574e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-0ff9 .short_574e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.badge-0ff9 .short_574e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.primary-e95c {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.left-c4a4 {
    padding: var(--section-padding);
}

.purple-748f {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .purple-748f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_b567 {
    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);
}

.input_b567:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.input_b567 .label_slow_1245 {
    font-size: 2rem;
    flex-shrink: 0;
}

.input_b567 .paper_bf06 {
    flex: 1;
}

.input_b567 .photo-dim-2263 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.input_b567 .lower_2ec8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accordion_paper_64ee {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accordion_paper_64ee .frame_d39f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_paper_64ee .gallery-ee74 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.accordion_paper_64ee .gallery-ee74 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);
}

.accordion_paper_64ee .gallery-ee74 li:last-child {
    border-bottom: none;
}

.accordion_paper_64ee .gallery-ee74 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;
}

.accordion_paper_64ee .gallery-ee74 li strong {
    color: var(--text-white);
}

.north-591e {
    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);
}

.north-591e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north-591e strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.selected_9839 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass_3859 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .glass_3859 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module_hard_6818 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.module_hard_6818:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.stone_caa6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-5763 {
    font-size: 2rem;
}

.thick_b611 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.complex-e47c {
    flex: 1;
}

.tiny-1ff1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiny-1ff1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tiny-1ff1 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.simple-193b {
    margin-top: 3rem;
}

.active-fixed-6bb1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.icon_5f0e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current_4d99 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_4d99 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.current_4d99 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.current_4d99 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.title_bright_1dac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel_111b {
    margin: 2rem 0;
}

.box_67af {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.box_67af .hero-fe92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.under_200d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .under_200d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-768e {
    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);
}

.main-768e:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.menu_c8db {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.inner-04e5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.backdrop-upper-1c12 {
    padding: var(--section-padding);
}

.heading-385f {
    margin: 2rem 0;
}

.border_static_abf7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .border_static_abf7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_static_abf7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-8291 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface-8291:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.up_5c39 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.upper_b59b {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.panel-gas-90f9 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.panel-gas-90f9.secondary-1eb0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.logo-9a69 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.south-c98c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.hovered-7305 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tall_368f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider_gold_4796 {
    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);
}

.slider_gold_4796 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider_gold_4796 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.down-b54b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-simple-4f6a {
    margin: 2rem 0;
}

.active_a708 {
    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) {
    .active_a708 {
        flex-direction: column;
        gap: 1rem;
    }
}

.active_a708:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active_a708::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);
}

.text_302c {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.text_b726 {
    flex: 1;
}

.backdrop-purple-21a1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.background-complex-b6ec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background-complex-b6ec li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-616b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-fbed {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion-bdf0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion-bdf0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-f508 {
    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);
}

.button-1766 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overlay-bf5d {
    flex: 1;
}

.hero-8b9d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.article-ec0c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.red-ae05 {
    margin-top: 2rem;
    text-align: center;
}

.disabled_prev_7d23 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.disabled_prev_7d23 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.carousel_a9d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_a9d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_f7a9 {
    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);
}

.shadow_f7a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shadow_f7a9 .advanced-6f59 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow_f7a9 .surface_fa91 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.shadow_f7a9 .tag_tall_db0d {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.shadow_f7a9 .heading-iron-9120 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.cool-e28b {
    padding: var(--section-padding);
}

.pattern-427a .layout-270f {
    flex: 1;
}

/* Promo Calendar Section */
.badge_4978 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.rough_f8c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .rough_f8c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-e33d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east-5b4b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dark-a0a7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary_dim_eed4 {
    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);
}

.left-5289 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.border-c50f {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.selected_8876 {
    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);
}

.selected_8876 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.selected_8876 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.thumbnail_advanced_e391 {
    padding: var(--section-padding);
}

.video-2689 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .video-2689 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-21a7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-6833 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_1103 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_1103 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.south_c5b7 {
    margin-top: 3rem;
}

.south_c5b7 .active-fixed-6bb1 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.south_c5b7 .icon_5f0e {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.south_c5b7 .current_4d99 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.south_c5b7 .current_4d99 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.south_c5b7 .current_4d99 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.south_c5b7 .current_4d99 li strong {
    color: var(--warning-color);
}

.frame_pro_d9b6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.frame_pro_d9b6 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.media_31d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo-full-b7f3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-full-b7f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-steel-95bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-steel-95bc .hero-fe92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.focus-c29d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag-next-8624 {
    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);
}

.tag-next-8624:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.action-ae59 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-fc72 {
    flex: 1;
}

.out_9f7b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.tag-bronze-fff6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.lite_fddb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.alert-a1ee {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.under-e3b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .under-e3b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-brown-06a8 {
    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);
}

.heading-brown-06a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.nav_2130 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel_current_5dba {
    color: var(--text-gray);
    font-size: 1rem;
}

.copper_23ee {
    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);
}

.steel-88f7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.steel-88f7 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.caption_776d { 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; }
.logo_small_3c12, .action-b743 { max-width:100%; height:auto; }

.item_0891, .white-594c, .dynamic_a2a8 { white-space:normal; }

.copper-ebf9,
.caption_bronze_5261,
.info_5ea3,
.carousel_a9d6,
.highlight_thick_4045,
.element-narrow-2834 {
  flex-wrap:wrap;
}

[class*="grid"],
.under-e3b6,
.border_static_abf7,
.component_soft_19fe {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.button_4b2d img,
.caption_bronze_5261 img,
.accordion-static-ff2e img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gallery-medium-c5d5, .text-white-28fa,
.badge-wood-e81f, .sidebar-f2b8 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.full-0dad { width:100%; overflow-x:auto; }
.full-0dad table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.warm-9b79 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .warm-9b79 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.description_old_0711 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.title-silver-9391,
.table-814d,
.complex_568e,
.block_huge_4a67,
.paragraph_beca,
.under-e3b6,
.border_static_abf7,
.component_soft_19fe,
.lite-2009,
.icon_wide_0a73,
.warm-9b79 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .title-silver-9391,
  .table-814d,
  .complex_568e,
  .block_huge_4a67,
  .paragraph_beca,
  .under-e3b6,
  .border_static_abf7,
  .component_soft_19fe,
  .lite-2009,
  .icon_wide_0a73,
  .warm-9b79 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.border_dirty_36ba,
.complex_b29a,
.heading-brown-06a8,
.button_d534,
.surface-8291,
.aside_68b8,
.huge_32f1,
.description_old_0711 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.hot_e873,
.hover-in-6d66,
.breadcrumb-eee1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hot_e873 > *,
.hover-in-6d66 > *,
.breadcrumb-eee1 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: dffd */
.promo-block-f6 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
