/* {$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;
}

.tooltip_bright_9b0b {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.wrapper_4516 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .wrapper_4516 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .wrapper_4516 {
        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 */
.background_hot_b45e {
    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);
}

.module-dark-d02e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .module-dark-d02e {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .mask-138b {
        grid-column: 1;
    }
    
    .gradient_ac3b {
        grid-column: 2;
    }
    
    .slow-06d3 {
        grid-column: 3;
    }
}

.mask-138b img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.mask-138b:hover img {
    transform: scale(1.05);
}

/* Navigation */
.panel-312f {
    display: none;
}

@media (min-width: 1024px) {
    .panel-312f {
        display: block;
    }
}

/* Grouped Navigation */
.background-fluid-340d {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.section-f602 {
    position: relative;
}

.picture-selected-4c35 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.section-f602 .stale_cb1c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.stale_cb1c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.widget-over-ff95 {
    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;
}

.widget-over-ff95:hover,
.widget-over-ff95.fn-active-2cd9 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.wrapper_up_18f7 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .wrapper_up_18f7 {
        display: flex;
    }
}

/* Mobile Register Button */
.gradient_ac3b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .gradient_ac3b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.message-1506 {
    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;
}

.message-1506::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 */
.slow-06d3 {
    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) {
    .slow-06d3 {
        display: none;
    }
}

.slow-06d3 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.slow-06d3.fn-active-2cd9 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.slow-06d3.fn-active-2cd9 span:nth-child(2) {
    opacity: 0;
}

.slow-06d3.fn-active-2cd9 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.easy-1f08 {
    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;
}

.easy-1f08.fn-active-2cd9 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.accent-paper-65ce {
    overflow: hidden;
}

.box-3c02 {
    list-style: none;
    padding: 0.75rem 0;
}

.nav_ecca {
    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;
}

.nav_ecca:hover,
.nav_ecca.fn-active-2cd9 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.nav_ecca.link-blue-ce9a {
    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;
}

.nav_ecca.link-blue-ce9a::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 */
.dropdown_025c {
    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;
}

.summary_c610 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.summary_c610:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.overlay-out-3508 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.overlay-out-3508:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.caption-2d64 {
    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;
}

.caption-2d64:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.section_df68 {
    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;
}

.slow-4f86 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.slow-4f86:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple_43c7 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple_43c7:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.tabs-f3f6 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.tabs-f3f6: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);
}

.header-cc3b {
    font-size: 1em;
    font-weight: 700;
}

.huge_f21d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hover_8e4d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hover_8e4d::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;
}

.list_301a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .list_301a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.text_11c0 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.out-602f {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.short-67c0 {
    margin-bottom: 2rem;
}

.box-2296 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .box-2296 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_d613 {
    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);
}

.backdrop_wide_07f8 {
    font-size: 1.5rem;
}

