/* {$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;
}

.preview-cc5f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.hover-833e {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hover-833e {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hover-833e {
        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 */
.primary_warm_b6b2 {
    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);
}

.middle-c95e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .middle-c95e {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .cool_8bac {
        grid-column: 1;
    }
    
    .table-8520 {
        grid-column: 2;
    }
    
    .south-01ab {
        grid-column: 3;
    }
}

.cool_8bac img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.cool_8bac:hover img {
    transform: scale(1.05);
}

/* Navigation */
.container_current_5b56 {
    display: none;
}

@media (min-width: 1024px) {
    .container_current_5b56 {
        display: block;
    }
}

/* Grouped Navigation */
.next-916f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.under-4c86 {
    position: relative;
}

.hover-d0b1 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.under-4c86 .notification-hard-c95e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.notification-hard-c95e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.orange_b117 {
    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;
}

.orange_b117:hover,
.orange_b117.fn-active-8cec {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.backdrop_fresh_e6b8 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .backdrop_fresh_e6b8 {
        display: flex;
    }
}

/* Mobile Register Button */
.table-8520 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .table-8520 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.gold-0e66 {
    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;
}

.gold-0e66::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 */
.south-01ab {
    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) {
    .south-01ab {
        display: none;
    }
}

.south-01ab span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.south-01ab.fn-active-8cec span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.south-01ab.fn-active-8cec span:nth-child(2) {
    opacity: 0;
}

.south-01ab.fn-active-8cec span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tertiary-tall-3abd {
    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;
}

.tertiary-tall-3abd.fn-active-8cec {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.texture_up_8cd1 {
    overflow: hidden;
}

.dark_4684 {
    list-style: none;
    padding: 0.75rem 0;
}

.column-hot-c9c6 {
    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;
}

.column-hot-c9c6:hover,
.column-hot-c9c6.fn-active-8cec {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.column-hot-c9c6.stale-1283 {
    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;
}

.column-hot-c9c6.stale-1283::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 */
.pagination_06aa {
    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;
}

.component_30f0 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.component_30f0:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.tabs-blue-6b1d {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.tabs-blue-6b1d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.slider_6f1e {
    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;
}

.slider_6f1e:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.black-e000 {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.5rem;
}

.badge-1d3a {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.badge-1d3a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.lite_4116 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.lite_4116:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav_c0ac {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.nav_c0ac: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);
}

.mask_8643 {
    font-size: 1em;
    font-weight: 700;
}

.badge-white-f256 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hidden_13a4 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hidden_13a4::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;
}

.glass-802b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .glass-802b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.secondary-first-af04 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.rough_0854 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.texture-9d33 {
    margin-bottom: 2rem;
}

.up-9e6c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .up-9e6c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture-advanced-5013 {
    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);
}

.footer-1fef {
    font-size: 1.5rem;
}

.component_next_f39c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.bottom-7f16 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.description_upper_bf3d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.description_upper_bf3d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section_west_871a {
    text-align: center;
    margin-bottom: 3rem;
}

.paragraph_complex_89ec {
    margin-bottom: 1rem;
}

.bottom-bc27 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pattern-pro-6768 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pattern-pro-6768 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .pattern-pro-6768.tertiary-d991 {
        direction: rtl;
    }
    
    .pattern-pro-6768.tertiary-d991 > * {
        direction: ltr;
    }
}

.new-7c2d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.new-7c2d:first-child {
    margin-top: 0;
}

.pattern-cold-ceb1 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.heading_cool_0ce8 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.heading_cool_0ce8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.simple-470f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple-470f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_hard_2323 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.search-hard-7f3a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column-next-f730 {
    list-style: none;
}

.column-next-f730 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-next-f730 li:last-child {
    border-bottom: none;
}

/* Games Features */
.right_4ef5 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.header-tiny-062d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.title-8dcd {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-e68e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.component_278f {
    margin: 2rem 0;
}

.block_c559 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.grid-pink-b8e1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.video-solid-9823 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.overlay_fcee {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.top-2f26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-2f26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_2f6d {
    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);
}

.clean_2f6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb-f2a8 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.article_7d61 {
    font-size: 1.5rem;
}

.simple-1d49 {
    color: var(--accent-color);
    margin: 0;
}

.box-lite-cda6 {
    list-style: none;
}

.box-lite-cda6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.box-lite-cda6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.silver-f668 {
    margin: 2rem 0;
}

.overlay-soft-b56b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.summary_large_145d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .summary_large_145d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_cold_c8a1 {
    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);
}

.module_e466 {
    font-size: 1.25rem;
}

.first-1040 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.upper_2c2e,
.lite-6735 {
    text-align: center;
    margin: 2rem 0;
}

