/* {$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;
}

.tertiary_e3dc {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.component-large-6d0d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .component-large-6d0d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .component-large-6d0d {
        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 */
.widget-orange-3ac3 {
    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);
}

.background-hard-fb21 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .background-hard-fb21 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .easy-0002 {
        grid-column: 1;
    }
    
    .last-8647 {
        grid-column: 2;
    }
    
    .caption-mini-428a {
        grid-column: 3;
    }
}

.easy-0002 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.easy-0002:hover img {
    transform: scale(1.05);
}

/* Navigation */
.border_f552 {
    display: none;
}

@media (min-width: 1024px) {
    .border_f552 {
        display: block;
    }
}

/* Grouped Navigation */
.section_action_4722 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.section-4215 {
    position: relative;
}

.panel_8337 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.section-4215 .focus-advanced-3e1f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.focus-advanced-3e1f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-a934 {
    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;
}

.footer-a934:hover,
.footer-a934.fn-active-54e2 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.tabs-986f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tabs-986f {
        display: flex;
    }
}

/* Mobile Register Button */
.last-8647 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .last-8647 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.light_5592 {
    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;
}

.light_5592::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 */
.caption-mini-428a {
    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) {
    .caption-mini-428a {
        display: none;
    }
}

.caption-mini-428a span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.caption-mini-428a.fn-active-54e2 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.caption-mini-428a.fn-active-54e2 span:nth-child(2) {
    opacity: 0;
}

.caption-mini-428a.fn-active-54e2 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero-4ba2 {
    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;
}

.hero-4ba2.fn-active-54e2 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.steel-480b {
    overflow: hidden;
}

.hover_9d00 {
    list-style: none;
    padding: 0.75rem 0;
}

.secondary_left_6187 {
    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;
}

.secondary_left_6187:hover,
.secondary_left_6187.fn-active-54e2 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.secondary_left_6187.silver-bca3 {
    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;
}

.secondary_left_6187.silver-bca3::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 */
.popup_b6b1 {
    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;
}

.bronze_f077 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.bronze_f077:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.image_north_eb61 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.image_north_eb61:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.upper-54a0 {
    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;
}

.upper-54a0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.component_8a80 {
    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;
}

.overlay-medium-ebaf {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.overlay-medium-ebaf:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accordion_8852 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accordion_8852:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.feature_green_f022 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.feature_green_f022: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);
}

.dropdown_34fd {
    font-size: 1em;
    font-weight: 700;
}

.accordion_next_d554 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.cold_54e0 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.cold_54e0::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;
}

.hidden_hovered_d122 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hidden_hovered_d122 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.feature_copper_b825 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.bottom-61b3 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.liquid_9d11 {
    margin-bottom: 2rem;
}

.solid_039a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .solid_039a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_large_cecd {
    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);
}

.black-e2c9 {
    font-size: 1.5rem;
}

.overlay-lite-c0fd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.image-9709 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.soft-8c3b {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.soft-8c3b:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.dark_f254 {
    text-align: center;
    margin-bottom: 3rem;
}

.blue-882a {
    margin-bottom: 1rem;
}

.carousel-ed28 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-f647 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gallery-f647 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .gallery-f647.input-dirty-ad95 {
        direction: rtl;
    }
    
    .gallery-f647.input-dirty-ad95 > * {
        direction: ltr;
    }
}

.border-5109 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.border-5109:first-child {
    margin-top: 0;
}

.iron_0ce8 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hover-under-1f5b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hover-under-1f5b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.media-110b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-110b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_fixed_4418 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.widget-f223 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-df33 {
    list-style: none;
}

.feature-df33 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-df33 li:last-child {
    border-bottom: none;
}

/* Games Features */
.block_basic_a597 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.description_small_6576 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warm-31f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-new-0b73 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.dynamic_7cb9 {
    margin: 2rem 0;
}

.tooltip-62c7 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.link-98a2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.bright_4848 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.container-f2bb {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.box_basic_35f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_basic_35f3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_iron_e78a {
    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);
}

.item_iron_e78a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.active_4014 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.module_dark_de0b {
    font-size: 1.5rem;
}

.primary_inner_d2dd {
    color: var(--accent-color);
    margin: 0;
}

.table_hard_e33f {
    list-style: none;
}

.table_hard_e33f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.table_hard_e33f li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.breadcrumb_focused_649a {
    margin: 2rem 0;
}

.wood-2286 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.table_fc1e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .table_fc1e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center-7ba1 {
    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);
}

.fast_3fb1 {
    font-size: 1.25rem;
}

.tag-e325 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.hot-5117,
.block-cc04 {
    text-align: center;
    margin: 2rem 0;
}

.panel_right_8400,
.steel_e1ef {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.stale-85db {
    margin: 2rem 0;
    text-align: center;
}

.banner-stone-9a62 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-stone-9a62::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;
}