.brown_2f66 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.tertiary-active-1f98 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-3dce {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.icon-3dce:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.plasma_d69a {
    text-align: center;
    margin-bottom: 3rem;
}

.item_4102 {
    margin-bottom: 1rem;
}

.right_b705 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.box_static_7e7f {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .box_static_7e7f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .box_static_7e7f.light-1953 {
        direction: rtl;
    }
    
    .box_static_7e7f.light-1953 > * {
        direction: ltr;
    }
}

.search-0f0e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.search-0f0e:first-child {
    margin-top: 0;
}

.chip-cfef {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.accordion_263b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.accordion_263b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.description_advanced_b56b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_advanced_b56b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay_tiny_b239 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pattern_d5a1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.container_warm_9243 {
    list-style: none;
}

.container_warm_9243 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container_warm_9243 li:last-child {
    border-bottom: none;
}

/* Games Features */
.text_silver_ff91 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.menu-thick-f084 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.module_active_dcaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.video_5811 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.bright_99fe {
    margin: 2rem 0;
}

.rough-e900 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.outline_ac2f {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.gradient-gold-941e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.widget_d8df {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.shade_slow_0ace {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_slow_0ace {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-dim-fa57 {
    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);
}

.surface-dim-fa57:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item_liquid_6e57 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.avatar_large_a76d {
    font-size: 1.5rem;
}

.feature-0daf {
    color: var(--accent-color);
    margin: 0;
}

.border_rough_e550 {
    list-style: none;
}

.border_rough_e550 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.border_rough_e550 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.tooltip-dc93 {
    margin: 2rem 0;
}

.solid-efb3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.up-0e47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .up-0e47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-f403 {
    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);
}

.pattern-61f5 {
    font-size: 1.25rem;
}

.sort-9ddc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.silver-6a78,
.purple_ccf3 {
    text-align: center;
    margin: 2rem 0;
}

.menu-dim-b5d0,
.search_next_2255 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.box-6356 {
    margin: 2rem 0;
    text-align: center;
}

.cold-e6b8 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cold-e6b8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.carousel-f070 {
    position: relative;
    z-index: 1;
}

.breadcrumb_63ad {
    margin-bottom: 1rem;
}

.slider-north-fd6a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.yellow_e5d5 {
    margin-bottom: 3rem;
}

.breadcrumb_gas_0442 {
    margin-top: 3rem;
}

.media_green_e324 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .media_green_e324 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_green_e324 .photo_d613 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.over_39be {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon_9f7d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.brown_2c64 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.small_252e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .small_252e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small_252e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.border-2780 {
    margin-bottom: 1rem;
}

.surface_stale_d1ef img {
    margin-bottom: 1rem;
}

.gradient-3520 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_941c {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tiny_d71b {
    list-style: none;
}

.tiny_d71b li {
    margin-bottom: 0.5rem;
}

.tiny_d71b a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tiny_d71b a:hover {
    color: var(--accent-color);
}

.layout_4a44 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.middle-b2a3 {
    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);
}

.middle-b2a3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.list_49ac {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.list_49ac p {
    margin-bottom: 0.25rem;
}

.row-gas-6dc5 {
    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) {
    .row-gas-6dc5 {
        flex-direction: row;
    }
}

.orange_bc4f {
    text-align: center;
}

@media (min-width: 768px) {
    .orange_bc4f {
        text-align: left;
    }
}

.orange_bc4f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip-06a7 {
    font-size: 0.75rem !important;
}

.cold_7335 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pro_1099 {
    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);
    }
}

.module_5937 {
    animation: fadeInUp 0.6s ease-out;
}

.hero-467e {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.south-5f30 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south-5f30 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.content-orange-ed8a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-orange-ed8a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_red_46b4 {
    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);
}

.box_red_46b4 .module_active_dcaa {
    font-size: 1.25rem;
}

.box_red_46b4 .box_slow_1665 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.picture_f672 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture_f672 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture_outer_ebe2 {
    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);
}

.picture_outer_ebe2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_hard_0db3 {
    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);
}

.breadcrumb-517a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.purple_d507 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-ab35 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-clean-c8a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input-clean-c8a5 .video_5811 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input-clean-c8a5 .black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge-fa7e {
    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);
}

.accent_d60e {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.accent_d60e img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.accent_d60e img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.caption-soft-eccb {
    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);
}

.accordion-8051 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tabs_2de9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tabs_2de9 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tabs_2de9 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);
}

.tabs_2de9 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tabs_2de9 input::placeholder {
    color: var(--text-muted);
}

.link-static-9497 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.south_61b6 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.south_61b6 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.dirty-cd4a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.dirty-cd4a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.up-0e47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up-0e47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.short-f403 {
    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);
}

.short-f403 .pattern-61f5 {
    font-size: 1.25rem;
}

.short-f403 .sort-9ddc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.popup-adac {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide_e295 {
    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);
}

.wide_e295 .module_active_dcaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide_e295 .video_5811 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide_e295 .black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop-south-db2a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-4e29 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright-4e29 .status_5c19 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bright-4e29 .breadcrumb-e0fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_under_6da7 {
    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);
}

.simple-0da1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-0da1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-168b {
    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);
}

.out-168b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav_42ee {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.last_58a0 {
    flex: 1;
}

.feature_liquid_9d2b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.content_49f7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.east_a4b7 {
    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);
}

.east_a4b7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.outline_full_3ea9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_full_3ea9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-fad5 {
    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);
}

.info-fad5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick-cb96 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dim-8c0a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component_5d8c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.footer-ddb4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.bronze_662a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown-upper-207c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-green-b6d2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.secondary-green-b6d2 .label-2dd5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-green-b6d2 .filter_current_ac0c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_693c {
    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);
}

.yellow_8072 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-f263 {
    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);
}

.active-f263 .module_active_dcaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-f263 .video_5811 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active-f263 .black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
}

.video_center_c79c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_center_c79c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_044d {
    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);
}

.mask_044d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.input-b734 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-b734 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-f89f {
    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);
}

.white-f89f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_active_8cca {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-134b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.outline_ac2f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.thumbnail-advanced-2001 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.advanced_8478 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon-a6e1 {
    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);
}

.icon-a6e1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white-d44b {
    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);
}

.disabled_inner_9af4 {
    flex: 1;
}

.south-171e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.short-53f6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.primary-5b87 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info_9322 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-thick-8672 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-thick-8672 .status_5c19 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner-thick-8672 .breadcrumb-e0fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple_ccf3 {
    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);
}

.shadow_7bdc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow_7bdc {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.status-c13b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-c13b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid-fb2f {
    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);
}

.solid-fb2f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-2ca8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-f46e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.next_0a49 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.clean_7a6f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.caption-top-c060 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-1c88 {
    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);
}