.progress_7485,
.progress_75ff {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.progress_simple_d27a {
    margin: 2rem 0;
    text-align: center;
}

.secondary-b29d {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.secondary-b29d::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;
}

.badge-e457 {
    position: relative;
    z-index: 1;
}

.table_prev_058a {
    margin-bottom: 1rem;
}

.disabled-hot-3839 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fixed-310b {
    margin-bottom: 3rem;
}

.frame_60af {
    margin-top: 3rem;
}

.icon-986e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .icon-986e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-986e .picture-advanced-5013 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_hovered_2070 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge-stone-d357 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.picture_iron_74aa {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.silver_4978 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .silver_4978 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver_4978 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.fixed_dfe8 {
    margin-bottom: 1rem;
}

.current_aad4 img {
    margin-bottom: 1rem;
}

.progress_in_fe1b {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_tall_9322 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.notice-e53b {
    list-style: none;
}

.notice-e53b li {
    margin-bottom: 0.5rem;
}

.notice-e53b a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.notice-e53b a:hover {
    color: var(--accent-color);
}

.logo_529c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.yellow-61b3 {
    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);
}

.yellow-61b3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.grid_15ed {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.grid_15ed p {
    margin-bottom: 0.25rem;
}

.article_short_a18c {
    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) {
    .article_short_a18c {
        flex-direction: row;
    }
}

.glass_98e5 {
    text-align: center;
}

@media (min-width: 768px) {
    .glass_98e5 {
        text-align: left;
    }
}

.glass_98e5 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.description-eebb {
    font-size: 0.75rem !important;
}

.layout_white_28fa {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.description-9283 {
    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);
    }
}

.video-warm-b6cf {
    animation: fadeInUp 0.6s ease-out;
}

.shadow-complex-d3aa {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.box_bronze_b5cb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_bronze_b5cb {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pagination_c493 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_c493 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.over-a9d4 {
    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);
}

.over-a9d4 .title-8dcd {
    font-size: 1.25rem;
}

.over-a9d4 .component-dd56 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.block_1bc8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block_1bc8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.yellow-4552 {
    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);
}

.yellow-4552:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-a0c5 {
    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);
}

.hot_2c65 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.selected-be4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_0ee1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_fixed_ae40 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_fixed_ae40 .logo-e68e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_fixed_ae40 .hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_simple_9bab {
    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);
}

.orange_6e3b {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.orange_6e3b img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.orange_6e3b img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.notification_simple_525f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.label_tiny_a756 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.under-a2b9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.under-a2b9 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.under-a2b9 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);
}

.under-a2b9 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.under-a2b9 input::placeholder {
    color: var(--text-muted);
}

.texture-south-4783 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hard_49b4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.hard_49b4 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.element-5195 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.element-5195:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.summary_large_145d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_large_145d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_cold_c8a1 {
    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);
}

.sort_cold_c8a1 .module_e466 {
    font-size: 1.25rem;
}

.sort_cold_c8a1 .first-1040 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.out-73c1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-easy-d79c {
    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);
}

.tooltip-easy-d79c .title-8dcd {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-easy-d79c .logo-e68e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-easy-d79c .hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.last_1937 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_202b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary_202b .photo_focused_fd6b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_202b .badge_50df {
    color: var(--text-gray);
    line-height: 1.6;
}

.video-d591 {
    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);
}

.search-north-af66 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .search-north-af66 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full-3b21 {
    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);
}

.full-3b21:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_cbfb {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.disabled_brown_832c {
    flex: 1;
}

.footer-b7bc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info_medium_0c9a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown-simple-22c3 {
    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);
}

.dropdown-simple-22c3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.disabled_d51d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_d51d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_404e {
    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);
}

.message_404e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-9358 {
    font-size: 2rem;
    flex-shrink: 0;
}

.up_2355 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.picture-e73c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.section_thick_d3b0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip_new_8280 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft_9a9f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.inner_c799 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.inner_c799 .gas_566e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inner_c799 .summary_fe1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_46e6 {
    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);
}

.heading-motion-21e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_4b1e {
    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);
}

.cool_4b1e .title-8dcd {
    font-size: 2rem;
    flex-shrink: 0;
}

.cool_4b1e .logo-e68e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_4b1e .hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-7ca9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-7ca9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_current_06cc {
    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);
}

.icon_current_06cc:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.dynamic-49f8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic-49f8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-91f0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tiny-91f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dropdown_copper_964f {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick_62fe {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.grid-pink-b8e1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.backdrop-basic-81d9 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.detail_liquid_f037 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.copper_70a9 {
    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);
}

.copper_70a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west-ed65 {
    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);
}

.steel_4806 {
    flex: 1;
}

.iron-81d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.message-current-ebc1 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-stale-6dc9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-ebe7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_1017 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_1017 .photo_focused_fd6b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary_1017 .badge_50df {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-6735 {
    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);
}

.title_outer_92c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_outer_92c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.main-down-24a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-down-24a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-north-de8d {
    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);
}

