/* {$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;
}

.aside_easy_c5ee {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.simple_4622 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .simple_4622 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .simple_4622 {
        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 */
.dropdown-cf0f {
    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);
}

.nav-db8c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .nav-db8c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dropdown-9c2a {
        grid-column: 1;
    }
    
    .detail_4abe {
        grid-column: 2;
    }
    
    .description-7d13 {
        grid-column: 3;
    }
}

.dropdown-9c2a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dropdown-9c2a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.fresh_3277 {
    display: none;
}

@media (min-width: 1024px) {
    .fresh_3277 {
        display: block;
    }
}

/* Grouped Navigation */
.orange-f9ee {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sidebar-thick-7fd6 {
    position: relative;
}

.in-41ed {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.sidebar-thick-7fd6 .section_stale_831f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.section_stale_831f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.breadcrumb-fast-87ae {
    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;
}

.breadcrumb-fast-87ae:hover,
.breadcrumb-fast-87ae.fn-active-6433 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.notice_9a4a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .notice_9a4a {
        display: flex;
    }
}

/* Mobile Register Button */
.detail_4abe {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .detail_4abe {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.wrapper_pink_1338 {
    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;
}

.wrapper_pink_1338::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 */
.description-7d13 {
    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) {
    .description-7d13 {
        display: none;
    }
}

.description-7d13 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.description-7d13.fn-active-6433 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.description-7d13.fn-active-6433 span:nth-child(2) {
    opacity: 0;
}

.description-7d13.fn-active-6433 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mask-out-bd4c {
    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;
}

.mask-out-bd4c.fn-active-6433 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.bottom_0131 {
    overflow: hidden;
}

.background-117b {
    list-style: none;
    padding: 0.75rem 0;
}

.center-7ab8 {
    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;
}

.center-7ab8:hover,
.center-7ab8.fn-active-6433 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.center-7ab8.info-plasma-12e7 {
    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;
}

.center-7ab8.info-plasma-12e7::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 */
.hot-bfd0 {
    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;
}

.pressed-f1b6 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.pressed-f1b6:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.notice_962b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.notice_962b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.west_2c53 {
    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;
}

.west_2c53:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.new_5e7b {
    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;
}

.icon_easy_caa9 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.icon_easy_caa9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.article_under_c84a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.article_under_c84a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.texture-action-1b45 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.texture-action-1b45: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);
}

.sort_smooth_6b6a {
    font-size: 1em;
    font-weight: 700;
}

.carousel_bf0b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.shadow-plasma-5110 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.shadow-plasma-5110::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;
}

.pink-684c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .pink-684c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.green-d9e1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.main-b2e0 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.label_b0f8 {
    margin-bottom: 2rem;
}

.module-solid-45dd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .module-solid-45dd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_e317 {
    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);
}

.purple_37b2 {
    font-size: 1.5rem;
}

.smooth_7267 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.upper-dacd {
    display: flex;
    justify-content: center;
    align-items: center;
}

.black_63d0 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.black_63d0:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.gallery-dark-275a {
    text-align: center;
    margin-bottom: 3rem;
}

.wrapper_white_bd51 {
    margin-bottom: 1rem;
}

.search_b76b {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.selected_223b {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .selected_223b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .selected_223b.media-a161 {
        direction: rtl;
    }
    
    .selected_223b.media-a161 > * {
        direction: ltr;
    }
}

.texture_acad {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.texture_acad:first-child {
    margin-top: 0;
}

.rough_7612 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.label_hard_e485 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.label_hard_e485:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.bronze_518d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_518d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description_f07f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph-yellow-5469 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo-4e8a {
    list-style: none;
}

.photo-4e8a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-4e8a li:last-child {
    border-bottom: none;
}

/* Games Features */
.east-ce75 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.badge_2342 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.section_middle_20f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_wide_da6c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pink_910b {
    margin: 2rem 0;
}

.status-top-f53f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.slider-light-2f2b {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.layout-red-b8e8 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.video_9ffa {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.wrapper-tiny-8f95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-tiny-8f95 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-first-8b9d {
    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);
}

.content-first-8b9d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim_c842 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer_dfa1 {
    font-size: 1.5rem;
}

.black-7976 {
    color: var(--accent-color);
    margin: 0;
}

.surface_1a39 {
    list-style: none;
}

.surface_1a39 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.surface_1a39 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.chip-brown-ca66 {
    margin: 2rem 0;
}

.info_light_6d7a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bronze_4c0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .bronze_4c0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_44b4 {
    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);
}

.advanced-5ab9 {
    font-size: 1.25rem;
}

.steel-02d1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.static_fa08,
.left-d9c9 {
    text-align: center;
    margin: 2rem 0;
}

.banner-purple-0c91,
.carousel-3c0a {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pro_eec3 {
    margin: 2rem 0;
    text-align: center;
}

.block_selected_a315 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.block_selected_a315::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;
}

.liquid_bdd6 {
    position: relative;
    z-index: 1;
}

.border_white_25d7 {
    margin-bottom: 1rem;
}

.surface_aa00 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tabs_3c10 {
    margin-bottom: 3rem;
}

.texture_3ba3 {
    margin-top: 3rem;
}

.modal_focused_71f8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .modal_focused_71f8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_focused_71f8 .hero_e317 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.easy_1789 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main-blue-71d1 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.outer_608d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.status_92e7 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .status_92e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status_92e7 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.first-8c73 {
    margin-bottom: 1rem;
}

.pink_96bc img {
    margin-bottom: 1rem;
}

.content_b017 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_iron_2ff6 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.background_medium_213f {
    list-style: none;
}

.background_medium_213f li {
    margin-bottom: 0.5rem;
}

.background_medium_213f a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.background_medium_213f a:hover {
    color: var(--accent-color);
}

.gradient_777e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar-brown-49bc {
    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);
}

.sidebar-brown-49bc:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.backdrop_9fed {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.backdrop_9fed p {
    margin-bottom: 0.25rem;
}

.carousel-31da {
    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) {
    .carousel-31da {
        flex-direction: row;
    }
}

.inner_6c09 {
    text-align: center;
}

@media (min-width: 768px) {
    .inner_6c09 {
        text-align: left;
    }
}

.inner_6c09 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dropdown-7f26 {
    font-size: 0.75rem !important;
}

.filter-rough-bec6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.box-04b0 {
    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);
    }
}