.overlay-4caf {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-top-dba1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right-d2d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.yellow_8072 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-f263 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.active-f263 .video_5811 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-f263 .black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_9f8b {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-pressed-ef0d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .section-pressed-ef0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-pressed-ef0d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-orange-e01b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main-orange-e01b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_iron_258e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_feeb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer_78d3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.full-d0ee {
    padding: 1.5rem;
}

.image_gold_07c0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.status_bottom_79c3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_bottom_79c3 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;
}

.status_bottom_79c3 li:last-child {
    border-bottom: none;
}

.status_bottom_79c3 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.popup_green_1167 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_green_1167 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-4d9b {
    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);
}

.texture-4d9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.purple_42e1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue_ec5f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.first_b662 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination_bottom_be22 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element-ec95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fast-c119 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.notice-c3c0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_63d1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pink_61aa {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_4b5e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dynamic_c74f {
    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);
}

.content_clean_aa01 {
    text-align: center;
}

.photo-e8d1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paper_962a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.row_ed44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_60a8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_60a8 .video_5811 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_60a8 .black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-ba58 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .motion-ba58 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .motion-ba58 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-da6f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.medium-da6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-orange-4bdb {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.text_copper_645c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.video_5811 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.surface-simple-ef2c {
    padding: 1.5rem;
}

.black_1400 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hard_29cc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hard_29cc 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;
}

.hard_29cc li:last-child {
    border-bottom: none;
}

.hard_29cc li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.static_4303 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.section_b829 {
    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);
}

.section_b829:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_0028 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-simple-8b5d {
    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);
}

.footer_hard_0db3 {
    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;
}

.breadcrumb-517a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.purple_d507 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_7fd7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_narrow_9d2e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip-copper-49b0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_up_209c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tag-a943 {
    display: flex;
    gap: 1rem;
}

.tag-a943 .slider_purple_61b8 {
    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;
}

.nav_middle_8ad8 {
    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);
}

.preview-bottom-0378 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.text_up_4505 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text_up_4505 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;
}

.text_up_4505 li:last-child {
    border-bottom: none;
}

.text_up_4505 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.paragraph-e10b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .paragraph-e10b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph-e10b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-c482 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.popup-c482:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-copper-9e28 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.form-easy-eb8e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.label-2dd5 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.small_fa63 {
    font-size: 1rem;
}

.dark_aff3 {
    padding: 1.5rem;
}

.filter_current_ac0c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.chip-lite-f9f2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.chip-lite-f9f2 .content_clean_aa01 {
    text-align: center;
}

.chip-lite-f9f2 .paper_962a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.chip-lite-f9f2 .alert-clean-cfbc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tabs-af05 {
    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);
}

.tabs-af05:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.hover_4f47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_4f47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-hard-eab3 {
    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);
}

.description-hard-eab3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress_blue_5ab4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green_e293 {
    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);
}

.overlay-d804 {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-easy-9c45 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_2a48 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old-63b2 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pagination-paper-38d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_12d1 {
    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);
}

.hard-df73 {
    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;
}

.hard-df73.steel_27a5 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.hard-df73.black-05d5 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.hard-df73.layout-full-f4d6 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.hard-df73.heading-old-c065 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.hard-df73.warm-9f8d {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.slow_a285 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.first_5245 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_f783 {
    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);
}

.huge-0a5b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.backdrop-south-db2a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop-south-db2a 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;
}

.backdrop-south-db2a li:last-child {
    border-bottom: none;
}

.backdrop-south-db2a li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.text-1774 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .text-1774 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .text-1774 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-f3c1 {
    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-f3c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-f3c1.dirty-4fd2 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .secondary-f3c1.dirty-4fd2 {
        grid-column: span 3;
    }
}

.modal_middle_35c8 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.secondary-f3c1.dirty-4fd2 .modal_middle_35c8 {
    background: rgba(6, 182, 212, 0.1);
}

.fast_7fae {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.picture-5fc5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.secondary-f3c1.dirty-4fd2 .picture-5fc5 {
    color: var(--info-color);
}

.pro_9fc9 {
    padding: 1.5rem;
    text-align: center;
}

.table_11ac {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.secondary-f3c1.dirty-4fd2 .table_11ac {
    color: var(--info-color);
}

.table_a01f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.backdrop-8333 {
    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 */
.soft-7de0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft-7de0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small_d558 {
    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);
}

.small_d558:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_3cae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide_e295 {
    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);
}

.pattern-61f5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-tiny-7c4f {
    flex: 1;
}

.solid-efb3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sidebar_ba7b {
    color: var(--text-gray);
    line-height: 1.6;
}

.full_e945 {
    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);
}

.green-998b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.blue-2196 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pro_1099 {
    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);
}

.modal-3f31 {
  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);
}

.modal-3f31 .content_clean_aa01 {
    text-align: center;
}