.button-north-de8d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pink_9c48 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_fresh_4e7b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.light_76fa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dynamic_641e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dirty_a00b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.steel-58a1 {
    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);
}

.large_a9e0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-pressed-a169 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed-5de8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-motion-21e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool_4b1e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cool_4b1e .logo-e68e {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cool_4b1e .hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-c3e7 {
    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);
}

.liquid-8942 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .liquid-8942 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .liquid-8942 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-a8a3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hot-a8a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static_4a31 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas_7c4f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gallery_4ce2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hot_dcf5 {
    padding: 1.5rem;
}

.easy-47e3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.center_0d37 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center_0d37 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;
}

.center_0d37 li:last-child {
    border-bottom: none;
}

.center_0d37 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.button-in-f28e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-in-f28e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-a13b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary-a13b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_cold_d98f {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery_slow_c5c2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.avatar-slow-a126 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tag_yellow_6409 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon-narrow-819c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north_a333 {
    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);
}

.right-e71d {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-91b3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.active_9256 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_complex_24b5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.logo_pink_8d0c {
    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);
}

.column-silver-1d02 {
    text-align: center;
}

.motion_6a46 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent_wide_adb3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature_small_2d50 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-827c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-827c .logo-e68e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-827c .hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-103e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accent-103e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accent-103e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-brown-67ef {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.title-brown-67ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip_d0c1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_wood_5381 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.logo-e68e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.dirty_bceb {
    padding: 1.5rem;
}

.hidden-hard-71ff {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-f434 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-f434 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;
}

.form-f434 li:last-child {
    border-bottom: none;
}

.form-f434 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.border_medium_d2b4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.small_c575 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.small_c575:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.in_b43f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bright-d140 {
    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);
}

.photo-a0c5 {
    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;
}

.hot_2c65 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.selected-be4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_hot_6042 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-first-6644 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_f251 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs-last-b8e8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-1183 {
    display: flex;
    gap: 1rem;
}

.article-1183 .active-steel-8f58 {
    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;
}

.search_f48a {
    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);
}

.row-upper-dd86 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pink-8e7b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pink-8e7b 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;
}

.pink-8e7b li:last-child {
    border-bottom: none;
}

.pink-8e7b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.carousel-green-a98b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel-green-a98b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-green-a98b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider_9a45 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.slider_9a45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-current-5235 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.solid_089e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gas_566e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shade_thick_bbb3 {
    font-size: 1rem;
}

.pink_72fc {
    padding: 1.5rem;
}

.summary_fe1e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.media-fluid-53ad {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.media-fluid-53ad .column-silver-1d02 {
    text-align: center;
}

.media-fluid-53ad .accent_wide_adb3 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.media-fluid-53ad .gas-9700 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.upper-5d98 {
    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);
}

.upper-5d98:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.green_e05a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_e05a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-6d37 {
    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);
}

.pagination-6d37:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer-406f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_68ef {
    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);
}

.dim_7ee5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.left-3b4e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-7c82 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-tiny-d2ef {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.small-1425 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.smooth-ecad {
    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);
}

.link_aed3 {
    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;
}

.link_aed3.hidden_active_ca1d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.link_aed3.wood-5d37 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.link_aed3.dirty_9f32 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.link_aed3.outline_out_ea7e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.link_aed3.badge_west_be0f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.video-544c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link_61e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_lower_cd73 {
    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);
}

.accordion_6c6e {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.last_1937 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.last_1937 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;
}

.last_1937 li:last-child {
    border-bottom: none;
}

.last_1937 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.lite-a0b0 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lite-a0b0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lite-a0b0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-e5e9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.action-e5e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action-e5e9.hover-d36e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .action-e5e9.hover-d36e {
        grid-column: span 3;
    }
}

.bottom_134c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.action-e5e9.hover-d36e .bottom_134c {
    background: rgba(6, 182, 212, 0.1);
}

.layout-black-2ef8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.progress_b3d4 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.action-e5e9.hover-d36e .progress_b3d4 {
    color: var(--info-color);
}

.nav-outer-05f5 {
    padding: 1.5rem;
    text-align: center;
}

.focused-4b8f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.action-e5e9.hover-d36e .focused-4b8f {
    color: var(--info-color);
}

.element-e25d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.overlay-3b59 {
    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 */
.small_f01a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .small_f01a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-892a {
    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);
}

.pro-892a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-a47a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-easy-d79c {
    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);
}

.module_e466 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_narrow_af5d {
    flex: 1;
}

.overlay-soft-b56b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel-9f64 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_8764 {
    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);
}

.background-orange-92c4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description-tall-97c2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.description-9283 {
    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);
}

.list_active_396d {
  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);
}

.list_active_396d .column-silver-1d02 {
    text-align: center;
}

.list_active_396d .motion_6a46 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.list_active_396d .accent_wide_adb3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.brown_7dc1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-upper-0c83 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.highlight-pink-427c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading-brown-0aa6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort-gas-d26c {
    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);
}