.wrapper_small_72a8 {
    animation: fadeInUp 0.6s ease-out;
}

.form_70a9 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.form_bright_18ee {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_bright_18ee {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.surface-6971 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface-6971 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-0654 {
    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);
}

.upper-0654 .section_middle_20f8 {
    font-size: 1.25rem;
}

.upper-0654 .menu-54dc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.huge_67db {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .huge_67db {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-72c7 {
    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);
}

.pressed-72c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large_3bc3 {
    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);
}

.image-d64b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notice-next-efab {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_stone_a9ae {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_steel_b95d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.block_steel_b95d .active_wide_da6c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.block_steel_b95d .mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_bottom_a60a {
    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);
}

.status-69a9 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.status-69a9 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.status-69a9 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.sidebar-5019 {
    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);
}

.carousel_dirty_e879 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.old-ff2b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.old-ff2b label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.old-ff2b 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);
}

.old-ff2b input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.old-ff2b input::placeholder {
    color: var(--text-muted);
}

.layout_688a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.plasma-d8eb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.plasma-d8eb input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.tag-black-027d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.tag-black-027d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.bronze_4c0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_4c0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down_44b4 {
    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);
}

.down_44b4 .advanced-5ab9 {
    font-size: 1.25rem;
}

.down_44b4 .steel-02d1 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.heading_dde3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-7a3d {
    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);
}

.small-7a3d .section_middle_20f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.small-7a3d .active_wide_da6c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.small-7a3d .mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_yellow_ce26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-slow-5ecb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-slow-5ecb .wrapper_south_cc74 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-slow-5ecb .chip_left_bfb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-ffb2 {
    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-cf64 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-cf64 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_a5e9 {
    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);
}

.detail_a5e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_cold_e9b0 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.outer_a341 {
    flex: 1;
}

.easy_773a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph-97db {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover_df8c {
    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);
}

.hover_df8c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.item-bcf0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-bcf0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas-4148 {
    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);
}

.gas-4148:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion_orange_0fa3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-ee08 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.up_bf8c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline-stone-c455 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.next-d6dd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.content_light_9372 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_light_61e3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.frame_light_61e3 .tooltip_hovered_33a5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_light_61e3 .right-62fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner-4a77 {
    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);
}

.overlay_29e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_pressed_2222 {
    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);
}

.frame_pressed_2222 .section_middle_20f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_pressed_2222 .active_wide_da6c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.frame_pressed_2222 .mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_daec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow_daec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-043f {
    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);
}

.paragraph-043f:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.module-white-b0b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-white-b0b2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma-c5d9 {
    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);
}

.plasma-c5d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_complex_f809 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-e52c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slider-light-2f2b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.notice_d57c {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.filter-c9e3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_focused_90de {
    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);
}

.module_focused_90de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-tall-9b41 {
    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);
}

.focus-dd6b {
    flex: 1;
}

.brown-1756 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.component_b51f {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.plasma-e090 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_44fc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper-be23 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-be23 .wrapper_south_cc74 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.upper-be23 .chip_left_bfb5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.left-d9c9 {
    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);
}

.grid-top-38fa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-top-38fa {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.main_26ab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main_26ab {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame_3d83 {
    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);
}

.frame_3d83:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold_6ea2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_soft_3221 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.frame-953a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column_slow_5dc4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.info_motion_91e7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop-gas-3699 {
    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);
}