.modal-3f31 .photo-e8d1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.modal-3f31 .paper_962a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text_7839 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-3c86 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-glass-9473 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search-0fd1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right_1660 {
    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);
}

.glass-456e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer-b836 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-motion-21f0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-motion-21f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-motion-21f0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short_190c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.short_190c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-center-aa8d {
    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);
}

.border_selected_908b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.primary_d600 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.focused_5627 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.focused_5627.focus_d745 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.focused_5627.mask-6518 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.focused_5627.tag_0514 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.carousel-dim-015c {
    padding: 1.5rem;
    text-align: center;
}

.main_medium_4419 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.focus-b920 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.focus-b920 .lite_1bb2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.pattern_prev_88ab {
    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);
}

.pattern_prev_88ab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.photo_b4af {
  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);
}

.notification-clean-dca4 {
    text-align: center;
}

.notification-clean-dca4 .photo-e8d1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.notification-clean-dca4 .paper_962a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.search-bottom-272f { text-align: center; }
.message_bottom_eb2b { text-align: left; }
.notification_static_62dd { text-align: right; }

.tabs-1953 { margin-bottom: 0; }
.detail_down_a7cd { margin-bottom: 0.5rem; }
.highlight-focused-e75d { margin-bottom: 1rem; }
.slider-warm-2dc8 { margin-bottom: 1.5rem; }
.outline-liquid-7d87 { margin-bottom: 2rem; }

.huge-282a { margin-top: 0; }
.west-1a65 { margin-top: 0.5rem; }
.background_cool_fcf2 { margin-top: 1rem; }
.bronze_cb27 { margin-top: 1.5rem; }
.progress_west_8daa { margin-top: 2rem; }

.fn-hidden-2cd9 { display: none; }
.fn-visible-2cd9 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .hover_8e4d {
        padding: 6rem 0 3rem;
    }
    
    .list_301a {
        text-align: center;
    }
    
    .box_static_7e7f {
        text-align: center;
    }
    
    .box-2296 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .background_hot_b45e,
    .easy-1f08,
    .cold-e6b8,
    .brown_2c64 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hover_8e4d {
        background: none;
    }
}

/* Providers Section */
.active-c8c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.disabled-997a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-997a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled-997a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-2474 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.avatar-2474:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.main_4ddc {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-2f42 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.aside_dark_112d {
    list-style: none;
    padding: 0;
}

.aside_dark_112d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.aside_dark_112d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.thick_02ac {
    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);
}

.thick_02ac p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.hidden-1826 {
    padding: var(--section-padding);
}

.out-81fd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out-81fd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification-d907 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.notification-d907:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tertiary-south-169f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sidebar_5773 {
    display: flex;
    flex-direction: column;
}

.small-1b92 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.icon_medium_2c0c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dropdown-f3f2 {
    color: var(--accent-color);
}

.huge_46dd {
    font-size: 1.25rem;
}

.avatar_efb5 {
    margin-bottom: 1rem;
}

.avatar_efb5 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.clean_ddb9 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pressed_8fdf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.content_clean_aa01 {
    text-align: center;
}

.photo-e8d1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paper_962a {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.feature_red_1268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_0794 {
    margin: 2rem 0;
}

.narrow_a273 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.narrow_a273 .module_active_dcaa {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_silver_f38f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.summary-09fb {
    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;
}

.summary-09fb:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_clean_67c2 {
    font-size: 2rem;
}

.shade_smooth_a497 {
    display: flex;
    flex-direction: column;
}

.border_6b73 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.filter_focused_ca3d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.slider-dynamic-d28f {
    padding: var(--section-padding);
}

.wood-d850 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .wood-d850 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wood-d850 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-be69 {
    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);
}

.image-be69:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.image-be69 .photo-e8d1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.image-be69 .paper_962a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.image-be69 .widget-dim-b7b0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.icon-3b0f {
    margin-top: 4rem;
}

.table_977f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.overlay_33f9 {
    overflow-x: auto;
}

.fixed_4f75 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fixed_4f75 thead {
    background: var(--accent-color);
}

.fixed_4f75 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.fixed_4f75 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_4f75 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.fixed_4f75 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.table_5071 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_3078 {
    max-width: 900px;
    margin: 0 auto;
}

.banner-281a {
    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);
}

.banner-281a:hover {
    border-color: var(--accent-color);
}