.focused-03a3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.next_bbf1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_light_46c0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sort_light_46c0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_light_46c0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-upper-4231 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shade-upper-4231:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev-37d6 {
    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);
}

.slow_c761 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pagination-29cc {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.prev_c175 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prev_c175.tag_d1cb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.prev_c175.title_1339 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.prev_c175.small-682d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.button_wide_0731 {
    padding: 1.5rem;
    text-align: center;
}

.chip-east-532c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.under-b054 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.under-b054 .notification-cool-6cdb {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.active_red_0223 {
    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);
}

.active_red_0223:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hot_f08f {
  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);
}

.summary-hard-28f5 {
    text-align: center;
}

.summary-hard-28f5 .motion_6a46 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.summary-hard-28f5 .accent_wide_adb3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.heading_7923 { text-align: center; }
.element_6a0f { text-align: left; }
.cold_9186 { text-align: right; }

.description-simple-9e93 { margin-bottom: 0; }
.right-66d7 { margin-bottom: 0.5rem; }
.form-e1f5 { margin-bottom: 1rem; }
.shadow-b66c { margin-bottom: 1.5rem; }
.silver_e3d2 { margin-bottom: 2rem; }

.aside_steel_dac9 { margin-top: 0; }
.menu-59b1 { margin-top: 0.5rem; }
.motion-0f82 { margin-top: 1rem; }
.down-a6fa { margin-top: 1.5rem; }
.hover_9cec { margin-top: 2rem; }