.column_f154 {
    position: relative;
    z-index: 1;
}

.next-489e {
    margin-bottom: 1rem;
}

.aside_easy_3406 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.preview_left_c662 {
    margin-bottom: 3rem;
}

.huge_2ed6 {
    margin-top: 3rem;
}

.cold-4f4a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cold-4f4a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold-4f4a .notification_large_cecd {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph_be67 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden-c39d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.banner-in-3a1e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.summary_narrow_f127 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .summary_narrow_f127 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .summary_narrow_f127 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notification_thick_ae69 {
    margin-bottom: 1rem;
}

.wide-9072 img {
    margin-bottom: 1rem;
}

.detail_down_3c29 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thick-3a0b {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.link_34c4 {
    list-style: none;
}

.link_34c4 li {
    margin-bottom: 0.5rem;
}

.link_34c4 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.link_34c4 a:hover {
    color: var(--accent-color);
}

.detail-8f2f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-d6a4 {
    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);
}

.footer-d6a4:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.pagination-d562 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.pagination-d562 p {
    margin-bottom: 0.25rem;
}

.thick-5765 {
    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) {
    .thick-5765 {
        flex-direction: row;
    }
}

.purple-ae48 {
    text-align: center;
}

@media (min-width: 768px) {
    .purple-ae48 {
        text-align: left;
    }
}

.purple-ae48 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.content-south-4486 {
    font-size: 0.75rem !important;
}

.surface-63f6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.column-thick-13fb {
    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);
    }
}

.pattern-advanced-0475 {
    animation: fadeInUp 0.6s ease-out;
}

.avatar-9371 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.module_red_94ed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_red_94ed {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.upper-8aa2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-8aa2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_outer_b4c4 {
    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);
}

.progress_outer_b4c4 .warm-31f4 {
    font-size: 1.25rem;
}

.progress_outer_b4c4 .paper-0f58 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pressed-8782 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pressed-8782 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_f059 {
    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);
}

.in_f059:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_c5d8 {
    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);
}

.description-black-619c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.main-191f {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-c473 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_e913 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_e913 .notification-new-0b73 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_e913 .rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown_7a47 {
    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);
}

.paragraph-next-b336 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.paragraph-next-b336 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.paragraph-next-b336 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.inner_70e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.green-843b {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.down_e795 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.down_e795 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.down_e795 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);
}

.down_e795 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.down_e795 input::placeholder {
    color: var(--text-muted);
}

.frame_glass_a39f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.texture-11fe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.texture-11fe input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.nav_524c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.nav_524c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.table_fc1e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_fc1e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center-7ba1 {
    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);
}

.center-7ba1 .fast_3fb1 {
    font-size: 1.25rem;
}

.center-7ba1 .tag-e325 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.outline_mini_5247 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty_1e20 {
    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);
}

.dirty_1e20 .warm-31f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dirty_1e20 .notification-new-0b73 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dirty_1e20 .rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused-5ae5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail_out_d42e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail_out_d42e .slow-1a69 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thumbnail_out_d42e .label-97ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-right-0399 {
    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);
}

.backdrop-b8ab {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .backdrop-b8ab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dark_57a5 {
    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);
}

.dark_57a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-last-fd90 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.full-edb4 {
    flex: 1;
}

.button-first-f705 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.description-cold-1ebd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-6ac1 {
    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);
}

.content-6ac1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.texture-90c3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-90c3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-7d0a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture-7d0a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop_3cee {
    font-size: 2rem;
    flex-shrink: 0;
}

.static-ded4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary_6171 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.main-c0ec {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature_plasma_73a0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_010e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower-b742 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lower-b742 .alert_402c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower-b742 .label-10b9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down_dd34 {
    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);
}

.filter_south_810f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer-6bbf {
    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);
}

.outer-6bbf .warm-31f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer-6bbf .notification-new-0b73 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outer-6bbf .rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-df00 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-df00 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-motion-c5f5 {
    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);
}

.nav-motion-c5f5:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.warm_f0c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm_f0c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_hard_66d6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block_hard_66d6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top-ab2e {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_8778 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-98a2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.menu_gas_24f6 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.brown-bfd5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-bright-8092 {
    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);
}

.summary-bright-8092:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_out_805a {
    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);
}

.primary_c87a {
    flex: 1;
}

.tag-e1af {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.wrapper_over_20f7 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hot_c84e {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-d32f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_f747 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_f747 .slow-1a69 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow_f747 .label-97ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-cc04 {
    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);
}

.slider_d16c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_d16c {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.info-03cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-03cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic_afa0 {
    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);
}

.dynamic_afa0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-under-914e {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-over-93bf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bottom-2d93 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.image-brown-1a87 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.overlay-medium-1f94 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough_909d {
    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);
}

.pattern_fd83 {
    font-size: 2rem;
    flex-shrink: 0;
}

.texture_action_0e50 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent-hard-cf93 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_south_810f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer-6bbf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outer-6bbf .notification-new-0b73 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer-6bbf .rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-1ba4 {
    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);
}