.sort-slow-d7b7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.sort-slow-d7b7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.popup_672c {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.banner-281a.fn-active-2cd9 .popup_672c {
    transform: rotate(45deg);
}

.smooth-06eb {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.banner-281a.fn-active-2cd9 .smooth-06eb {
    max-height: 1000px;
}

.smooth-06eb p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.mask-e3dd {
    padding: var(--section-padding);
}

.accent_d60e {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.shade-811f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_lower_79a9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_lower_79a9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent_selected_2e92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_hovered_d5f7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.texture_green_3d48 {
    font-size: 2rem;
}

.huge-b57c {
    color: var(--text-white);
    margin: 0;
}

.under_7d62 {
    list-style: none;
    padding: 0;
}

.under_7d62 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.under_7d62 li:last-child {
    border-bottom: none;
}

.tooltip_in_38c1 {
    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);
}

.tooltip_in_38c1 p {
    color: var(--success-color);
    margin: 0;
}

.element_cb45 {
    margin-top: 3rem;
}

.preview-bottom-0378 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.west_3bf3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .west_3bf3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.background_a736 {
    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);
}

.chip_out_4822 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.background_a736 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.description_786c {
    padding: var(--section-padding);
}

.out-8e32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out-8e32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-627d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-627d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.progress-4551 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-b407 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wide-37cd {
    flex: 1;
}

.outer-b55a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.thick_b0dc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.next-3096 {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass-7266 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-7266:last-child {
    border-bottom: none;
}

/* Comparison Section */
.outline_gold_0f1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.image_43d5 {
    padding: var(--section-padding);
}

.purple_56e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.element-98bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-98bc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-7fdb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_5078, .basic_23df, .form-clean-db96 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.form-clean-db96 {
    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 */
.secondary-0dfa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_in_b295 {
    margin: 2rem 0;
}

.module-5cfc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_0d6e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.accordion_gas_7d73 {
    list-style: none;
    padding: 0;
}

.accordion_gas_7d73 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;
}

.accordion_gas_7d73 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.accordion_gas_7d73 li:last-child {
    border-bottom: none;
}

.basic_63c2 {
    text-align: center;
    margin-top: 2rem;
}

.pagination-e262 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.carousel_cb7c {
    padding: var(--section-padding);
}

.highlight_orange_4b5c {
    margin: 2rem 0;
}

.tall_cfcd {
    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) {
    .tall_cfcd {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tall_cfcd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.upper_560c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.complex-1a60 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.texture_up_d4e6 {
    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;
}

.layout-ac23 {
    flex: 1;
}

.top-9675 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.item-under-c8d7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.widget_bae6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.media_f033 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .media_f033 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.highlight_f426 {
    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);
}

.highlight_f426:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight_f426 .photo-e8d1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight_f426 .paper_962a {
    color: var(--text-gray);
    font-size: 1rem;
}

.frame_76d7 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-8ea0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.popup-8ea0 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.last-096f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .last-096f {
        grid-template-columns: 1fr 1fr;
    }
}

.wrapper-91ea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_bronze_9ec0 {
    margin-bottom: 1.5rem;
}

.header_bronze_9ec0 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.header_bronze_9ec0 input,
.header_bronze_9ec0 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;
}

.header_bronze_9ec0 input:focus,
.header_bronze_9ec0 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.selected-0d90 {
    width: 100%;
    margin-top: 1rem;
}

.chip-a034 {
    display: flex;
    align-items: center;
}

.down_11ce {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.column-71f3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.orange-5ce8 {
    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;
}

.bright_e272 {
    color: var(--text-gray);
}

.item_stale_ff66 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.text-advanced-9d14 {
    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);
}

.text-advanced-9d14 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.block-41ea {
    margin-top: 3rem;
}

.north_c372 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.rough-5115 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_yellow_d26a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.element-out-b7c7 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element-out-b7c7:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.search_current_922d {
    padding: var(--section-padding);
}

.active-ee1e {
    margin: 2rem 0;
}

.badge-b586 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gradient-20c7 {
    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;
}

.gradient-20c7:hover, .gradient-20c7.fn-active-2cd9 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.east-7ca1 {
    display: none;
}

.east-7ca1.fn-active-2cd9 {
    display: block;
}

.message-b27a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_bronze_fa75 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.medium-e935 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.medium-e935 ul {
    list-style: none;
    padding: 0;
}

.medium-e935 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.medium-e935 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.description-5a44 {
    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 */
.gallery_south_8ad1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-new-5976 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-d5b7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.overlay_lower_cd9a {
    color: var(--accent-color);
    margin: 0;
}

.title_e017 {
    display: flex;
    gap: 1.5rem;
}

.avatar-advanced-119d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.primary_cool_39e8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.wrapper-675d {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.wrapper-675d.sidebar-c1e5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.wrapper-675d.status_complex_ad93 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.wrapper-675d.video-easy-8d56 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.prev-3f7d {
    margin-top: 2rem;
}

.under_1446 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.element-a280 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .element-a280 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-complex-de53 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.content-selected-c750 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.texture-eaeb {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.west_6dcb {
    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 */
.panel_full_1075 {
    padding: var(--section-padding);
}

.under_5262 {
    margin: 2rem 0;
}

.pagination_5929 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.hovered-34a4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.text_tiny_9c2d {
    list-style: none;
    padding: 0;
}

.text_tiny_9c2d 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;
}

.text_tiny_9c2d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.text_tiny_9c2d li:last-child {
    border-bottom: none;
}

.list_edc9 {
    margin: 2rem 0;
}

.breadcrumb_stale_f032 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mini_25d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mini_25d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.white-8e7a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under_43a2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.right_f44a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.input_full_21ca {
    margin-top: 2rem;
}

.feature_liquid_9d2b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.image-yellow-3d8c {
    list-style: none;
    padding: 0;
}

.shadow_prev_7526 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.shadow_prev_7526 a {
    color: var(--accent-color);
    text-decoration: none;
}

.shadow_prev_7526 a:hover {
    text-decoration: underline;
}

.border-outer-7cd6 {
    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 */
.hovered-923a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_4fb2 {
    margin: 2rem 0;
}

.brown_556e {
    margin-bottom: 3rem;
}

.brown_556e .panel_0d6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.input-right-54d4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wide_d18c {
    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);
}

.wide_d18c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.preview-fe88 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .preview-fe88 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic_66d4 {
    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 */
.white-e2ad {
    padding: var(--section-padding);
}

.layout-722c {
    margin: 2rem 0;
}

.avatar-ad99 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.title-3da4 {
    overflow-x: auto;
    margin: 2rem 0;
}

.action-21e1 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.dropdown_static_d2e2 {
    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;
}

.hot_3502 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.widget_medium_2523 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .widget_medium_2523 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_fluid_4b1f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_fluid_4b1f .module_active_dcaa {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.icon_fluid_4b1f .video_5811 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current_d1f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.table-3a55 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_bcef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_bcef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-28ea {
    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;
}

.popup-28ea:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.video_6519 {
    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);
}

.slow-d77a {
    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;
}

.west_63c4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.input_5175 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.clean_74a3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tooltip-wood-08e3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-over-e44b {
    color: var(--text-white);
    font-weight: 600;
}

.down-388e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.glass_007e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.glass_007e .slider_purple_61b8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message_931b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message_931b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_wood_ac6d {
    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);
}

.overlay_wood_ac6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay_wood_ac6d .photo-e8d1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay_wood_ac6d .paper_962a {
    color: var(--text-gray);
    font-size: 1rem;
}

.form_2a5f {
    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);
}

.badge_e946 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.badge_e946 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.caption-top-c060 {
    margin: 2rem 0;
}

.down-1c88 {
    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);
}

.down-1c88:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.overlay-4caf {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.surface-narrow-8b37 {
    flex: 1;
}

.badge-top-dba1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.right-d2d0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.yellow_8072 {
    margin: 2rem 0;
}

.active-f263 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-f263 .video_5811 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.active-f263 .black_1400 {
    color: var(--text-gray);
    margin: 0;
}

.hot_9f8b {
    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);
}

.hot_9f8b .menu-dim-b5d0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.current_d1f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.white-d44b {
    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;
}

.disabled_inner_9af4 {
    flex: 1;
}

.short-53f6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.primary-5b87 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.footer_hard_0db3 {
    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;
}

.notice-db30 {
    flex: 1;
}

.breadcrumb-517a {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.purple_d507 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.chip-copper-49b0 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.sort_up_209c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tag-a943 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tag-a943 .slider_purple_61b8 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.nav_middle_8ad8 {
    margin-top: 2rem;
}

.nav_middle_8ad8 .preview-bottom-0378 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.input-gas-bff4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dynamic_c74f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dynamic_c74f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_c74f .content_clean_aa01 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row_ed44 {
    margin: 2rem 0;
}

.article_60a8 {
    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 */
.sort-b088 {
    padding: var(--section-padding);
}

.surface-simple-ef2c {
    margin-top: 1rem;
}

.hard_29cc {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hard_29cc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hard_29cc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.prev_2325 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_white_a490 {
    margin: 2rem 0;
}

.header-glass-4fcb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.middle-2b1c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.over-e61d {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.secondary_f727 {
    margin: 2rem 0;
}

.out_cc80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.out_cc80 .panel_0d6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section_small_52d1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .section_small_52d1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video_easy_d793 {
    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);
}

.inner_edcb {
    color: var(--text-white);
    font-weight: 600;
}

.badge-slow-6f9c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.shade-2ca9 {
    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);
}

.shade-2ca9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.badge-6457 {
    padding: var(--section-padding);
}

.component_9543 {
    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;
}

.component_9543:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dropdown_7333 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown_7333 .chip_out_4822 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_7333 .table-ae80 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.rough_8f87 {
    flex: 1;
}

.carousel-slow-99da {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.motion_a21f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion_a21f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.motion_a21f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.media-4a6b {
    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);
}

.media-4a6b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media-4a6b strong {
    color: var(--warning-color);
}

/* Slots Section */
.pressed-e918 {
    padding: var(--section-padding);
}

.bronze_662a {
    margin: 2rem 0;
}

/* Table Games Section */
.info_b4cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-upper-207c {
    margin: 2rem 0;
}

.secondary-green-b6d2 {
    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);
}

.secondary-green-b6d2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.secondary-green-b6d2 .label-2dd5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.secondary-green-b6d2 .filter_current_ac0c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hover_693c {
    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);
}

.hover_693c .menu-dim-b5d0 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.table-clean-8389 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-7db1 {
    margin: 2rem 0;
}

.fresh-8eda {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item_steel_2304 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.next_2482 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.out-eb1d {
    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);
}

.out-eb1d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.out-eb1d.fn-active-2cd9 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message_cc58 {
    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);
}

.hot_c44d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hot_c44d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.surface_right_acc6 {
    padding: var(--section-padding);
}

.search_ff80 {
    margin: 2rem 0;
}

.frame-8269 {
    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);
}