.texture_new_4d16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-plasma-f132 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_d9d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_29e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame_pressed_2222 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.frame_pressed_2222 .active_wide_da6c {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_pressed_2222 .mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_7efa {
    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);
}

.icon_f783 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .icon_f783 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon_f783 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood-78ad {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood-78ad:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.new_1384 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.sidebar_gold_0078 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mini-1876 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.feature_center_f1ff {
    padding: 1.5rem;
}

.container_02b1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner-short-23ee {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-short-23ee li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.banner-short-23ee li:last-child {
    border-bottom: none;
}

.banner-short-23ee li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.active_narrow_719c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_narrow_719c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.first-e484 {
    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);
}

.first-e484:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_4c4d {
    font-size: 2rem;
    flex-shrink: 0;
}

.cold-bc12 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-d672 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hero_ce15 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.video-clean-e0a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center_86c9 {
    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);
}

.action-1c0b {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-0e62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.new-90d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle_ba68 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fixed-cf37 {
    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);
}

.hover_e02a {
    text-align: center;
}

.silver_3639 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active_dynamic_12fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.east_ea46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_8e25 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lite_8e25 .active_wide_da6c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lite_8e25 .mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_4fb8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mini_4fb8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini_4fb8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_192a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.alert_192a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden-03b9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.menu-north-82b8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_wide_da6c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.motion-c5a7 {
    padding: 1.5rem;
}

.mask_dirty_0777 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blue_10d1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue_10d1 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;
}

.blue_10d1 li:last-child {
    border-bottom: none;
}

.blue_10d1 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.gallery_2035 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.notification_warm_4611 {
    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);
}

.notification_warm_4611:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_clean_83f9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-fast-2500 {
    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);
}

.large_3bc3 {
    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;
}

.image-d64b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice-next-efab {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget-0de1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow-eb43 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden_full_b340 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dropdown_51de {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.widget_79f0 {
    display: flex;
    gap: 1rem;
}

.widget_79f0 .warm_c3ef {
    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;
}

.current-e030 {
    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);
}

.avatar_e740 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.media_f415 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media_f415 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;
}

.media_f415 li:last-child {
    border-bottom: none;
}

.media_f415 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.avatar-green-b9d9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar-green-b9d9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .avatar-green-b9d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table-b46f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table-b46f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.east-1e9e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.shade_8d77 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tooltip_hovered_33a5 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dim_a19e {
    font-size: 1rem;
}

.light_5f7b {
    padding: 1.5rem;
}

.right-62fe {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.outline_8f54 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.outline_8f54 .hover_e02a {
    text-align: center;
}

.outline_8f54 .active_dynamic_12fb {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.outline_8f54 .element_8fd4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.nav_d063 {
    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);
}

.nav_d063:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.preview_east_a2b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_east_a2b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_859b {
    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);
}

.paragraph_859b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button_fcd7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary_black_8a88 {
    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);
}

.widget-8dc7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_3246 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border-9586 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_5c34 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.preview_right_8e11 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_a5d4 {
    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);
}

.left-7a81 {
    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;
}

.left-7a81.active-b49b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.left-7a81.status_over_a791 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.left-7a81.hero_f50a {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.left-7a81.top-d0d3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.left-7a81.west_85a2 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.form_soft_fb76 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_31f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.rough_1e18 {
    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);
}

.row_large_b96e {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame_yellow_ce26 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_yellow_ce26 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;
}

.frame_yellow_ce26 li:last-child {
    border-bottom: none;
}

.frame_yellow_ce26 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.middle_b4e7 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .middle_b4e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .middle_b4e7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-fixed-467e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.preview-fixed-467e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-fixed-467e.gallery_south_2da6 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .preview-fixed-467e.gallery_south_2da6 {
        grid-column: span 3;
    }
}

.section_smooth_1001 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.preview-fixed-467e.gallery_south_2da6 .section_smooth_1001 {
    background: rgba(6, 182, 212, 0.1);
}

.next_1596 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.fast_052f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.preview-fixed-467e.gallery_south_2da6 .fast_052f {
    color: var(--info-color);
}

.top-1a65 {
    padding: 1.5rem;
    text-align: center;
}

.texture-complex-5301 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.preview-fixed-467e.gallery_south_2da6 .texture-complex-5301 {
    color: var(--info-color);
}

.element-b9bc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.steel_82d2 {
    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 */
.secondary-22b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-22b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-up-4dbd {
    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);
}

.outline-up-4dbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-2ccf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-7a3d {
    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);
}

.advanced-5ab9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dropdown_gold_dfac {
    flex: 1;
}

.info_light_6d7a {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-7db3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-prev-0b96 {
    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);
}

.hot-5c2d {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dropdown-fluid-4921 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.box-04b0 {
    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);
}

.media_out_0ded {
  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);
}