.sidebar-d07f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-d07f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sidebar-d07f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stone_8860 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.stone_8860:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center-6663 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.action-7a0e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pagination_glass_480c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.east-6672 {
    padding: 1.5rem;
}

.full_b40b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.short_f9a4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.short_f9a4 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;
}

.short_f9a4 li:last-child {
    border-bottom: none;
}

.short_f9a4 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.filter-545c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-545c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.south_484a {
    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);
}

.south_484a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-229a {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-c119 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.black_ac6c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.middle_fc65 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wide_718a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-first-095f {
    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);
}

.pink_8913 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_d8ff {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header_cebd {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_e884 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.complex_2c84 {
    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);
}

.article-3083 {
    text-align: center;
}

.tiny-9423 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short-1cb1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fixed-b9b2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_e4af {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description_e4af .notification-new-0b73 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_e4af .rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-small-4160 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading-small-4160 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading-small-4160 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-255f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.block-255f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_7c14 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.upper_3a7f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notification-new-0b73 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.gas-f7be {
    padding: 1.5rem;
}

.rough_402d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.message-dynamic-9726 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-dynamic-9726 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;
}

.message-dynamic-9726 li:last-child {
    border-bottom: none;
}

.message-dynamic-9726 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.form-6de0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.layout_db72 {
    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);
}

.layout_db72:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_aa12 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom_cc49 {
    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);
}

.box_c5d8 {
    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;
}

.description-black-619c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main-191f {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_54b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-ff17 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-1fa0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.backdrop_e925 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.light_5aae {
    display: flex;
    gap: 1rem;
}

.light_5aae .pink_f0b9 {
    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;
}

.paragraph_cold_5acd {
    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);
}

.input_brown_1785 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.modal-4b40 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-4b40 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;
}

.modal-4b40 li:last-child {
    border-bottom: none;
}

.modal-4b40 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.image_short_eec0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .image_short_eec0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image_short_eec0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent-cc5c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent-cc5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.full_32d8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.selected-a5ed {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.alert_402c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dropdown_8d58 {
    font-size: 1rem;
}

.video_5627 {
    padding: 1.5rem;
}

.label-10b9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.box-59e3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.box-59e3 .article-3083 {
    text-align: center;
}

.box-59e3 .short-1cb1 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.box-59e3 .search-fe11 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.banner_active_f1aa {
    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);
}

.banner_active_f1aa:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.picture-basic-0025 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-basic-0025 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-hovered-6108 {
    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);
}

.heading-hovered-6108:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component_7b38 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-1935 {
    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);
}

.section_db6c {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_action_ea59 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.full-06d2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-white-abe5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sidebar-dim-005f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left_65ab {
    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);
}

.progress-3cff {
    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;
}

.progress-3cff.tooltip-7444 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.progress-3cff.first-cf27 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.progress-3cff.aside_2d02 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.progress-3cff.easy_cee3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.progress-3cff.breadcrumb-pro-15b2 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.content-wood-881a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading-e7dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm-4192 {
    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);
}

.gas-5699 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.focused-5ae5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-5ae5 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;
}

.focused-5ae5 li:last-child {
    border-bottom: none;
}

.focused-5ae5 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.wood_d4c7 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wood_d4c7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wood_d4c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-6dfe {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo-6dfe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo-6dfe.logo_1b2e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .photo-6dfe.logo_1b2e {
        grid-column: span 3;
    }
}

.gold-24f6 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.photo-6dfe.logo_1b2e .gold-24f6 {
    background: rgba(6, 182, 212, 0.1);
}

.description-warm-89ae {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.shade-iron-4445 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.photo-6dfe.logo_1b2e .shade-iron-4445 {
    color: var(--info-color);
}

.pattern_gold_756a {
    padding: 1.5rem;
    text-align: center;
}

.tooltip-d14b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.photo-6dfe.logo_1b2e .tooltip-d14b {
    color: var(--info-color);
}

.down-7b86 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tertiary-first-e319 {
    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 */
.text_e8f1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .text_e8f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-87df {
    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);
}

.feature-87df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.carousel_792f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty_1e20 {
    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);
}

.fast_3fb1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-a1f9 {
    flex: 1;
}

.wood-2286 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-38da {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-hot-4a96 {
    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);
}

.icon_fresh_68fb {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description-275a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.column-thick-13fb {
    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);
}

.container-first-aa9b {
  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);
}

.container-first-aa9b .article-3083 {
    text-align: center;
}

.container-first-aa9b .tiny-9423 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.container-first-aa9b .short-1cb1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item_ffc5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-b999 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_2ecf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.small_5353 {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-77c5 {
    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);
}