.fn-hidden-8cec { display: none; }
.fn-visible-8cec { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .hidden_13a4 {
        padding: 6rem 0 3rem;
    }
    
    .glass-802b {
        text-align: center;
    }
    
    .pattern-pro-6768 {
        text-align: center;
    }
    
    .up-9e6c {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .primary_warm_b6b2,
    .tertiary-tall-3abd,
    .secondary-b29d,
    .picture_iron_74aa {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hidden_13a4 {
        background: none;
    }
}

/* Providers Section */
.rough_24ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel-3efc {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel-3efc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel-3efc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-basic-e2fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.disabled-basic-e2fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.video-4f2e {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.secondary_d45a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.north-c037 {
    list-style: none;
    padding: 0;
}

.north-c037 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.north-c037 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.section-d7fe {
    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);
}

.section-d7fe p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.brown-0081 {
    padding: var(--section-padding);
}

.input_e6ec {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_e6ec {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current_c9fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.current_c9fe:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-3231 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.surface-b5a8 {
    display: flex;
    flex-direction: column;
}

.thumbnail_in_d520 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hero_c26a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.row_895d {
    color: var(--accent-color);
}

.main-0a5d {
    font-size: 1.25rem;
}

.breadcrumb_7671 {
    margin-bottom: 1rem;
}

.breadcrumb_7671 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.row_liquid_69ac {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sort-white-b4ed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.column-silver-1d02 {
    text-align: center;
}

.motion_6a46 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accent_wide_adb3 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.outer_99c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary-649b {
    margin: 2rem 0;
}

.accent-9179 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.accent-9179 .title-8dcd {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_6493 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.accent-cfaf {
    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;
}

.accent-cfaf:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media_94d8 {
    font-size: 2rem;
}

.image-tiny-82f3 {
    display: flex;
    flex-direction: column;
}

.glass-67e8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tiny-b4ad {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.chip_inner_1491 {
    padding: var(--section-padding);
}

.chip-hot-2ee0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip-hot-2ee0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip-hot-2ee0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advanced-518c {
    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);
}

.advanced-518c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.advanced-518c .motion_6a46 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.advanced-518c .accent_wide_adb3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.advanced-518c .table_silver_1c69 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.gold-4f73 {
    margin-top: 4rem;
}

.in_189c {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.media_dim_97b0 {
    overflow-x: auto;
}

.popup_mini_dcd3 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.popup_mini_dcd3 thead {
    background: var(--accent-color);
}

.popup_mini_dcd3 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.popup_mini_dcd3 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_mini_dcd3 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.popup_mini_dcd3 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.feature_0f59 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-44e2 {
    max-width: 900px;
    margin: 0 auto;
}

.title_6988 {
    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);
}

.title_6988:hover {
    border-color: var(--accent-color);
}

.small-9bd6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.small-9bd6 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.solid_7914 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.title_6988.fn-active-8cec .solid_7914 {
    transform: rotate(45deg);
}

.outline_e75b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.title_6988.fn-active-8cec .outline_e75b {
    max-height: 1000px;
}

.outline_e75b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.tabs-5af2 {
    padding: var(--section-padding);
}

.orange_6e3b {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.component_7c2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-copper-b4e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-copper-b4e9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.active-6ab0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_a09a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-brown-2f41 {
    font-size: 2rem;
}

.tooltip-old-9eff {
    color: var(--text-white);
    margin: 0;
}

.description-iron-f0d0 {
    list-style: none;
    padding: 0;
}

.description-iron-f0d0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description-iron-f0d0 li:last-child {
    border-bottom: none;
}

.row-ca5d {
    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);
}

.row-ca5d p {
    color: var(--success-color);
    margin: 0;
}

.media-7c96 {
    margin-top: 3rem;
}

.row-upper-dd86 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.texture-inner-996a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .texture-inner-996a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip-a0d6 {
    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);
}

.out-c610 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chip-a0d6 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.disabled_black_40e0 {
    padding: var(--section-padding);
}

.narrow-2e92 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-2e92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_hard_f689 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture_hard_f689:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.module-5e1d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card_clean_34fa {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.secondary_b378 {
    flex: 1;
}

.row_a0a8 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.complex_cdf3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.tiny_5cd6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_cd61 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column_cd61:last-child {
    border-bottom: none;
}

/* Comparison Section */
.gold_ce13 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.layout_7019 {
    padding: var(--section-padding);
}

.title_soft_b34f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.cold-6bab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cold-6bab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-lite-cae9 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_under_476f, .block_565b, .texture_silver_a541 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.texture_silver_a541 {
    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 */
.description_684e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-glass-aa44 {
    margin: 2rem 0;
}

.pressed_088f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_79bd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.down_a433 {
    list-style: none;
    padding: 0;
}

.down_a433 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;
}

.down_a433 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.down_a433 li:last-child {
    border-bottom: none;
}

.inner-812b {
    text-align: center;
    margin-top: 2rem;
}

.full_44b2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.shadow-e6af {
    padding: var(--section-padding);
}

.background_9428 {
    margin: 2rem 0;
}

.footer_red_c3ce {
    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) {
    .footer_red_c3ce {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer_red_c3ce:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.widget_cold_0d1c {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.sidebar-full-4899 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.motion-192c {
    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;
}

.new_ae55 {
    flex: 1;
}

.wrapper_b8dc {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.sidebar-hard-2be2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hidden_under_de0c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.over_adb8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .over_adb8 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.column_hot_5973 {
    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);
}

.column_hot_5973:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.column_hot_5973 .motion_6a46 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column_hot_5973 .accent_wide_adb3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.video-plasma-da55 {
    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);
}

.overlay_595b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.overlay_595b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.prev_235c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .prev_235c {
        grid-template-columns: 1fr 1fr;
    }
}

.shadow-orange-15ac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-b421 {
    margin-bottom: 1.5rem;
}

.pink-b421 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pink-b421 input,
.pink-b421 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;
}

.pink-b421 input:focus,
.pink-b421 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.section-cool-3372 {
    width: 100%;
    margin-top: 1rem;
}

.slow-92d8 {
    display: flex;
    align-items: center;
}

.paragraph_hard_ccad {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.first-26a5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.container-outer-83ab {
    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;
}

.photo-4c85 {
    color: var(--text-gray);
}

.active_short_f5a3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.iron-7fe0 {
    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);
}

.iron-7fe0 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.glass-3efe {
    margin-top: 3rem;
}

.widget-92f2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.current-47b4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected_9a5e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.image-out-bd09 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-out-bd09:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.active_north_d611 {
    padding: var(--section-padding);
}

.photo-active-fc11 {
    margin: 2rem 0;
}

.grid-68bb {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.heading-c27f {
    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;
}

.heading-c27f:hover, .heading-c27f.fn-active-8cec {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.bottom-4555 {
    display: none;
}

.bottom-4555.fn-active-8cec {
    display: block;
}

.iron_ecfb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.banner-6aec {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-pressed-f569 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.hero-pressed-f569 ul {
    list-style: none;
    padding: 0;
}

.hero-pressed-f569 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hero-pressed-f569 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.disabled-top-fa86 {
    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 */
.pink-4e5d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_8e01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_white_7d30 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.heading-be69 {
    color: var(--accent-color);
    margin: 0;
}

.dropdown-left-9358 {
    display: flex;
    gap: 1.5rem;
}

.modal-current-4eb5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bronze_84f4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.list_huge_60ff {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.list_huge_60ff.shadow-wide-64be {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.list_huge_60ff.component-2802 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.list_huge_60ff.clean-49f3 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.carousel_wide_ece1 {
    margin-top: 2rem;
}

.hidden_pressed_0927 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.east-d93c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .east-d93c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_large_c8b2 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.banner-up-6ea3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dark_abb0 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.prev-7ccf {
    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 */
.full-53ed {
    padding: var(--section-padding);
}

.red-302d {
    margin: 2rem 0;
}

.popup_14de {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.component_dark_94bb {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.pattern_orange_4579 {
    list-style: none;
    padding: 0;
}

.pattern_orange_4579 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;
}

.pattern_orange_4579 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.pattern_orange_4579 li:last-child {
    border-bottom: none;
}

.backdrop-f5c2 {
    margin: 2rem 0;
}

.pressed_befd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.content-646b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .content-646b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay_basic_92dc {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-pro-f64a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.green-1f8a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.modal_medium_a59e {
    margin-top: 2rem;
}

.footer-b7bc {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.lite_0d27 {
    list-style: none;
    padding: 0;
}

.slider-paper-0604 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.slider-paper-0604 a {
    color: var(--accent-color);
    text-decoration: none;
}

.slider-paper-0604 a:hover {
    text-decoration: underline;
}

.light_7672 {
    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 */
.title_stone_6369 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-feb8 {
    margin: 2rem 0;
}

.message_c9a0 {
    margin-bottom: 3rem;
}

.message_c9a0 .hidden_79bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.wrapper-purple-b204 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bottom_9d0e {
    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);
}

.bottom_9d0e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.pattern_inner_899a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pattern_inner_899a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_2b3e {
    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 */
.main_basic_1fb8 {
    padding: var(--section-padding);
}

.under_3cb8 {
    margin: 2rem 0;
}

.iron-4c40 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.backdrop_red_577c {
    overflow-x: auto;
    margin: 2rem 0;
}

.banner_black_ec99 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.border-black-f1f6 {
    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;
}

.stale-4d9a {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.list_ee83 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .list_ee83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean_eaf9 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.clean_eaf9 .title-8dcd {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.clean_eaf9 .logo-e68e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blue-bae1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.outer-8aaa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-1c32 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-1c32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-f671 {
    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;
}

.video-f671:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.table_aea5 {
    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);
}

.tall_7056 {
    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;
}

.menu_north_86b3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.alert-39fc {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.border-yellow-e745 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.nav_35c3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-iron-43ff {
    color: var(--text-white);
    font-weight: 600;
}

.border-easy-3058 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.box_533d {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.box_533d .active-steel-8f58 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tabs_33f3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs_33f3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid_511d {
    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);
}

.solid_511d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.solid_511d .motion_6a46 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.solid_511d .accent_wide_adb3 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hard-bca6 {
    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);
}

.hot_203e {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hot_203e strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.dirty_a00b {
    margin: 2rem 0;
}

.steel-58a1 {
    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);
}

.steel-58a1:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.large_a9e0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.logo-focused-86a2 {
    flex: 1;
}

.gradient-pressed-a169 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed-5de8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.heading-motion-21e1 {
    margin: 2rem 0;
}

.cool_4b1e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool_4b1e .logo-e68e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.cool_4b1e .hidden-hard-71ff {
    color: var(--text-gray);
    margin: 0;
}

.modal-c3e7 {
    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);
}

.modal-c3e7 .progress_7485 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.blue-bae1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.west-ed65 {
    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;
}

.steel_4806 {
    flex: 1;
}

.message-current-ebc1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.modal-stale-6dc9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.photo-a0c5 {
    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;
}

.footer_lite_6b41 {
    flex: 1;
}

.hot_2c65 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.selected-be4f {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.highlight_f251 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tabs-last-b8e8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.article-1183 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.article-1183 .active-steel-8f58 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.search_f48a {
    margin-top: 2rem;
}

.search_f48a .row-upper-dd86 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.short_1fa0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_pink_8d0c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .logo_pink_8d0c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo_pink_8d0c .column-silver-1d02 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_small_2d50 {
    margin: 2rem 0;
}

.footer-827c {
    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 */
.list_large_2f16 {
    padding: var(--section-padding);
}

.dirty_bceb {
    margin-top: 1rem;
}

.form-f434 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.form-f434 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.form-f434 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.basic-0510 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-south-576b {
    margin: 2rem 0;
}

.feature_a7d5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.active-3dd5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hot_6344 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.thumbnail-small-f769 {
    margin: 2rem 0;
}

.summary-2f12 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.summary-2f12 .hidden_79bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_620b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .disabled_620b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget-static-1f55 {
    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);
}

.north-1512 {
    color: var(--text-white);
    font-weight: 600;
}

.hidden-0203 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.sort-light-8c96 {
    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);
}

.sort-light-8c96 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.card-f18e {
    padding: var(--section-padding);
}

.dynamic_e90e {
    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;
}

.dynamic_e90e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.label_b13b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_b13b .out-c610 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_b13b .aside-next-1c3f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.iron_ccb2 {
    flex: 1;
}

.overlay-c0a4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade-fluid-fc41 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade-fluid-fc41 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.shade-fluid-fc41 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.element-7026 {
    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);
}

.element-7026 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element-7026 strong {
    color: var(--warning-color);
}

/* Slots Section */
.chip-a592 {
    padding: var(--section-padding);
}

.tooltip_new_8280 {
    margin: 2rem 0;
}

/* Table Games Section */
.border_copper_120a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft_9a9f {
    margin: 2rem 0;
}

.inner_c799 {
    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);
}

.inner_c799:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.inner_c799 .gas_566e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.inner_c799 .summary_fe1e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.secondary_46e6 {
    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);
}

.secondary_46e6 .progress_7485 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.link_static_117c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper-421e {
    margin: 2rem 0;
}

.pagination-3405 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_2bad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-5cf0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tall-3766 {
    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);
}

.tall-3766:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tall-3766.fn-active-8cec {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-liquid-f935 {
    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);
}

.focus_steel_5dd2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus_steel_5dd2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.preview_86d9 {
    padding: var(--section-padding);
}

.block_866a {
    margin: 2rem 0;
}

.element_3aa5 {
    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);
}

.element_3aa5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .element_3aa5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.border_up_94fa {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.info-05e3 {
    flex: 1;
}

.steel_2aac {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.active_clean_1b05 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown-old-4939 {
    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;
}

.main-7043 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.button_02a2 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bright-503d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hot_ece4 {
    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;
}

.hot_ece4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.logo-2e39 {
    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);
}

.secondary_pro_a412 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary_pro_a412 strong {
    color: var(--accent-color);
}

/* New Games Section */
.modal-8201 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside-205a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .aside-205a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside-205a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow-last-1d58 {
    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;
}

.shadow-last-1d58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fast_9706 {
    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;
}

.bronze-7691 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.active_white_377e {
    font-size: 2rem;
}

.wrapper_copper_1753 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.photo-aa9f {
    flex: 1;
}

.dropdown_cool_5b95 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.gallery_f596 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.narrow-f5f0 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.search_d92a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.picture_east_0954 {
    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;
}

.dim_047b {
    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;
}

.dim_047b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.button_dba7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_c691 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-6e63 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .heading-6e63 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_7e6e {
    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);
}

.solid-0c4a {
    color: var(--text-white);
    font-weight: 600;
}

.label-419a {
    color: var(--accent-color);
    font-weight: 600;
}

.fresh_c45c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.fresh_c45c strong {
    color: var(--accent-color);
}

/* Security Section */
.motion_dc38 {
    padding: var(--section-padding);
}

/* Benefits Section */
.message_stone_ebe3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.breadcrumb_right_4102 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.hidden-6a7c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-pressed-ea65 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.link-b504 {
    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) {
    .link-b504 {
        flex-direction: column;
        gap: 1rem;
    }
}

.link-b504:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link-b504 .photo-a0c5 {
    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;
}

.link-b504 .footer_lite_6b41 {
    flex: 1;
}

.link-b504 .hot_2c65 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.link-b504 .selected-be4f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.gradient-gold-0c59 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-gold-0c59 .overlay-soft-b56b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-gold-0c59 .out-73c1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient-gold-0c59 .out-73c1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gradient-gold-0c59 .out-73c1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.link_current_c6f1 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dim-2344 {
    padding: var(--section-padding);
}

.pink-0c06 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pink-0c06 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-cfc9 {
    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);
}

.hard-cfc9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.hard-cfc9 .article-83bd {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-cfc9 .basic-00bc {
    flex: 1;
}

.hard-cfc9 .photo_focused_fd6b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-cfc9 .aside_stone_1e6e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.outline_bottom_9ba4 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline_bottom_9ba4 .narrow-c51b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_bottom_9ba4 .fixed_1955 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.outline_bottom_9ba4 .fixed_1955 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);
}

.outline_bottom_9ba4 .fixed_1955 li:last-child {
    border-bottom: none;
}

.outline_bottom_9ba4 .fixed_1955 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;
}

.outline_bottom_9ba4 .fixed_1955 li strong {
    color: var(--text-white);
}

.tiny_aaff {
    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);
}

.tiny_aaff p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tiny_aaff strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.accent_dim_1491 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs-cb95 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tabs-cb95 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inner-7c0f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.inner-7c0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.clean-76ce {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-bronze-6c83 {
    font-size: 2rem;
}

.layout-e4e6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.upper_6854 {
    flex: 1;
}

.huge_e109 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.huge_e109 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.huge_e109 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.border-d7ac {
    margin-top: 3rem;
}

.popup_14de {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.component_dark_94bb {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pattern_orange_4579 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pattern_orange_4579 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pattern_orange_4579 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pattern_orange_4579 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.icon-c06e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_3549 {
    margin: 2rem 0;
}

.accent-866c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accent-866c .hidden_79bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_hard_dd7a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hidden_hard_dd7a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.yellow_a0b5 {
    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);
}

.yellow_a0b5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.menu-stone-b070 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sidebar_5841 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.title-969b {
    padding: var(--section-padding);
}

.banner_f6f8 {
    margin: 2rem 0;
}

.popup-208f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .popup-208f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-208f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-bd69 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-bd69:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.rough-453c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.widget_hard_2abb {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.shadow_prev_2a18 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.shadow_prev_2a18.list_6b4b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.pressed_0973 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.caption-north-3bfb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.west_cfa4 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.primary_b545 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item_c98d {
    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);
}

.item_c98d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item_c98d strong {
    color: var(--accent-color);
}

/* Update Log Section */
.copper-8813 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze_cd12 {
    margin: 2rem 0;
}

.rough-d656 {
    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) {
    .rough-d656 {
        flex-direction: column;
        gap: 1rem;
    }
}

.rough-d656:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.rough-d656::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);
}

.frame_57f3 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.disabled_last_714d {
    flex: 1;
}

.static-7e83 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form_cold_7dae {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form_cold_7dae li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.down-31e0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_f32a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.box_7440 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .box_7440 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.glass_6a2e {
    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);
}

.message-fast-bd66 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.in-a7c4 {
    flex: 1;
}

.smooth-b051 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.box_dbca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.warm-1216 {
    margin-top: 2rem;
    text-align: center;
}

.panel-glass-b9d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel-glass-b9d7 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.green_e05a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_e05a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-6d37 {
    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);
}

.pagination-6d37:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination-6d37 .input_cold_d98f {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination-6d37 .gallery_slow_c5c2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.pagination-6d37 .avatar-slow-a126 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.pagination-6d37 .tag_yellow_6409 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.thumbnail-c7fa {
    padding: var(--section-padding);
}

.hover_68ef .black-e099 {
    flex: 1;
}

/* Promo Calendar Section */
.row_liquid_4b8b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_d736 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_d736 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-27dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-old-4509 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.list_ad8c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider_ff5f {
    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);
}

.border_ab81 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary-c492 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.pink-95ca {
    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);
}

.pink-95ca p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pink-95ca strong {
    color: var(--accent-color);
}

/* Requirements Section */
.fresh-2044 {
    padding: var(--section-padding);
}

.notification-hard-994c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .notification-hard-994c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component_9697 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_e974 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component_f64b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component_f64b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.image_5783 {
    margin-top: 3rem;
}

.image_5783 .popup_14de {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.image_5783 .component_dark_94bb {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image_5783 .pattern_orange_4579 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.image_5783 .pattern_orange_4579 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.image_5783 .pattern_orange_4579 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.image_5783 .pattern_orange_4579 li strong {
    color: var(--warning-color);
}

.motion_df72 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion_df72 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.frame_dynamic_27b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-dynamic-de3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-dynamic-de3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.heading_middle_0407 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_middle_0407 .hidden_79bd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.bright-0041 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media_tall_b9fe {
    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);
}

.media_tall_b9fe:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.backdrop_998c {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-6c26 {
    flex: 1;
}

.hero_c771 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.dropdown_wide_2919 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shade_blue_23bf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.border-glass-9968 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.plasma-8c1c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .plasma-8c1c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_purple_1a1a {
    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);
}

.media_purple_1a1a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module_medium_0016 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.input_fb5b {
    color: var(--text-gray);
    font-size: 1rem;
}

.overlay_595b {
    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);
}

.hidden-selected-caad {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hidden-selected-caad strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.hover-833e { 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; }
.description_upper_bf3d, .heading_cool_0ce8 { max-width:100%; height:auto; }

.pagination_06aa, .slider_6f1e, .black-e000 { white-space:normal; }

.glass-802b,
.pattern-pro-6768,
.small_f01a,
.green_e05a,
.heading-motion-21e1,
.sort_light_46c0 {
  flex-wrap:wrap;
}

[class*="grid"],
.plasma-8c1c,
.popup-208f,
.icon-986e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.hidden_13a4 img,
.pattern-pro-6768 img,
.bottom-7f16 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.secondary-first-af04, .rough_0854,
.paragraph_complex_89ec, .bottom-bc27 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.media_dim_97b0 { width:100%; overflow-x:auto; }
.media_dim_97b0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.carousel-3efc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .carousel-3efc {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.disabled-basic-e2fa {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.chip-hot-2ee0,
.gallery-basic-7ffe,
.banner_purple_2035,
.active-95e7,
.over_adb8,
.plasma-8c1c,
.popup-208f,
.icon-986e,
.hot_f08f,
.block_866a,
.carousel-3efc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .chip-hot-2ee0,
  .gallery-basic-7ffe,
  .banner_purple_2035,
  .active-95e7,
  .over_adb8,
  .plasma-8c1c,
  .popup-208f,
  .icon-986e,
  .hot_f08f,
  .block_866a,
  .carousel-3efc {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.advanced-518c,
.column_hot_5973,
.media_purple_1a1a,
.picture-advanced-5013,
.breadcrumb-bd69,
.summary-hard-28f5,
.element_3aa5,
.disabled-basic-e2fa {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.footer_6fa5,
.component-860a,
.article-25e4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer_6fa5 > *,
.component-860a > *,
.article-25e4 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 2913 */
.phantom-card-a4 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