.media_out_0ded .hover_e02a {
    text-align: center;
}

.media_out_0ded .silver_3639 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.media_out_0ded .active_dynamic_12fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_iron_b092 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-pro-c0a2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pagination-glass-52f5 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paper-c8a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.light-b008 {
    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);
}

.modal-7792 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.carousel_pro_bcac {
    color: var(--text-gray);
    line-height: 1.6;
}

.inner_882d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .inner_882d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .inner_882d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upper_c171 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.upper_c171:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_medium_c0da {
    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);
}

.secondary_rough_27cc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange_c468 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dim-44bd {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dim-44bd.dirty_f0a3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dim-44bd.message-662c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.dim-44bd.layout_5a76 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.detail-south-69a0 {
    padding: 1.5rem;
    text-align: center;
}

.pagination_full_5748 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.purple-f081 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.purple-f081 .fluid-3204 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.center_5b4b {
    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);
}

.center_5b4b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.table_center_f658 {
  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);
}

.shadow-motion-3cf8 {
    text-align: center;
}

.shadow-motion-3cf8 .silver_3639 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.shadow-motion-3cf8 .active_dynamic_12fb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.list_d646 { text-align: center; }
.tabs-first-5492 { text-align: left; }
.photo_wide_42bd { text-align: right; }

.hidden_north_3388 { margin-bottom: 0; }
.accent-69f6 { margin-bottom: 0.5rem; }
.complex-0b31 { margin-bottom: 1rem; }
.gradient-dark-2bea { margin-bottom: 1.5rem; }
.motion-12e5 { margin-bottom: 2rem; }

.warm-b46b { margin-top: 0; }
.avatar-up-7560 { margin-top: 0.5rem; }
.icon_motion_71de { margin-top: 1rem; }
.content-efc5 { margin-top: 1.5rem; }
.layout_focused_2a61 { margin-top: 2rem; }

.fn-hidden-6433 { display: none; }
.fn-visible-6433 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .shadow-plasma-5110 {
        padding: 6rem 0 3rem;
    }
    
    .pink-684c {
        text-align: center;
    }
    
    .selected_223b {
        text-align: center;
    }
    
    .module-solid-45dd {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .dropdown-cf0f,
    .mask-out-bd4c,
    .block_selected_a315,
    .outer_608d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .shadow-plasma-5110 {
        background: none;
    }
}

/* Providers Section */
.complex_7bef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_4da7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_4da7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary_4da7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow-c0b7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.narrow-c0b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup-01a0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.widget-silver-2d9c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hot-3b50 {
    list-style: none;
    padding: 0;
}

.hot-3b50 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hot-3b50 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.out-9d88 {
    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);
}

.out-9d88 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.highlight_hard_ac6b {
    padding: var(--section-padding);
}

.element-blue-7245 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-blue-7245 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_full_e93b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pattern_full_e93b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.north_276f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.notice-4f1f {
    display: flex;
    flex-direction: column;
}