.light-9f00 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_63d2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_6577 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .caption_6577 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption_6577 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-d92f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image-d92f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_0ae1 {
    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);
}

.small-4b8f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.picture-tiny-19a1 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.center_12eb {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.center_12eb.progress-lower-2464 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.center_12eb.nav_medium_df8d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.center_12eb.section_40c0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.mask_3222 {
    padding: 1.5rem;
    text-align: center;
}

.form-cea1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tabs-9197 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tabs-9197 .warm_42b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.black-8bf8 {
    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);
}

.black-8bf8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-down-2b5f {
  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);
}

.link-06ed {
    text-align: center;
}

.link-06ed .tiny-9423 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.link-06ed .short-1cb1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.dim_a88b { text-align: center; }
.solid_1448 { text-align: left; }
.center-c4fa { text-align: right; }

.feature-308c { margin-bottom: 0; }
.search_hot_8bcb { margin-bottom: 0.5rem; }
.tooltip-west-20c1 { margin-bottom: 1rem; }
.button-prev-2c82 { margin-bottom: 1.5rem; }
.black-e7d2 { margin-bottom: 2rem; }

.east-47f8 { margin-top: 0; }
.container-large-0f11 { margin-top: 0.5rem; }
.table-4112 { margin-top: 1rem; }
.blue_ff62 { margin-top: 1.5rem; }
.info_over_5d48 { margin-top: 2rem; }

.fn-hidden-54e2 { display: none; }
.fn-visible-54e2 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .cold_54e0 {
        padding: 6rem 0 3rem;
    }
    
    .hidden_hovered_d122 {
        text-align: center;
    }
    
    .gallery-f647 {
        text-align: center;
    }
    
    .solid_039a {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .widget-orange-3ac3,
    .hero-4ba2,
    .banner-stone-9a62,
    .banner-in-3a1e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .cold_54e0 {
        background: none;
    }
}

/* Providers Section */
.stale-74b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-c2a5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-c2a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-c2a5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_b381 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.silver_b381:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fresh-4fed {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pagination_400c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gas_91ac {
    list-style: none;
    padding: 0;
}

.gas_91ac li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.gas_91ac li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.sort-b3da {
    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);
}

.sort-b3da p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.iron_ec8e {
    padding: var(--section-padding);
}

.mask-9402 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask-9402 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-prev-8ba9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.badge-prev-8ba9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.inner-7b0c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sort_d86d {
    display: flex;
    flex-direction: column;
}

.solid-bab2 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.row_full_3bf6 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.outer_5d60 {
    color: var(--accent-color);
}

.grid_gas_edb0 {
    font-size: 1.25rem;
}

.green-94bb {
    margin-bottom: 1rem;
}

.green-94bb p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.tabs-fast-f453 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blue_195f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.article-3083 {
    text-align: center;
}

.tiny-9423 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short-1cb1 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.mini_7e2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-28b2 {
    margin: 2rem 0;
}

.hard_9e67 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.hard_9e67 .warm-31f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.yellow_41c6 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stale-3cb8 {
    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;
}

.stale-3cb8:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.narrow_1253 {
    font-size: 2rem;
}

.frame-caaf {
    display: flex;
    flex-direction: column;
}

.info_8780 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.tooltip_thick_4814 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.small-af3e {
    padding: var(--section-padding);
}

.detail-4284 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .detail-4284 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-4284 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-5bcd {
    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);
}

.sort-5bcd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort-5bcd .tiny-9423 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sort-5bcd .short-1cb1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.sort-5bcd .dropdown_8f72 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.overlay-f237 {
    margin-top: 4rem;
}

.mask-left-db38 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.progress-slow-5e59 {
    overflow-x: auto;
}

.hard_5b5f {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hard_5b5f thead {
    background: var(--accent-color);
}

.hard_5b5f th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.hard_5b5f td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_5b5f tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.hard_5b5f tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.menu-0a48 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-outer-a1c9 {
    max-width: 900px;
    margin: 0 auto;
}

.steel-9684 {
    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);
}

.steel-9684:hover {
    border-color: var(--accent-color);
}

.heading_inner_4697 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.heading_inner_4697 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.widget_soft_71c6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.steel-9684.fn-active-54e2 .widget_soft_71c6 {
    transform: rotate(45deg);
}

.warm_5a46 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.steel-9684.fn-active-54e2 .warm_5a46 {
    max-height: 1000px;
}

.warm_5a46 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.text_5179 {
    padding: var(--section-padding);
}

.paragraph-next-b336 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.next_6935 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-hovered-7bfe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-hovered-7bfe {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero_paper_56d4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_solid_8b5b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-1e45 {
    font-size: 2rem;
}

.tooltip_116d {
    color: var(--text-white);
    margin: 0;
}

.frame-de20 {
    list-style: none;
    padding: 0;
}

.frame-de20 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-de20 li:last-child {
    border-bottom: none;
}

.paragraph_upper_692e {
    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);
}