.frame-8269:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .frame-8269 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.prev-6585 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.picture-easy-ab30 {
    flex: 1;
}

.stale-0086 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.black-bb87 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.badge-0032 {
    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;
}

.notice-advanced-befd {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.background-7086 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gallery_static_1181 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button_cold_3e0a {
    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;
}

.button_cold_3e0a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.breadcrumb-gas-19c2 {
    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);
}

.icon-0947 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.icon-0947 strong {
    color: var(--accent-color);
}

/* New Games Section */
.detail-up-ad14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down_51cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .down_51cd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .down_51cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-468e {
    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;
}

.icon-468e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.banner_75f3 {
    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;
}

.picture_center_20da {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.component-thick-29a3 {
    font-size: 2rem;
}

.tertiary-hard-933a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.info_4edb {
    flex: 1;
}

.backdrop-black-938a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.background_22cf {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.accordion-44dd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.huge_896a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-5a4a {
    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;
}

.module_copper_a180 {
    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;
}

.module_copper_a180:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.overlay_e16e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_9148 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_4c38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .accordion_4c38 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-ce0c {
    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);
}

.plasma_0cd2 {
    color: var(--text-white);
    font-weight: 600;
}

.next_f674 {
    color: var(--accent-color);
    font-weight: 600;
}

.focus-stone-73ba {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.focus-stone-73ba strong {
    color: var(--accent-color);
}

/* Security Section */
.hero_6571 {
    padding: var(--section-padding);
}

/* Benefits Section */
.menu_0bad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.backdrop_full_9883 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.glass-304c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower-2f47 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.banner-simple-749f {
    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) {
    .banner-simple-749f {
        flex-direction: column;
        gap: 1rem;
    }
}

.banner-simple-749f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.banner-simple-749f .footer_hard_0db3 {
    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;
}

.banner-simple-749f .notice-db30 {
    flex: 1;
}

.banner-simple-749f .breadcrumb-517a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.banner-simple-749f .purple_d507 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.caption_upper_d89d {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_upper_d89d .solid-efb3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_upper_d89d .popup-adac {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption_upper_d89d .popup-adac li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.caption_upper_d89d .popup-adac li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.accordion_hovered_7ad5 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.carousel_small_65ab {
    padding: var(--section-padding);
}

.header-next-72cf {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .header-next-72cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-soft-8490 {
    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);
}

.message-soft-8490:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.message-soft-8490 .progress-2fa5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-soft-8490 .summary_wood_c9bf {
    flex: 1;
}

.message-soft-8490 .status_5c19 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.message-soft-8490 .section-6f59 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.texture-c18e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-c18e .status-stone-a875 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture-c18e .brown_6d41 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.texture-c18e .brown_6d41 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);
}

.texture-c18e .brown_6d41 li:last-child {
    border-bottom: none;
}

.texture-c18e .brown_6d41 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;
}

.texture-c18e .brown_6d41 li strong {
    color: var(--text-white);
}

.slow-d7e2 {
    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);
}