.alert_east_c59c {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.wrapper_e476 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.header-top-80b3 {
    color: var(--accent-color);
}

.mask_328f {
    font-size: 1.25rem;
}

.mask_short_f041 {
    margin-bottom: 1rem;
}

.mask_short_f041 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.thick_dc4b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.liquid-8999 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.hover_e02a {
    text-align: center;
}

.silver_3639 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active_dynamic_12fb {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.motion-90c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_d19e {
    margin: 2rem 0;
}

.tertiary_5df9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tertiary_5df9 .section_middle_20f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav-fluid-6b5b {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.current_ade9 {
    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;
}

.current_ade9:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout-hovered-8b28 {
    font-size: 2rem;
}

.west-ced8 {
    display: flex;
    flex-direction: column;
}

.header_soft_d0c4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.wrapper_2621 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.inner_77a8 {
    padding: var(--section-padding);
}

.header_360c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .header_360c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .header_360c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button-hard-cab8 {
    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);
}

.button-hard-cab8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button-hard-cab8 .silver_3639 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.button-hard-cab8 .active_dynamic_12fb {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.button-hard-cab8 .border-f42b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.popup-pink-7d86 {
    margin-top: 4rem;
}

.search-1f8d {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.cold_b5e1 {
    overflow-x: auto;
}

.cool-74d8 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cool-74d8 thead {
    background: var(--accent-color);
}

.cool-74d8 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.cool-74d8 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-74d8 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.cool-74d8 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.east-06e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right_4d53 {
    max-width: 900px;
    margin: 0 auto;
}

.pattern_steel_5039 {
    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);
}

.pattern_steel_5039:hover {
    border-color: var(--accent-color);
}

.notice-gold-62d7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.notice-gold-62d7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.input-north-3cd7 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.pattern_steel_5039.fn-active-6433 .input-north-3cd7 {
    transform: rotate(45deg);
}

.pattern_ecff {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.pattern_steel_5039.fn-active-6433 .pattern_ecff {
    max-height: 1000px;
}

.pattern_ecff p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.warm-5d62 {
    padding: var(--section-padding);
}

.status-69a9 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.large-5e1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_e2c1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_e2c1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title-last-bd55 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed_4dfd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hard-6cad {
    font-size: 2rem;
}

.cold_d840 {
    color: var(--text-white);
    margin: 0;
}

.border-dirty-8c29 {
    list-style: none;
    padding: 0;
}

.border-dirty-8c29 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border-dirty-8c29 li:last-child {
    border-bottom: none;
}

.green-c39b {
    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);
}

.green-c39b p {
    color: var(--success-color);
    margin: 0;
}

.black_6671 {
    margin-top: 3rem;
}

.avatar_e740 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-narrow-fb50 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .card-narrow-fb50 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.complex-3d04 {
    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);
}

.module-c992 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.complex-3d04 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.center_b8e2 {
    padding: var(--section-padding);
}

.item-first-5874 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-first-5874 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-0aba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tooltip-0aba:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.header_new_230e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.container-02a6 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.form-slow-4fad {
    flex: 1;
}

.focus-copper-8e15 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.highlight_308b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.backdrop-7074 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description-advanced-59ce {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description-advanced-59ce:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hero_c2e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.up_7b31 {
    padding: var(--section-padding);
}

.current_b77f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.gallery_60cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery_60cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down-237e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight_c69d, .clean-0447, .popup-f754 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.popup-f754 {
    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 */
.search-hard-0a8b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_486c {
    margin: 2rem 0;
}

.grid-cool-4dd7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_west_b72f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.middle_908a {
    list-style: none;
    padding: 0;
}

.middle_908a 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;
}

.middle_908a li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.middle_908a li:last-child {
    border-bottom: none;
}

.in-64d4 {
    text-align: center;
    margin-top: 2rem;
}

.action_efcd {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.gold-7b42 {
    padding: var(--section-padding);
}

.middle-3ec6 {
    margin: 2rem 0;
}

.header-3e3a {
    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) {
    .header-3e3a {
        flex-direction: column;
        align-items: flex-start;
    }
}

.header-3e3a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown_purple_7734 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hover-small-b37e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.table-hard-a0c9 {
    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;
}

.fast-245d {
    flex: 1;
}

.header-green-97e0 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.input-tall-6833 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.chip_under_69a4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.orange_b1ba {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .orange_b1ba {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.next-685a {
    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);
}

.next-685a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.next-685a .silver_3639 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.next-685a .active_dynamic_12fb {
    color: var(--text-gray);
    font-size: 1rem;
}

.mini-27e4 {
    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);
}

.label_warm_baf2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.label_warm_baf2 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.active-0348 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .active-0348 {
        grid-template-columns: 1fr 1fr;
    }
}

.background_fast_39c4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-light-553e {
    margin-bottom: 1.5rem;
}

.label-light-553e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.label-light-553e input,
.label-light-553e 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;
}

.label-light-553e input:focus,
.label-light-553e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.active-86fa {
    width: 100%;
    margin-top: 1rem;
}

.notification-south-72dd {
    display: flex;
    align-items: center;
}

.detail-d7da {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.gas-37cf {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.last-b323 {
    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;
}

.container_clean_b9db {
    color: var(--text-gray);
}

.secondary-fdf3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.fluid-d79b {
    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);
}

.fluid-d79b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.border-40b2 {
    margin-top: 3rem;
}

.secondary_c310 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.heading_glass_f918 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_1d44 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.top-849b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-849b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.red-9156 {
    padding: var(--section-padding);
}

.form-iron-9ed5 {
    margin: 2rem 0;
}

.pressed_1f34 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.lite_f10d {
    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;
}

.lite_f10d:hover, .lite_f10d.fn-active-6433 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.static-8e2a {
    display: none;
}

.static-8e2a.fn-active-6433 {
    display: block;
}

.info-8972 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-3e18 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.out-aab0 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.out-aab0 ul {
    list-style: none;
    padding: 0;
}

.out-aab0 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.out-aab0 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tall-26ac {
    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 */
.current-9d0e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-574a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_fd7e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.center_d0d6 {
    color: var(--accent-color);
    margin: 0;
}

.border-copper-51f0 {
    display: flex;
    gap: 1.5rem;
}

.grid_fa3b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.detail_d2ee {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.simple_46f8 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.simple_46f8.card-ab6f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.simple_46f8.middle-e756 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.simple_46f8.focus_6f63 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.blue_5384 {
    margin-top: 2rem;
}

.menu_3261 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.texture_2c77 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .texture_2c77 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.primary_new_c1ec {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.smooth_faca {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dark-7fe9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.button_ba35 {
    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 */
.input_fixed_9f42 {
    padding: var(--section-padding);
}

.widget-115e {
    margin: 2rem 0;
}

.button_c7e3 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.avatar_stale_4f03 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.progress-d7a4 {
    list-style: none;
    padding: 0;
}

.progress-d7a4 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;
}

.progress-d7a4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.progress-d7a4 li:last-child {
    border-bottom: none;
}

.aside-adef {
    margin: 2rem 0;
}

.dropdown_paper_9208 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.heading-0381 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-0381 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-4d7c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_5968 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element-east-1126 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.carousel_519a {
    margin-top: 2rem;
}

.easy_773a {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.south_077b {
    list-style: none;
    padding: 0;
}

.media_8805 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.media_8805 a {
    color: var(--accent-color);
    text-decoration: none;
}

.media_8805 a:hover {
    text-decoration: underline;
}

.search-47de {
    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 */
.dim_4a1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_steel_b874 {
    margin: 2rem 0;
}

.header_cold_a04d {
    margin-bottom: 3rem;
}

.header_cold_a04d .widget_west_b72f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.item_463e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.header-153e {
    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);
}

.header-153e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.badge_04c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .badge_04c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-complex-9e4a {
    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 */
.section-3b9e {
    padding: var(--section-padding);
}

.stone_20ce {
    margin: 2rem 0;
}

.shadow-tiny-6801 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column-757b {
    overflow-x: auto;
    margin: 2rem 0;
}

.solid_8875 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.media_up_3485 {
    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;
}

.disabled-hard-4333 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.cold-a504 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .cold-a504 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action_3fc0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action_3fc0 .section_middle_20f8 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.action_3fc0 .active_wide_da6c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-down-65de {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.hero-iron-3ef7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-9c43 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-9c43 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dark_9df3 {
    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;
}

.dark_9df3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.white_e7cc {
    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);
}

.motion_de0a {
    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;
}

.icon_bright_a194 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider-a151 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.last_45d2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.table_hard_38a5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header_4083 {
    color: var(--text-white);
    font-weight: 600;
}

.mask-small-e334 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip_e4f1 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chip_e4f1 .warm_c3ef {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pressed-e28b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pressed-e28b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_short_3136 {
    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);
}

.input_short_3136:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input_short_3136 .silver_3639 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_short_3136 .active_dynamic_12fb {
    color: var(--text-gray);
    font-size: 1rem;
}

.summary_45b4 {
    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);
}

.orange-4cb1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.orange-4cb1 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.info_motion_91e7 {
    margin: 2rem 0;
}

.backdrop-gas-3699 {
    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);
}

.backdrop-gas-3699:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.texture_new_4d16 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.box-cdb6 {
    flex: 1;
}

.primary-plasma-f132 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_d9d6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.overlay_29e9 {
    margin: 2rem 0;
}

.frame_pressed_2222 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_pressed_2222 .active_wide_da6c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.frame_pressed_2222 .mask_dirty_0777 {
    color: var(--text-gray);
    margin: 0;
}

.white_7efa {
    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);
}

.white_7efa .banner-purple-0c91 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.frame-down-65de {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.sidebar-tall-9b41 {
    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;
}

.focus-dd6b {
    flex: 1;
}

.component_b51f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.plasma-e090 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.large_3bc3 {
    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;
}

.focused_9d21 {
    flex: 1;
}

.image-d64b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.notice-next-efab {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.hidden_full_b340 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.dropdown_51de {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.widget_79f0 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.widget_79f0 .warm_c3ef {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.current-e030 {
    margin-top: 2rem;
}

.current-e030 .avatar_e740 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.row-e156 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed-cf37 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fixed-cf37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-cf37 .hover_e02a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_ea46 {
    margin: 2rem 0;
}

.lite_8e25 {
    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 */
.smooth-add8 {
    padding: var(--section-padding);
}

.motion-c5a7 {
    margin-top: 1rem;
}

.blue_10d1 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.blue_10d1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.blue_10d1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.narrow-1e93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component_middle_3aeb {
    margin: 2rem 0;
}

.photo-fixed-42a2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.plasma_da9d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.huge-decc {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.east_3b76 {
    margin: 2rem 0;
}

.easy_8df4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.easy_8df4 .widget_west_b72f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-basic-db05 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .layout-basic-db05 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer_large_390a {
    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);
}

.link-new-6c9a {
    color: var(--text-white);
    font-weight: 600;
}

.top_a96f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.steel_f5bd {
    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);
}

.steel_f5bd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.form_static_2875 {
    padding: var(--section-padding);
}

.article_0222 {
    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;
}

.article_0222:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.simple-33ac {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-33ac .module-c992 {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple-33ac .bottom-5bb6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.detail-8c80 {
    flex: 1;
}

.complex-f94c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.button-667e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button-667e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.button-667e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pagination_pink_bace {
    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);
}

.pagination_pink_bace p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pagination_pink_bace strong {
    color: var(--warning-color);
}

/* Slots Section */
.stone_368c {
    padding: var(--section-padding);
}

.next-d6dd {
    margin: 2rem 0;
}

/* Table Games Section */
.banner-focused-fce4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_light_9372 {
    margin: 2rem 0;
}

.frame_light_61e3 {
    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);
}

.frame_light_61e3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.frame_light_61e3 .tooltip_hovered_33a5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame_light_61e3 .right-62fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.inner-4a77 {
    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);
}

.inner-4a77 .banner-purple-0c91 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.hero_c31d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_3ded {
    margin: 2rem 0;
}

.secondary-brown-7e11 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-c1bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed-d5d8 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-yellow-8346 {
    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);
}

.button-yellow-8346:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.button-yellow-8346.fn-active-6433 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focused_93e5 {
    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);
}

.full_8c22 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.full_8c22 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.gold-2cc5 {
    padding: var(--section-padding);
}

.narrow_7bb5 {
    margin: 2rem 0;
}

.simple-1b67 {
    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);
}

.simple-1b67:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .simple-1b67 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hot-6434 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.column_fresh_42fe {
    flex: 1;
}

.widget_4a97 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.light_dba6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.under-6e9c {
    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;
}

.selected_aec8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.image_401b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.popup_bronze_9bef {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav_pro_7e5b {
    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;
}

.nav_pro_7e5b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tertiary-4a03 {
    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);
}

.description_large_a4b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description_large_a4b4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.pressed_f31a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_9ee2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .frame_9ee2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame_9ee2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_66cd {
    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;
}

.status_66cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.image-1c5d {
    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;
}

.orange_917d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.rough_3cd4 {
    font-size: 2rem;
}

.rough_f62a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.component-61d6 {
    flex: 1;
}

.tiny_48c2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.sort-7077 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.primary_full_05f4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow-first-8bda {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.narrow_9969 {
    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;
}

.down_f802 {
    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;
}

.down_f802:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.warm_9d56 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_south_f19f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message-7c40 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .message-7c40 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-pressed-906b {
    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);
}

.form-orange-37e9 {
    color: var(--text-white);
    font-weight: 600;
}

.hover-over-1fab {
    color: var(--accent-color);
    font-weight: 600;
}

.green_a04a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.green_a04a strong {
    color: var(--accent-color);
}

/* Security Section */
.wrapper_stale_3cd9 {
    padding: var(--section-padding);
}

/* Benefits Section */
.under_827f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.notice_narrow_eb8f {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.thumbnail-753c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_4924 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.steel_d575 {
    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) {
    .steel_d575 {
        flex-direction: column;
        gap: 1rem;
    }
}

.steel_d575:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.steel_d575 .large_3bc3 {
    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;
}

.steel_d575 .focused_9d21 {
    flex: 1;
}

.steel_d575 .image-d64b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.steel_d575 .notice-next-efab {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.green-6cc0 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-6cc0 .info_light_6d7a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green-6cc0 .heading_dde3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-6cc0 .heading_dde3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.green-6cc0 .heading_dde3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.sort-24fd {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.row_blue_6e8c {
    padding: var(--section-padding);
}

.green_13d9 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .green_13d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fluid-784b {
    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);
}

.fluid-784b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.fluid-784b .button-2171 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-784b .widget-1afc {
    flex: 1;
}

.fluid-784b .wrapper_south_cc74 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fluid-784b .article-c7c8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.upper-4663 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-4663 .gas-c0b3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.upper-4663 .section-f85b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.upper-4663 .section-f85b 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);
}

.upper-4663 .section-f85b li:last-child {
    border-bottom: none;
}

.upper-4663 .section-f85b 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;
}

.upper-4663 .section-f85b li strong {
    color: var(--text-white);
}

.main-ff03 {
    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);
}

.main-ff03 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main-ff03 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.tag-left-d38c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element_26d7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .element_26d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper-full-5029 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-full-5029:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav-30a6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip-simple-6c2f {
    font-size: 2rem;
}

.medium-12dd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.simple_610b {
    flex: 1;
}

.up_88e8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.up_88e8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.up_88e8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.element_complex_ff6a {
    margin-top: 3rem;
}

.button_c7e3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.avatar_stale_4f03 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-d7a4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-d7a4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.progress-d7a4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.progress-d7a4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.badge-lite-1739 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout-pro-0068 {
    margin: 2rem 0;
}

.shadow-advanced-6f32 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shadow-advanced-6f32 .widget_west_b72f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description-5189 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description-5189 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-790d {
    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);
}

.dropdown-790d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.prev-8de1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-iron-f4f2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.left-8fd6 {
    padding: var(--section-padding);
}

.background-in-349a {
    margin: 2rem 0;
}

.tooltip_left_7cac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tooltip_left_7cac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tooltip_left_7cac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-d77a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info-d77a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hidden_cbb6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.carousel_tiny_f1bf {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.logo-ea90 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-ea90.slow-728e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.menu_plasma_c032 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.fast-f981 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tag-1bf9 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_bottom_6074 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dynamic-1b66 {
    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);
}

.dynamic-1b66 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dynamic-1b66 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.wide_469d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.up_50a9 {
    margin: 2rem 0;
}

.banner_16cd {
    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) {
    .banner_16cd {
        flex-direction: column;
        gap: 1rem;
    }
}

.banner_16cd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.banner_16cd::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);
}

.right-5e07 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.notice-motion-ddc6 {
    flex: 1;
}

.pro-9029 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.article_974f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article_974f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-35da {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_wide_bdd6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro-fc8d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pro-fc8d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_83be {
    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);
}

.status_12da {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label-clean-c8bb {
    flex: 1;
}

.bright-267d {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.info_8ab5 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.badge-basic-4db8 {
    margin-top: 2rem;
    text-align: center;
}

.progress-142d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.progress-142d strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.preview_east_a2b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_east_a2b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_859b {
    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);
}

.paragraph_859b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paragraph_859b .primary_4c4d {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph_859b .cold-bc12 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.paragraph_859b .dropdown-d672 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.paragraph_859b .hero_ce15 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.thumbnail-55e3 {
    padding: var(--section-padding);
}

.secondary_black_8a88 .container-selected-f462 {
    flex: 1;
}

/* Promo Calendar Section */
.header_prev_33c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-d7b5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-d7b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_advanced_6081 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-52cd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.element-thick-6b7e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.easy_ccc5 {
    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);
}

.content_39ca {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.liquid_8053 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.fixed-1a0c {
    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);
}

.fixed-1a0c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fixed-1a0c strong {
    color: var(--accent-color);
}

/* Requirements Section */
.container-east-53d0 {
    padding: var(--section-padding);
}

.footer_18ec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_18ec {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-thick-0757 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_bfb9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink_bec8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink_bec8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_ec93 {
    margin-top: 3rem;
}

.notice_ec93 .button_c7e3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.notice_ec93 .avatar_stale_4f03 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice_ec93 .progress-d7a4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.notice_ec93 .progress-d7a4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.notice_ec93 .progress-d7a4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.notice_ec93 .progress-d7a4 li strong {
    color: var(--warning-color);
}

.brown_0c18 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.brown_0c18 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.overlay-ae45 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_focused_88a4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture_focused_88a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-purple-9ed2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-purple-9ed2 .widget_west_b72f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.icon-over-fe3c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aside-8b8f {
    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);
}

.aside-8b8f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.box_09f7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_51a2 {
    flex: 1;
}

.content_54d8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.description-5992 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.overlay_lite_f3d9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.warm-6153 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modal_paper_0add {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .modal_paper_0add {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-84f6 {
    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);
}

.banner-84f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cold_80b1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_white_073d {
    color: var(--text-gray);
    font-size: 1rem;
}

.label_warm_baf2 {
    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);
}

.message-orange-8fdf {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.message-orange-8fdf strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.simple_4622 { 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; }
.black_63d0, .label_hard_e485 { max-width:100%; height:auto; }

.hot-bfd0, .west_2c53, .new_5e7b { white-space:normal; }

.pink-684c,
.selected_223b,
.secondary-22b8,
.preview_east_a2b9,
.overlay_29e9,
.inner_882d {
  flex-wrap:wrap;
}

[class*="grid"],
.modal_paper_0add,
.tooltip_left_7cac,
.modal_focused_71f8 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.shadow-plasma-5110 img,
.selected_223b img,
.upper-dacd img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.green-d9e1, .main-b2e0,
.wrapper_white_bd51, .search_b76b {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.cold_b5e1 { width:100%; overflow-x:auto; }
.cold_b5e1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.tertiary_4da7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .tertiary_4da7 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.narrow-c0b7 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.header_360c,
.green_1780,
.surface-110c,
.current_e3cb,
.orange_b1ba,
.modal_paper_0add,
.tooltip_left_7cac,
.modal_focused_71f8,
.table_center_f658,
.narrow_7bb5,
.tertiary_4da7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .header_360c,
  .green_1780,
  .surface-110c,
  .current_e3cb,
  .orange_b1ba,
  .modal_paper_0add,
  .tooltip_left_7cac,
  .modal_focused_71f8,
  .table_center_f658,
  .narrow_7bb5,
  .tertiary_4da7 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.button-hard-cab8,
.next-685a,
.banner-84f6,
.hero_e317,
.info-d77a,
.shadow-motion-3cf8,
.simple-1b67,
.narrow-c0b7 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.outline-hot-15f1,
.shade_rough_4770,
.message_7ba9 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.outline-hot-15f1 > *,
.shade_rough_4770 > *,
.message_7ba9 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: bce4 */
.phantom-card-i8 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