.paragraph_upper_692e p {
    color: var(--success-color);
    margin: 0;
}

.popup_1bb8 {
    margin-top: 3rem;
}

.input_brown_1785 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.block-44be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .block-44be {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video_outer_4a9d {
    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);
}

.alert_6f40 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video_outer_4a9d p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.description_under_4cbe {
    padding: var(--section-padding);
}

.solid_e143 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .solid_e143 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight_a2ed {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.highlight_a2ed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.grid_bcab {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.list_9a84 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fresh_69ae {
    flex: 1;
}

.module_soft_5141 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.list_under_9431 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.summary_3d79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_7968 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass_7968:last-child {
    border-bottom: none;
}

/* Comparison Section */
.silver_5519 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tertiary_beea {
    padding: var(--section-padding);
}

.left-e387 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.media-3bed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-3bed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_6edd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_e7fe, .slider-ff31, .label-red-fea8 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.label-red-fea8 {
    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 */
.popup_static_689a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny_265b {
    margin: 2rem 0;
}

.simple_0468 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-pro-2346 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notification_2c60 {
    list-style: none;
    padding: 0;
}

.notification_2c60 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;
}

.notification_2c60 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.notification_2c60 li:last-child {
    border-bottom: none;
}

.under_448d {
    text-align: center;
    margin-top: 2rem;
}

.card-slow-bb18 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.liquid-0ec9 {
    padding: var(--section-padding);
}

.cold_83bf {
    margin: 2rem 0;
}

.focused-7dda {
    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) {
    .focused-7dda {
        flex-direction: column;
        align-items: flex-start;
    }
}

.focused-7dda:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.full-53f5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.banner_short_2ce7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.gradient_middle_512f {
    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;
}

.stale_82d1 {
    flex: 1;
}

.info_selected_63fd {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.section-2b46 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.header_74fc {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.aside-wood-09be {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .aside-wood-09be {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fast_7fac {
    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);
}

.fast_7fac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fast_7fac .tiny-9423 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast_7fac .short-1cb1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.hidden-ceb1 {
    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);
}

.progress-07f2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.progress-07f2 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.card-000a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .card-000a {
        grid-template-columns: 1fr 1fr;
    }
}

.frame-4cf8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_soft_f5d8 {
    margin-bottom: 1.5rem;
}

.footer_soft_f5d8 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer_soft_f5d8 input,
.footer_soft_f5d8 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;
}

.footer_soft_f5d8 input:focus,
.footer_soft_f5d8 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.image-a303 {
    width: 100%;
    margin-top: 1rem;
}

.sort_top_f0e9 {
    display: flex;
    align-items: center;
}

.footer-lower-b004 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-de3b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.white_808a {
    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;
}

.secondary_41c5 {
    color: var(--text-gray);
}

.glass-ff17 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.border_orange_f51a {
    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);
}

.border_orange_f51a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.notice_old_aa55 {
    margin-top: 3rem;
}

.primary-7248 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.notification_ed99 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-3a73 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.table-cc1e {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-cc1e:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.dim_9c4d {
    padding: var(--section-padding);
}

.cool_5663 {
    margin: 2rem 0;
}

.caption-active-dfda {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.avatar-soft-f360 {
    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;
}

.avatar-soft-f360:hover, .avatar-soft-f360.fn-active-54e2 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.disabled-bb3c {
    display: none;
}

.disabled-bb3c.fn-active-54e2 {
    display: block;
}

.active-c978 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card-simple-eb42 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.module-a80b h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.module-a80b ul {
    list-style: none;
    padding: 0;
}

.module-a80b ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.module-a80b ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.fast_76ed {
    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 */
.module-center-ef26 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link-inner-0958 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-under-88ef {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.alert_d19a {
    color: var(--accent-color);
    margin: 0;
}

.center_f3b0 {
    display: flex;
    gap: 1.5rem;
}

.south_975e {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.summary-2e3d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.focused-450f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.focused-450f.bronze_53d4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.focused-450f.search_tiny_6302 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.focused-450f.full-52a5 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.backdrop_f296 {
    margin-top: 2rem;
}

.accordion-3ae7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.image_wide_b7d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .image_wide_b7d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.black-75ac {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.south-8717 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.slow_cda8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hover_middle_3629 {
    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 */
.outer-24bc {
    padding: var(--section-padding);
}

.outline-c4a4 {
    margin: 2rem 0;
}

.preview-da38 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.heading_4472 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.tertiary-prev-fe9a {
    list-style: none;
    padding: 0;
}

.tertiary-prev-fe9a 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;
}

.tertiary-prev-fe9a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.tertiary-prev-fe9a li:last-child {
    border-bottom: none;
}

.progress-tiny-ac0c {
    margin: 2rem 0;
}

.feature-silver-dfd5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.up-2747 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .up-2747 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar-wide-4bc7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_orange_e05f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer_a263 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.text-0cd6 {
    margin-top: 2rem;
}

.button-first-f705 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.fast-80aa {
    list-style: none;
    padding: 0;
}

.panel-918e {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.panel-918e a {
    color: var(--accent-color);
    text-decoration: none;
}

.panel-918e a:hover {
    text-decoration: underline;
}

.heading_44e4 {
    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 */
.pro_bb5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.top-a2f2 {
    margin: 2rem 0;
}

.notification_blue_753f {
    margin-bottom: 3rem;
}

.notification_blue_753f .content-pro-2346 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.column-4c70 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.title-down-b9e3 {
    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);
}

.title-down-b9e3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.container-b3ae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .container-b3ae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid_34fc {
    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 */
.new_50b3 {
    padding: var(--section-padding);
}

.layout_c03c {
    margin: 2rem 0;
}

.simple_f6ae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.box-thick-bcbc {
    overflow-x: auto;
    margin: 2rem 0;
}

.cool-46f7 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.center_4b0b {
    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;
}

.thumbnail-bbc4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.overlay-80b5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .overlay-80b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-paper-833e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-paper-833e .warm-31f4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.mask-paper-833e .notification-new-0b73 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dynamic_5a7a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.search-middle-f1f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green_5cb9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green_5cb9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-stale-2e77 {
    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;
}

.frame-stale-2e77:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.layout-hard-b922 {
    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);
}

.section_90bf {
    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;
}

.button_bfd7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lite-4096 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.light_1583 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.up-a5b4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.light_d882 {
    color: var(--text-white);
    font-weight: 600;
}

.modal_stale_1b67 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.message_bright_5d9a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message_bright_5d9a .pink_f0b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.background-7750 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .background-7750 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled-bright-0f77 {
    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);
}

.disabled-bright-0f77:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled-bright-0f77 .tiny-9423 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled-bright-0f77 .short-1cb1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.bottom_ce8f {
    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);
}

.element_fast_a621 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.element_fast_a621 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.overlay-medium-1f94 {
    margin: 2rem 0;
}

.rough_909d {
    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);
}

.rough_909d:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pattern_fd83 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row-orange-8cd1 {
    flex: 1;
}

.texture_action_0e50 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.accent-hard-cf93 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.filter_south_810f {
    margin: 2rem 0;
}

.outer-6bbf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-6bbf .notification-new-0b73 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.outer-6bbf .rough_402d {
    color: var(--text-gray);
    margin: 0;
}

.hard-1ba4 {
    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);
}

.hard-1ba4 .panel_right_8400 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.dynamic_5a7a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.filter_out_805a {
    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;
}

.primary_c87a {
    flex: 1;
}

.wrapper_over_20f7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.hot_c84e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.box_c5d8 {
    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;
}

.dropdown-down-e818 {
    flex: 1;
}

.description-black-619c {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.main-191f {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.active-1fa0 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.backdrop_e925 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.light_5aae {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.light_5aae .pink_f0b9 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.paragraph_cold_5acd {
    margin-top: 2rem;
}

.paragraph_cold_5acd .input_brown_1785 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.dropdown-2e8f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex_2c84 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .complex_2c84 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex_2c84 .article-3083 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-b9b2 {
    margin: 2rem 0;
}

.description_e4af {
    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 */
.border_tall_f729 {
    padding: var(--section-padding);
}

.gas-f7be {
    margin-top: 1rem;
}

.message-dynamic-9726 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.message-dynamic-9726 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.message-dynamic-9726 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.dirty_9d7b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-a543 {
    margin: 2rem 0;
}

.primary-af2f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.background_6705 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.button-simple-dd41 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.active_ba8f {
    margin: 2rem 0;
}

.carousel_9112 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.carousel_9112 .content-pro-2346 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark_5ea4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dark_5ea4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stone-5c0d {
    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);
}

.huge_c2f5 {
    color: var(--text-white);
    font-weight: 600;
}

.article-first-f17d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.overlay-dim-e5d1 {
    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);
}

.overlay-dim-e5d1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.shade_91b9 {
    padding: var(--section-padding);
}

.west_200a {
    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;
}

.west_200a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.chip_complex_9f5c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip_complex_9f5c .alert_6f40 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_complex_9f5c .hot_96b8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.nav-in-2a11 {
    flex: 1;
}

.purple-fe19 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.center-239c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-239c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.center-239c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.sort-fast-47ec {
    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);
}

.sort-fast-47ec p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.sort-fast-47ec strong {
    color: var(--warning-color);
}

/* Slots Section */
.iron-120a {
    padding: var(--section-padding);
}

.feature_plasma_73a0 {
    margin: 2rem 0;
}

/* Table Games Section */
.light-00dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_010e {
    margin: 2rem 0;
}

.lower-b742 {
    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);
}

.lower-b742:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.lower-b742 .alert_402c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.lower-b742 .label-10b9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.down_dd34 {
    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);
}

.down_dd34 .panel_right_8400 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.hot-c229 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast_c11a {
    margin: 2rem 0;
}

.logo_a9dc {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop-blue-8578 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange_9b69 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.element_slow_e090 {
    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);
}

.element_slow_e090:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.element_slow_e090.fn-active-54e2 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_92d8 {
    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);
}

.hero-iron-bcf9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hero-iron-bcf9 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.backdrop-31a2 {
    padding: var(--section-padding);
}

.pagination-bright-7c27 {
    margin: 2rem 0;
}

.box_down_f177 {
    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);
}

.box_down_f177:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .box_down_f177 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.message-2205 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.media-bottom-166f {
    flex: 1;
}

.video_bd6a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.box_f373 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.box_first_1c6a {
    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;
}

.progress_efa3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tertiary_up_d92e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sidebar_d414 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background-narrow-6d98 {
    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;
}

.background-narrow-6d98:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.white-9d6d {
    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);
}