.slow-d7e2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow-d7e2 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.sidebar_light_76fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-8514 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .image-8514 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carousel_north_8f3c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel_north_8f3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.bottom_4b49 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-b63f {
    font-size: 2rem;
}

.slider_under_2c5c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.popup_c13a {
    flex: 1;
}

.status_517f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_517f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.status_517f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cold-5c35 {
    margin-top: 3rem;
}

.pagination_5929 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hovered-34a4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text_tiny_9c2d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text_tiny_9c2d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.text_tiny_9c2d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.text_tiny_9c2d li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.notification_down_b1b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth_91ed {
    margin: 2rem 0;
}

.section_selected_2782 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.section_selected_2782 .panel_0d6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.bright_386c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bright_386c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_full_d601 {
    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);
}

.footer_full_d601:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.surface_792e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notice-under-b8f0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.container-narrow-5875 {
    padding: var(--section-padding);
}

.sidebar-06fd {
    margin: 2rem 0;
}

.hidden-75a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hidden-75a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden-75a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_old_6fc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled_old_6fc4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.panel_tall_7a8f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.table-203d {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.light-1c23 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.light-1c23.static_8b79 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.paragraph_north_0df9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.module_0828 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.button_c9d0 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lite_52f0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.header_plasma_da3f {
    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);
}