.yellow-b80d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.yellow-b80d strong {
    color: var(--accent-color);
}

/* New Games Section */
.right-83c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_outer_c750 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slider_outer_c750 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider_outer_c750 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_fast_ec7d {
    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;
}

.notice_fast_ec7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header-solid-f48e {
    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;
}

.layout_top_1201 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.content-black-3909 {
    font-size: 2rem;
}

.pattern-lite-48c0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.banner_8c1f {
    flex: 1;
}

.breadcrumb_03f6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.hidden_f546 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.photo-1572 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outer_f2f6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hovered-be5c {
    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;
}

.photo_68f6 {
    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;
}

.photo_68f6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gradient-lower-4b62 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_7d17 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-upper-f346 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .progress-upper-f346 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_plasma_db66 {
    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);
}

.secondary_narrow_649b {
    color: var(--text-white);
    font-weight: 600;
}

.header_brown_6dde {
    color: var(--accent-color);
    font-weight: 600;
}

.full-2553 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.full-2553 strong {
    color: var(--accent-color);
}

/* Security Section */
.panel_3b66 {
    padding: var(--section-padding);
}

/* Benefits Section */
.hot-1339 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.wide-290e {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.overlay_center_104f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_dc1d {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.media-copper-dde6 {
    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) {
    .media-copper-dde6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.media-copper-dde6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.media-copper-dde6 .box_c5d8 {
    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;
}

.media-copper-dde6 .dropdown-down-e818 {
    flex: 1;
}

.media-copper-dde6 .description-black-619c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.media-copper-dde6 .main-191f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.pressed_2cd4 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_2cd4 .wood-2286 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pressed_2cd4 .outline_mini_5247 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pressed_2cd4 .outline_mini_5247 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pressed_2cd4 .outline_mini_5247 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.box-slow-343c {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.disabled-old-2d9d {
    padding: var(--section-padding);
}

.paper-52a7 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .paper-52a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion_3789 {
    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);
}

.motion_3789:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.motion_3789 .link-hard-a0a6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion_3789 .last_e7f1 {
    flex: 1;
}

.motion_3789 .slow-1a69 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.motion_3789 .border_81ca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.active_b3cc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_b3cc .thick_5ed0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active_b3cc .row-short-2791 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.active_b3cc .row-short-2791 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);
}

.active_b3cc .row-short-2791 li:last-child {
    border-bottom: none;
}

.active_b3cc .row-short-2791 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;
}

.active_b3cc .row-short-2791 li strong {
    color: var(--text-white);
}

.gold-3f04 {
    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);
}

.gold-3f04 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gold-3f04 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.text_huge_537a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_dark_9c6e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .module_dark_9c6e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media_under_b803 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.media_under_b803:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay-b74b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form_red_a39a {
    font-size: 2rem;
}

.chip-5ba3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.gradient_plasma_19aa {
    flex: 1;
}

.notification_d4cb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification_d4cb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.notification_d4cb li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wrapper-bottom-8549 {
    margin-top: 3rem;
}

.preview-da38 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.heading_4472 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary-prev-fe9a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tertiary-prev-fe9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.tertiary-prev-fe9a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.tertiary-prev-fe9a li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.panel-fa9b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-8eca {
    margin: 2rem 0;
}

.static_f20d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.static_f20d .content-pro-2346 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice-wood-4c5b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notice-wood-4c5b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.box_26fb {
    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);
}

.box_26fb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.shade-2a15 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.frame_clean_8cce {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.heading-pro-5082 {
    padding: var(--section-padding);
}

.gallery_white_23a8 {
    margin: 2rem 0;
}

.focus-dynamic-76eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .focus-dynamic-76eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus-dynamic-76eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider_0bf3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider_0bf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_slow_4728 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sidebar-tiny-2bc3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.outline-iron-c97f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.outline-iron-c97f.upper_0b26 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.paragraph_e316 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.avatar_stale_7ad0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.hidden_249a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prev_7bd4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-fac0 {
    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);
}