.header_plasma_da3f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header_plasma_da3f strong {
    color: var(--accent-color);
}

/* Update Log Section */
.small-1acd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_1245 {
    margin: 2rem 0;
}

.column_04f4 {
    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) {
    .column_04f4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.column_04f4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.column_04f4::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);
}

.black-e940 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.white_490f {
    flex: 1;
}

.pagination-wood-28b1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wood_9c15 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wood_9c15 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.advanced_532c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading-brown-7d5c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.right_bfb6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .right_bfb6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_a25c {
    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);
}

.current_8816 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bright_db25 {
    flex: 1;
}

.slider-4627 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.main_fluid_d670 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.grid_2a69 {
    margin-top: 2rem;
    text-align: center;
}

.outline_672e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline_672e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.hover_4f47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_4f47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-hard-eab3 {
    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);
}

.description-hard-eab3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.description-hard-eab3 .purple_42e1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-hard-eab3 .blue_ec5f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.description-hard-eab3 .first_b662 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.description-hard-eab3 .pagination_bottom_be22 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.icon-rough-6d00 {
    padding: var(--section-padding);
}

.green_e293 .frame-9ece {
    flex: 1;
}

/* Promo Calendar Section */
.focus-selected-7f05 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_next_eb6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_next_eb6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle_dbf2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_9672 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.red-cea3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-6c39 {
    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);
}

.upper-020d {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.wrapper-dcf3 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.text-1e38 {
    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);
}

.text-1e38 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.text-1e38 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.photo-f7c5 {
    padding: var(--section-padding);
}

.fresh_4f4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fresh_4f4c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-1b29 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_action_75e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.shadow_copper_9974 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shadow_copper_9974 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_1bdf {
    margin-top: 3rem;
}

.hot_1bdf .pagination_5929 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hot_1bdf .hovered-34a4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_1bdf .text_tiny_9c2d {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hot_1bdf .text_tiny_9c2d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hot_1bdf .text_tiny_9c2d li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hot_1bdf .text_tiny_9c2d li strong {
    color: var(--warning-color);
}

.search-3104 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-3104 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.grid_d171 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stale-b25e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale-b25e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down-3711 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-3711 .panel_0d6e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.soft_0d9c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar_2841 {
    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);
}

.sidebar_2841:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.simple-4f3a {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-complex-44dd {
    flex: 1;
}

.secondary-188a {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.photo-soft-32e1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gold_7a68 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.static_5292 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.menu-stone-b4ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .menu-stone-b4ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-9c0e {
    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);
}

.new-9c0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.lower-ea79 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_new_f0fd {
    color: var(--text-gray);
    font-size: 1rem;
}

.popup-8ea0 {
    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);
}

.footer-stale-66fb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.footer-stale-66fb strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.wrapper_4516 { 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; }
.icon-3dce, .accordion_263b { max-width:100%; height:auto; }

.dropdown_025c, .caption-2d64, .section_df68 { white-space:normal; }

.list_301a,
.box_static_7e7f,
.soft-7de0,
.hover_4f47,
.yellow_8072,
.sidebar-motion-21f0 {
  flex-wrap:wrap;
}

[class*="grid"],
.menu-stone-b4ed,
.hidden-75a1,
.media_green_e324 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.hover_8e4d img,
.box_static_7e7f img,
.tertiary-active-1f98 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.text_11c0, .out-602f,
.item_4102, .right_b705 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.overlay_33f9 { width:100%; overflow-x:auto; }
.overlay_33f9 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.disabled-997a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .disabled-997a {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.avatar-2474 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.wood-d850,
.blue_82a7,
.outline_blue_761c,
.alert-1f7d,
.media_f033,
.menu-stone-b4ed,
.hidden-75a1,
.media_green_e324,
.photo_b4af,
.search_ff80,
.disabled-997a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .wood-d850,
  .blue_82a7,
  .outline_blue_761c,
  .alert-1f7d,
  .media_f033,
  .menu-stone-b4ed,
  .hidden-75a1,
  .media_green_e324,
  .photo_b4af,
  .search_ff80,
  .disabled-997a {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.image-be69,
.highlight_f426,
.new-9c0e,
.photo_d613,
.disabled_old_6fc4,
.notification-clean-dca4,
.frame-8269,
.avatar-2474 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.wrapper_in_a37c,
.card_f239,
.container_6ca5 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wrapper_in_a37c > *,
.card_f239 > *,
.container_6ca5 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 560c */
.shadow-element-h8 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