.footer-fac0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer-fac0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.modal-purple-e97c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_1e77 {
    margin: 2rem 0;
}

.nav-5b82 {
    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) {
    .nav-5b82 {
        flex-direction: column;
        gap: 1rem;
    }
}

.nav-5b82:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.nav-5b82::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);
}

.surface-a1e4 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.widget-b122 {
    flex: 1;
}

.module_red_6ee7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.item-8658 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-8658 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.up_efa7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_62e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.smooth_c254 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .smooth_c254 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.out-bd22 {
    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);
}

.block_out_1b36 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.huge_0f31 {
    flex: 1;
}

.first_83d1 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.lite_2014 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary_static_36fe {
    margin-top: 2rem;
    text-align: center;
}

.cold-c371 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.cold-c371 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.picture-basic-0025 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .picture-basic-0025 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-hovered-6108 {
    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);
}

.heading-hovered-6108:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading-hovered-6108 .summary-229a {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading-hovered-6108 .focus-c119 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.heading-hovered-6108 .black_ac6c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.heading-hovered-6108 .middle_fc65 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.notification-1b75 {
    padding: var(--section-padding);
}

.menu-1935 .shade-3508 {
    flex: 1;
}

/* Promo Calendar Section */
.gradient-simple-237d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fixed_126a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_126a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-b681 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_smooth_9604 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.link_clean_1f88 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.east_404a {
    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);
}

.dropdown_dirty_28e3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article_7872 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.primary-ec45 {
    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);
}

.primary-ec45 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary-ec45 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.avatar-north-7f1f {
    padding: var(--section-padding);
}

.pink_2090 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pink_2090 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.complex_04d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_b5d3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge-large-b306 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-large-b306 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-1e65 {
    margin-top: 3rem;
}

.selected-1e65 .preview-da38 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.selected-1e65 .heading_4472 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.selected-1e65 .tertiary-prev-fe9a {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.selected-1e65 .tertiary-prev-fe9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.selected-1e65 .tertiary-prev-fe9a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.selected-1e65 .tertiary-prev-fe9a li strong {
    color: var(--warning-color);
}

.detail_768f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_768f strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.carousel_next_7746 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_78cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_78cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_119b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_119b .content-pro-2346 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.glass_200e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grid_34fd {
    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);
}

.grid_34fd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.west_7f80 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern_6123 {
    flex: 1;
}

.menu_fixed_1018 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.block_prev_f993 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mask_0bc8 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.outer_61df {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.focus-dark-b940 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .focus-dark-b940 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-silver-1c7e {
    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);
}

.tabs-silver-1c7e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-lower-30f5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.prev_6297 {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-07f2 {
    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);
}

.out_9832 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.out_9832 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.component-large-6d0d { 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; }
.soft-8c3b, .hover-under-1f5b { max-width:100%; height:auto; }

.popup_b6b1, .upper-54a0, .component_8a80 { white-space:normal; }

.hidden_hovered_d122,
.gallery-f647,
.text_e8f1,
.picture-basic-0025,
.filter_south_810f,
.caption_6577 {
  flex-wrap:wrap;
}

[class*="grid"],
.focus-dark-b940,
.focus-dynamic-76eb,
.cold-4f4a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.cold_54e0 img,
.gallery-f647 img,
.image-9709 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.feature_copper_b825, .bottom-61b3,
.blue-882a, .carousel-ed28 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.progress-slow-5e59 { width:100%; overflow-x:auto; }
.progress-slow-5e59 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.filter-c2a5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .filter-c2a5 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.silver_b381 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.detail-4284,
.backdrop_clean_2173,
.gradient_cc2f,
.form_ef9b,
.aside-wood-09be,
.focus-dark-b940,
.focus-dynamic-76eb,
.cold-4f4a,
.footer-down-2b5f,
.pagination-bright-7c27,
.filter-c2a5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .detail-4284,
  .backdrop_clean_2173,
  .gradient_cc2f,
  .form_ef9b,
  .aside-wood-09be,
  .focus-dark-b940,
  .focus-dynamic-76eb,
  .cold-4f4a,
  .footer-down-2b5f,
  .pagination-bright-7c27,
  .filter-c2a5 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.sort-5bcd,
.fast_7fac,
.tabs-silver-1c7e,
.notification_large_cecd,
.slider_0bf3,
.link-06ed,
.box_down_f177,
.silver_b381 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.over_e8ed,
.hero_4c16,
.in_0b3c {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.over_e8ed > *,
.hero_4c16 > *,
.in_0b3c > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 244e */
.widget-item-b3 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
