/* {$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;
}

.progress_02ac {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.filter_0be6 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .filter_0be6 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .filter_0be6 {
        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 */
.frame-over-b492 {
    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);
}

.brown-9872 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .brown-9872 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .under-432a {
        grid-column: 1;
    }
    
    .avatar-stale-342d {
        grid-column: 2;
    }
    
    .backdrop_5ca0 {
        grid-column: 3;
    }
}

.under-432a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.under-432a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.surface_1e21 {
    display: none;
}

@media (min-width: 1024px) {
    .surface_1e21 {
        display: block;
    }
}

/* Grouped Navigation */
.list-5bf6 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.selected_2331 {
    position: relative;
}

.new-7d86 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.selected_2331 .yellow-5a66 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.yellow-5a66 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.selected_2e61 {
    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;
}

.selected_2e61:hover,
.selected_2e61.fn-active-0778 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.menu-6478 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .menu-6478 {
        display: flex;
    }
}

/* Mobile Register Button */
.avatar-stale-342d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .avatar-stale-342d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.detail_active_861f {
    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;
}

.detail_active_861f::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 */
.backdrop_5ca0 {
    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) {
    .backdrop_5ca0 {
        display: none;
    }
}

.backdrop_5ca0 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.backdrop_5ca0.fn-active-0778 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.backdrop_5ca0.fn-active-0778 span:nth-child(2) {
    opacity: 0;
}

.backdrop_5ca0.fn-active-0778 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.search-e6e5 {
    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;
}

.search-e6e5.fn-active-0778 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.silver_bdf3 {
    overflow: hidden;
}

.west-669f {
    list-style: none;
    padding: 0.75rem 0;
}

.upper_d5d8 {
    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;
}

.upper_d5d8:hover,
.upper_d5d8.fn-active-0778 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.upper_d5d8.disabled_8692 {
    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;
}

.upper_d5d8.disabled_8692::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 */
.soft-27ac {
    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;
}

.heading-3053 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.heading-3053:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.dark_6986 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.dark_6986:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.button_b2b3 {
    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;
}

.button_b2b3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.up-b7f2 {
    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;
}

.liquid-4cb9 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.liquid-4cb9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_f65c {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_f65c:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.wrapper_upper_d119 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.wrapper_upper_d119: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);
}

.hot-c863 {
    font-size: 1em;
    font-weight: 700;
}

.gallery_red_db72 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.pink-b418 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.pink-b418::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;
}

.info-stale-647a {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .info-stale-647a {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.pagination_rough_b5a3 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hard-9b5c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.texture-8d68 {
    margin-bottom: 2rem;
}

.heading_24e0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .heading_24e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_dark_befa {
    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);
}

.cold-cca6 {
    font-size: 1.5rem;
}

.silver-7102 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.west_633d {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_3f81 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.menu_3f81:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.container_fluid_a028 {
    text-align: center;
    margin-bottom: 3rem;
}

.white-622b {
    margin-bottom: 1rem;
}

.nav_7ea9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.accent-6eec {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .accent-6eec {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .accent-6eec.modal-small-7812 {
        direction: rtl;
    }
    
    .accent-6eec.modal-small-7812 > * {
        direction: ltr;
    }
}

.active_iron_0b81 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.active_iron_0b81:first-child {
    margin-top: 0;
}

.wrapper_dim_815c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gallery_a5c2 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gallery_a5c2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.yellow_a349 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_a349 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty_7d3e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag-simple-9f2c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tertiary-b8a6 {
    list-style: none;
}

.tertiary-b8a6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary-b8a6 li:last-child {
    border-bottom: none;
}

/* Games Features */
.iron_e306 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.breadcrumb_bc23 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.grid_silver_aa82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slow-6160 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.orange_5fe3 {
    margin: 2rem 0;
}

.medium_7993 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.description_last_9d05 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.badge-basic-746a {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.active_913d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.under_3c83 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_3c83 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element-756d {
    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);
}

.element-756d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic-6f4d {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.secondary_solid_8368 {
    font-size: 1.5rem;
}

.media_action_bd44 {
    color: var(--accent-color);
    margin: 0;
}

.alert_complex_7dc5 {
    list-style: none;
}

.alert_complex_7dc5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.alert_complex_7dc5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.feature_inner_9804 {
    margin: 2rem 0;
}

.table-short-5095 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.selected_2a4d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .selected_2a4d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid-0b93 {
    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);
}

.border-0bd8 {
    font-size: 1.25rem;
}

.form_orange_ca8a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.popup_e4e8,
.liquid_fec6 {
    text-align: center;
    margin: 2rem 0;
}

.accent_thick_5fed,
.highlight_solid_8027 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.primary_ebc0 {
    margin: 2rem 0;
    text-align: center;
}

.feature-4f32 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-4f32::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;
}

.detail-over-426c {
    position: relative;
    z-index: 1;
}

.out-b421 {
    margin-bottom: 1rem;
}

.up-b028 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brown-7be7 {
    margin-bottom: 3rem;
}

.gallery-62aa {
    margin-top: 3rem;
}

.notification_5b07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .notification_5b07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_5b07 .active_dark_befa {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup-d8ce {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.clean_3c0d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.texture_ca3b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.basic_1090 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .basic_1090 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic_1090 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.chip_motion_7eca {
    margin-bottom: 1rem;
}

.column_west_aeae img {
    margin-bottom: 1rem;
}

.dropdown-849a {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-9dfc {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.brown_015c {
    list-style: none;
}

.brown_015c li {
    margin-bottom: 0.5rem;
}

.brown_015c a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.brown_015c a:hover {
    color: var(--accent-color);
}

.alert-small-9f67 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sort-1bd0 {
    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);
}

.sort-1bd0:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.lite-25d2 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.lite-25d2 p {
    margin-bottom: 0.25rem;
}

.basic-7b00 {
    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) {
    .basic-7b00 {
        flex-direction: row;
    }
}

.bright_9c86 {
    text-align: center;
}

@media (min-width: 768px) {
    .bright_9c86 {
        text-align: left;
    }
}

.bright_9c86 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.orange-5924 {
    font-size: 0.75rem !important;
}

.medium_1d3a {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.huge-a258 {
    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);
    }
}

.progress-light-176f {
    animation: fadeInUp 0.6s ease-out;
}

.grid_last_e304 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.badge_cold_5b80 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_cold_5b80 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.popup-pro-e698 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-pro-e698 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange_2587 {
    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);
}

.orange_2587 .grid_silver_aa82 {
    font-size: 1.25rem;
}

.orange_2587 .icon-40d6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.action-f89b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .action-f89b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper_0bf1 {
    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);
}

.paper_0bf1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_d7a8 {
    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);
}

.in-814b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort-stone-4cf5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-easy-fa8f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.in_3325 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.in_3325 .slow-6160 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.in_3325 .search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-black-f8a0 {
    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);
}

.wide-8abe {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.wide-8abe img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.wide-8abe img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.nav-e1fb {
    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);
}

.button_6d1d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gradient-4eee {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gradient-4eee label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient-4eee 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);
}

.gradient-4eee input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gradient-4eee input::placeholder {
    color: var(--text-muted);
}

.column-simple-4cc5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.texture_middle_3f16 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.texture_middle_3f16 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.outer-4a37 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.outer-4a37:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.selected_2a4d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected_2a4d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.solid-0b93 {
    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);
}

.solid-0b93 .border-0bd8 {
    font-size: 1.25rem;
}

.solid-0b93 .form_orange_ca8a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.chip-586c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple-a21d {
    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);
}

.purple-a21d .grid_silver_aa82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple-a21d .slow-6160 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.purple-a21d .search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border_5b16 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short-7bf7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.short-7bf7 .border-huge-0806 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-7bf7 .label_mini_d1f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary_ee29 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.simple-1629 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-1629 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern_hard_d55f {
    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);
}

.pattern_hard_d55f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.west-0458 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-aaf0 {
    flex: 1;
}

.progress-thick-4d2e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight_plasma_4731 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.clean_b63d {
    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);
}

.clean_b63d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.light_bc43 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light_bc43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-27b9 {
    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);
}

.mask-27b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail_9023 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-middle-9551 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cool-8073 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled_right_b263 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border_simple_e0b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo_up_1c93 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module_3abf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.module_3abf .video-under-f500 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_3abf .breadcrumb_9774 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_active_1697 {
    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);
}

.out_c32a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_dirty_689a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip_dirty_689a .grid_silver_aa82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_dirty_689a .slow-6160 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_dirty_689a .search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.over_c191 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over_c191 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_aa03 {
    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);
}

.progress_aa03:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.selected-345d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected-345d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_slow_32a9 {
    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);
}

.widget_slow_32a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow-af3e {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge_c40e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description_last_9d05 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.grid_hard_7c57 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.paragraph-pressed-0320 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-bronze-dd94 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-normal);
}

.main-bronze-dd94:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-8052 {
    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);
}

.tertiary-e402 {
    flex: 1;
}

.purple_97fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.red_5cae {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.photo-lower-bc82 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-south-1257 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-ce3e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-ce3e .border-huge-0806 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification-ce3e .label_mini_d1f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid_fec6 {
    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);
}

.east-9efa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east-9efa {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.last-4543 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-4543 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-6d54 {
    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);
}

.overlay-6d54:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_a11e {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-current-b4d4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.solid-ca20 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.preview_d6e8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.thumbnail_outer_c86e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_903a {
    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);
}

.chip-silver-27de {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_6fdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_715d {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_c32a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_dirty_689a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tooltip_dirty_689a .slow-6160 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip_dirty_689a .search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel_1870 {
    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);
}

.active_d60b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_d60b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active_d60b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood_37cd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood_37cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_pressed_612d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.thick_9b75 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.medium_50b3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.grid_83b5 {
    padding: 1.5rem;
}

.light-0125 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.red_48ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red_48ea 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;
}

.red_48ea li:last-child {
    border-bottom: none;
}

.red_48ea li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.content_green_ebd0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_green_ebd0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-0855 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary-0855:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion-c4f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-09a9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-4e59 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.shadow-2897 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.in_ab3c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort-up-dd1b {
    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);
}

.gas_4b35 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-fixed-8b36 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_65bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge_ba02 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.prev_bdc0 {
    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);
}

.action_f8dd {
    text-align: center;
}

.backdrop-short-758c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_665d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice_first_f58c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_smooth_c900 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_smooth_c900 .slow-6160 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_smooth_c900 .search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_1a79 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture_1a79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture_1a79 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thick-dbe4 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thick-dbe4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-north-b8e2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.media-fc19 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.slow-6160 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.block_c124 {
    padding: 1.5rem;
}

.search-4c21 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row-871a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row-871a 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;
}

.row-871a li:last-child {
    border-bottom: none;
}

.row-871a li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.feature-3924 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.north-4025 {
    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);
}

.north-4025:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle-5f74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.disabled_new_49ca {
    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);
}

.modal_d7a8 {
    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;
}

.in-814b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-stone-4cf5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer_cd93 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_light_b0d5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.feature_a7ec {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hot-ac57 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gallery_middle_5125 {
    display: flex;
    gap: 1rem;
}

.gallery_middle_5125 .under-e730 {
    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;
}

.liquid_3d01 {
    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);
}

.bright_ef9b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tertiary-9cb3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tertiary-9cb3 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;
}

.tertiary-9cb3 li:last-child {
    border-bottom: none;
}

.tertiary-9cb3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.current-e690 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .current-e690 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .current-e690 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_e8b6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.outer_e8b6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.purple_fe13 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.small-a069 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.video-under-f500 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.slider_f1cc {
    font-size: 1rem;
}

.top_7d5b {
    padding: 1.5rem;
}

.breadcrumb_9774 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.thick_18a1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.thick_18a1 .action_f8dd {
    text-align: center;
}

.thick_18a1 .card_665d {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.thick_18a1 .gradient_in_214a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.section-9af4 {
    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);
}

.section-9af4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.panel_inner_3553 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_inner_3553 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-motion-4540 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag-motion-4540:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone-18d8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-fde7 {
    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);
}

.hidden_a604 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion_clean_ac08 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-929d {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-dc6f {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pressed-f12f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_black_d32d {
    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);
}

.dark_a1ca {
    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;
}

.dark_a1ca.sort_easy_34ff {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.dark_a1ca.bronze-9322 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.dark_a1ca.text-083c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.dark_a1ca.list_liquid_909e {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.dark_a1ca.focus-pink-8619 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.thumbnail_2e56 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.east-a56b {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-bc30 {
    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);
}

.upper-cc1a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.border_5b16 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border_5b16 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;
}

.border_5b16 li:last-child {
    border-bottom: none;
}

.border_5b16 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.fixed_530f {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fixed_530f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fixed_530f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video_hard_bbbe {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video_hard_bbbe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_hard_bbbe.link-motion-b6af {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .video_hard_bbbe.link-motion-b6af {
        grid-column: span 3;
    }
}

.badge-lower-5b3e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.video_hard_bbbe.link-motion-b6af .badge-lower-5b3e {
    background: rgba(6, 182, 212, 0.1);
}

.picture-fast-3d97 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.chip_c840 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.video_hard_bbbe.link-motion-b6af .chip_c840 {
    color: var(--info-color);
}

.tag_large_61ec {
    padding: 1.5rem;
    text-align: center;
}

.prev_7841 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.video_hard_bbbe.link-motion-b6af .prev_7841 {
    color: var(--info-color);
}

.surface_narrow_500a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.focus-out-3cf2 {
    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 */
.section_first_b81e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_first_b81e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-inner-daf2 {
    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);
}

.highlight-inner-daf2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static-4414 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple-a21d {
    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);
}

.border-0bd8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-fec9 {
    flex: 1;
}

.table-short-5095 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_hard_d616 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-clean-ac81 {
    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);
}

.overlay_light_79dc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.link_prev_1e41 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.huge-a258 {
    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);
}

.summary_e72a {
  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);
}

.summary_e72a .action_f8dd {
    text-align: center;
}

.summary_e72a .backdrop-short-758c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.summary_e72a .card_665d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.advanced-c2ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim-0841 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_action_bd86 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slow-72d5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_steel_e6e8 {
    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);
}

.mask_bf3c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dirty_ee6d {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_4b16 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .out_4b16 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_4b16 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center_4d91 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.center_4d91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro-f8f1 {
    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);
}

.slider_north_a08d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.primary-pink-cfee {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.photo_left_4b19 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.photo_left_4b19.frame-dirty-7a28 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.photo_left_4b19.accent_e103 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.photo_left_4b19.hard-0df5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.focus_7823 {
    padding: 1.5rem;
    text-align: center;
}

.south_0b20 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-blue-f2f6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu-blue-f2f6 .gradient-b0be {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.box-thick-e501 {
    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);
}

.box-thick-e501:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.over-c3b6 {
  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);
}

.notice-easy-2cda {
    text-align: center;
}

.notice-easy-2cda .backdrop-short-758c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.notice-easy-2cda .card_665d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.preview_large_a375 { text-align: center; }
.shadow_pro_d5b4 { text-align: left; }
.smooth-351b { text-align: right; }

.light-46cf { margin-bottom: 0; }
.active_0884 { margin-bottom: 0.5rem; }
.tooltip_lite_63a2 { margin-bottom: 1rem; }
.label_small_aa82 { margin-bottom: 1.5rem; }
.column-d607 { margin-bottom: 2rem; }

.aside-1b9a { margin-top: 0; }
.widget-71bd { margin-top: 0.5rem; }
.modal-hard-792c { margin-top: 1rem; }
.up-1727 { margin-top: 1.5rem; }
.tall-e40b { margin-top: 2rem; }

.fn-hidden-0778 { display: none; }
.fn-visible-0778 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .pink-b418 {
        padding: 6rem 0 3rem;
    }
    
    .info-stale-647a {
        text-align: center;
    }
    
    .accent-6eec {
        text-align: center;
    }
    
    .heading_24e0 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .frame-over-b492,
    .search-e6e5,
    .feature-4f32,
    .texture_ca3b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .pink-b418 {
        background: none;
    }
}

/* Providers Section */
.advanced_e268 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first_e53b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first_e53b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first_e53b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-51ca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.input-51ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status_8b96 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prev-2bd8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.icon-west-7f26 {
    list-style: none;
    padding: 0;
}

.icon-west-7f26 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.icon-west-7f26 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.purple_828a {
    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);
}

.purple_828a p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.footer-e003 {
    padding: var(--section-padding);
}

.avatar-mini-f609 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-mini-f609 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table_3191 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.table_3191:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stone-1457 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.background-simple-3e77 {
    display: flex;
    flex-direction: column;
}

.warm-fec1 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.table-left-04ee {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.inner_f76d {
    color: var(--accent-color);
}

.upper-6baa {
    font-size: 1.25rem;
}

.active_62fa {
    margin-bottom: 1rem;
}

.active_62fa p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.chip_44f5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.secondary_tall_680f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.action_f8dd {
    text-align: center;
}

.backdrop-short-758c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card_665d {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.active-11db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sidebar_3987 {
    margin: 2rem 0;
}

.footer_small_3e10 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer_small_3e10 .grid_silver_aa82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_ccf9 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mask-dcc3 {
    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;
}

.mask-dcc3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notice-9293 {
    font-size: 2rem;
}

.list-1bad {
    display: flex;
    flex-direction: column;
}

.fixed-ac88 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.active_4067 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.white-9094 {
    padding: var(--section-padding);
}

.accent_bright_fdac {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .accent_bright_fdac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .accent_bright_fdac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_narrow_741f {
    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_narrow_741f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort_narrow_741f .backdrop-short-758c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sort_narrow_741f .card_665d {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.sort_narrow_741f .white_7557 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.aside-steel-3778 {
    margin-top: 4rem;
}

.hero_motion_f819 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.accent-a71a {
    overflow-x: auto;
}

.component-a287 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.component-a287 thead {
    background: var(--accent-color);
}

.component-a287 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.component-a287 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.component-a287 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.component-a287 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.hero-2d9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper-6459 {
    max-width: 900px;
    margin: 0 auto;
}

.preview_d32d {
    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);
}

.preview_d32d:hover {
    border-color: var(--accent-color);
}

.modal_577f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.modal_577f h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.slider-7b48 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.preview_d32d.fn-active-0778 .slider-7b48 {
    transform: rotate(45deg);
}

.column_north_6c72 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.preview_d32d.fn-active-0778 .column_north_6c72 {
    max-height: 1000px;
}

.column_north_6c72 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.fast-d35c {
    padding: var(--section-padding);
}

.wide-8abe {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.photo-prev-0ba4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim-e05c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-e05c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title_center_8f10 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_clean_b51a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pagination-eec0 {
    font-size: 2rem;
}

.highlight_a50d {
    color: var(--text-white);
    margin: 0;
}

.white-932d {
    list-style: none;
    padding: 0;
}

.white-932d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.white-932d li:last-child {
    border-bottom: none;
}

.full_298a {
    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);
}

.full_298a p {
    color: var(--success-color);
    margin: 0;
}

.info_current_69da {
    margin-top: 3rem;
}

.bright_ef9b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.accordion-dbad {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accordion-dbad {
        grid-template-columns: repeat(2, 1fr);
    }
}

.white_c599 {
    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);
}

.west-760a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.white_c599 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tooltip-8227 {
    padding: var(--section-padding);
}

.west-bb5b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .west-bb5b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_6e7f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.input_6e7f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.block_large_7295 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chip-99d1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.notice-33ee {
    flex: 1;
}

.description_tiny_670a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.notice_lite_a7b0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.carousel_2210 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-0296 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-0296:last-child {
    border-bottom: none;
}

/* Comparison Section */
.gradient-beb0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.message-dark-28b0 {
    padding: var(--section-padding);
}

.prev-42c3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.banner_under_5e1f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_under_5e1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last-a819 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_f9e3, .right_f71e, .menu_4861 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.menu_4861 {
    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 */
.photo-893b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current_1e4f {
    margin: 2rem 0;
}

.search-8642 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_d55a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.basic-cee8 {
    list-style: none;
    padding: 0;
}

.basic-cee8 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;
}

.basic-cee8 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.basic-cee8 li:last-child {
    border-bottom: none;
}

.surface_narrow_7c49 {
    text-align: center;
    margin-top: 2rem;
}

.active_75cb {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.south-11b8 {
    padding: var(--section-padding);
}

.large-3a8a {
    margin: 2rem 0;
}

.item_a596 {
    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) {
    .item_a596 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.item_a596:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notification-red-7bb1 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.cold_2166 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.paragraph-a12a {
    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;
}

.blue_ff36 {
    flex: 1;
}

.disabled_pressed_d4da {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.wide-940d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.middle-a2eb {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.white-5843 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .white-5843 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.focus-0893 {
    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);
}

.focus-0893:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.focus-0893 .backdrop-short-758c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.focus-0893 .card_665d {
    color: var(--text-gray);
    font-size: 1rem;
}

.breadcrumb_static_0b82 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge_liquid_c0fa {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.badge_liquid_c0fa strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.nav-583a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .nav-583a {
        grid-template-columns: 1fr 1fr;
    }
}

.box_center_82f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-bright-ac0e {
    margin-bottom: 1.5rem;
}

.carousel-bright-ac0e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-bright-ac0e input,
.carousel-bright-ac0e 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;
}

.carousel-bright-ac0e input:focus,
.carousel-bright-ac0e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.static_74cc {
    width: 100%;
    margin-top: 1rem;
}

.table_34e2 {
    display: flex;
    align-items: center;
}

.cold_e2a9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.focus-68fc {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tabs-fast-b94f {
    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;
}

.smooth-32eb {
    color: var(--text-gray);
}

.hard_1788 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.dirty_91d7 {
    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);
}

.dirty_91d7 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.fixed_7fc0 {
    margin-top: 3rem;
}

.alert-2c73 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.south-3471 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-668f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.form_526b {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form_526b:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.pattern-51e2 {
    padding: var(--section-padding);
}

.summary_hard_2b09 {
    margin: 2rem 0;
}

.media_6106 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.backdrop-top-1c02 {
    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;
}

.backdrop-top-1c02:hover, .backdrop-top-1c02.fn-active-0778 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.east_c92f {
    display: none;
}

.east_c92f.fn-active-0778 {
    display: block;
}

.logo_advanced_6c38 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-8503 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.frame-old-2d1f h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.frame-old-2d1f ul {
    list-style: none;
    padding: 0;
}

.frame-old-2d1f ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.frame-old-2d1f ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pressed_0e89 {
    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 */
.blue-98fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame_new_4c8a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_01cf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.lower-7cc6 {
    color: var(--accent-color);
    margin: 0;
}

.detail_copper_62e0 {
    display: flex;
    gap: 1.5rem;
}

.message-e742 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.overlay_hard_462c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.steel_fd21 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.steel_fd21.motion-8af3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.steel_fd21.shadow_stone_77dc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.steel_fd21.text-pink-3c10 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.highlight_dynamic_1371 {
    margin-top: 2rem;
}

.list-bfdb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.layout-721f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .layout-721f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_1220 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.thumbnail_6210 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.button_prev_8636 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.pagination-bd27 {
    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 */
.grid-170e {
    padding: var(--section-padding);
}

.medium_c22b {
    margin: 2rem 0;
}

.rough_f9ab {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.panel_f2be {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.disabled-5790 {
    list-style: none;
    padding: 0;
}

.disabled-5790 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;
}

.disabled-5790 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.disabled-5790 li:last-child {
    border-bottom: none;
}

.input-green-3c6d {
    margin: 2rem 0;
}

.tall-5792 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar_be04 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .avatar_be04 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-wide-e319 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_stone_f396 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media-616f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.active-b4b1 {
    margin-top: 2rem;
}

.progress-thick-4d2e {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.plasma-6f8a {
    list-style: none;
    padding: 0;
}

.shadow-4e50 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.shadow-4e50 a {
    color: var(--accent-color);
    text-decoration: none;
}

.shadow-4e50 a:hover {
    text-decoration: underline;
}

.media-fluid-fdd0 {
    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 */
.article-49df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-99ac {
    margin: 2rem 0;
}

.focus-e439 {
    margin-bottom: 3rem;
}

.focus-e439 .column_d55a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gold-5f9f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.photo-ffa2 {
    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);
}

.photo-ffa2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.main_right_d48f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .main_right_d48f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_full_e465 {
    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 */
.message_wide_8abc {
    padding: var(--section-padding);
}

.pattern_copper_3019 {
    margin: 2rem 0;
}

.module-cb52 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled_1898 {
    overflow-x: auto;
    margin: 2rem 0;
}

.nav-small-cdcd {
    background: rgba(6, 182, 212, 0.1) !important;
}

.huge_8101 {
    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;
}

.text-f0fa {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.lite_af57 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .lite_af57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_last_4fe0 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_last_4fe0 .grid_silver_aa82 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.focus_last_4fe0 .slow-6160 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-fresh-4613 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.badge-lower-63f5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze-7367 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-7367 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.iron_866a {
    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;
}

.iron_866a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.active_eed5 {
    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);
}

.status_left_8a11 {
    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;
}

.status-f656 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade-narrow-d2a8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.green_fcbf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.info_7253 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.red_1630 {
    color: var(--text-white);
    font-weight: 600;
}

.white-14f9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.menu_small_2723 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu_small_2723 .under-e730 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tabs_ae9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs_ae9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-north-4138 {
    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);
}

.progress-north-4138:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress-north-4138 .backdrop-short-758c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.progress-north-4138 .card_665d {
    color: var(--text-gray);
    font-size: 1rem;
}

.modal-bottom-832b {
    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);
}

.feature_complex_7e2c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.feature_complex_7e2c strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.thumbnail_outer_c86e {
    margin: 2rem 0;
}

.lite_903a {
    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);
}

.lite_903a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.chip-silver-27de {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media_c257 {
    flex: 1;
}

.link_6fdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_715d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.out_c32a {
    margin: 2rem 0;
}

.tooltip_dirty_689a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip_dirty_689a .slow-6160 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.tooltip_dirty_689a .search-4c21 {
    color: var(--text-gray);
    margin: 0;
}

.panel_1870 {
    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);
}

.panel_1870 .accent_thick_5fed {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.overlay-fresh-4613 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.widget-8052 {
    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;
}

.tertiary-e402 {
    flex: 1;
}

.red_5cae {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.photo-lower-bc82 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.modal_d7a8 {
    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;
}

.card-d6ae {
    flex: 1;
}

.in-814b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.sort-stone-4cf5 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.feature_a7ec {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.hot-ac57 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.gallery_middle_5125 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery_middle_5125 .under-e730 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.liquid_3d01 {
    margin-top: 2rem;
}

.liquid_3d01 .bright_ef9b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.breadcrumb_full_f468 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev_bdc0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .prev_bdc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev_bdc0 .action_f8dd {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_first_f58c {
    margin: 2rem 0;
}

.border_smooth_c900 {
    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 */
.south_4eda {
    padding: var(--section-padding);
}

.block_c124 {
    margin-top: 1rem;
}

.row-871a {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.row-871a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.row-871a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.widget_8235 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_prev_63a0 {
    margin: 2rem 0;
}

.clean_653f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.dim-d5f6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.up-9ab3 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.banner-rough-b614 {
    margin: 2rem 0;
}

.content-aad4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.content-aad4 .column_d55a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form_full_1384 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form_full_1384 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tabs-fresh-2ca0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inner_13dc {
    color: var(--text-white);
    font-weight: 600;
}

.box_ca1d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-silver-30b5 {
    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);
}

.logo-silver-30b5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.accent_center_8ef3 {
    padding: var(--section-padding);
}

.modal_focused_7ef3 {
    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;
}

.modal_focused_7ef3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.action_f075 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action_f075 .west-760a {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_f075 .aside_old_bac4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image-stone-0dd9 {
    flex: 1;
}

.under-08a7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.module-mini-a44f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-mini-a44f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.module-mini-a44f li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.layout-ac77 {
    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);
}

.layout-ac77 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout-ac77 strong {
    color: var(--warning-color);
}

/* Slots Section */
.overlay_15af {
    padding: var(--section-padding);
}

.border_simple_e0b6 {
    margin: 2rem 0;
}

/* Table Games Section */
.hero_52c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_up_1c93 {
    margin: 2rem 0;
}

.module_3abf {
    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);
}

.module_3abf:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.module_3abf .video-under-f500 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module_3abf .breadcrumb_9774 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar_active_1697 {
    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);
}

.sidebar_active_1697 .accent_thick_5fed {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.border-clean-fc8e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_5221 {
    margin: 2rem 0;
}

.right-4d4e {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_pink_8779 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_9823 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_plasma_d97d {
    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);
}

.popup_plasma_d97d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.popup_plasma_d97d.fn-active-0778 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_e5d5 {
    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);
}

.hidden-fb02 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hidden-fb02 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.picture_944e {
    padding: var(--section-padding);
}

.column_2228 {
    margin: 2rem 0;
}

.north_b092 {
    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);
}

.north_b092:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .north_b092 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.left_0ccc {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tag-east-fd0c {
    flex: 1;
}

.progress_5ad8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup_0bc2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.center_8ef1 {
    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;
}

.focus_e453 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.warm_cb0a {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature_079c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tabs_medium_51a0 {
    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;
}

.tabs_medium_51a0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.title_narrow_5f60 {
    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);
}

.clean-ec72 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.clean-ec72 strong {
    color: var(--accent-color);
}

/* New Games Section */
.center_a6a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick_d380 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .thick_d380 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick_d380 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_brown_29fc {
    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;
}

.surface_brown_29fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool-e036 {
    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;
}

.simple_50a5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.progress_17e3 {
    font-size: 2rem;
}

.top-0548 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.background-f904 {
    flex: 1;
}

.heading_047a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.outline_1a0e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.paragraph_bc96 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.icon_ea81 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-center-7a6d {
    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;
}

.info_under_bb9b {
    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;
}

.info_under_bb9b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.huge-1318 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_365c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.lite-a5b4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .lite-a5b4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top_0139 {
    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);
}

.tiny_8fdb {
    color: var(--text-white);
    font-weight: 600;
}

.simple_392d {
    color: var(--accent-color);
    font-weight: 600;
}

.photo_6024 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.photo_6024 strong {
    color: var(--accent-color);
}

/* Security Section */
.small_c888 {
    padding: var(--section-padding);
}

/* Benefits Section */
.list-dca3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.fixed_39ed {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.modal-8520 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-8259 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.red-e13f {
    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) {
    .red-e13f {
        flex-direction: column;
        gap: 1rem;
    }
}

.red-e13f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.red-e13f .modal_d7a8 {
    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;
}

.red-e13f .card-d6ae {
    flex: 1;
}

.red-e13f .in-814b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.red-e13f .sort-stone-4cf5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.sidebar-bottom-df67 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar-bottom-df67 .table-short-5095 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar-bottom-df67 .chip-586c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-bottom-df67 .chip-586c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sidebar-bottom-df67 .chip-586c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.current_74bf {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.right_ec31 {
    padding: var(--section-padding);
}

.bronze-79a7 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bronze-79a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action_8d68 {
    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);
}

.action_8d68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.action_8d68 .first_e770 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_8d68 .bottom_995a {
    flex: 1;
}

.action_8d68 .border-huge-0806 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_8d68 .paper_74d6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accent-3364 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-3364 .accordion-3c40 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent-3364 .dirty-a043 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.accent-3364 .dirty-a043 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);
}

.accent-3364 .dirty-a043 li:last-child {
    border-bottom: none;
}

.accent-3364 .dirty-a043 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;
}

.accent-3364 .dirty-a043 li strong {
    color: var(--text-white);
}

.secondary-7152 {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.secondary-7152 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.secondary-7152 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.text-659f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-56e5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .modal-56e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay_51f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.overlay_51f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.center_ca69 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow_0ef1 {
    font-size: 2rem;
}

.disabled_middle_21d6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.caption-a50f {
    flex: 1;
}

.outline_top_4cd8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_top_4cd8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.outline_top_4cd8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.preview-86fc {
    margin-top: 3rem;
}

.rough_f9ab {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.panel_f2be {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled-5790 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled-5790 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.disabled-5790 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.disabled-5790 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.list-6682 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.frame-simple-b652 {
    margin: 2rem 0;
}

.accent-9742 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.accent-9742 .column_d55a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wood-76fa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wood-76fa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.first-91f8 {
    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);
}

.first-91f8:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.fresh_9ebb {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blue_3a2a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.media-inner-273b {
    padding: var(--section-padding);
}

.progress-east-19b0 {
    margin: 2rem 0;
}

.steel_46ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .steel_46ca {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steel_46ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-liquid-8416 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block-liquid-8416:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.top_77f1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.form_north_2101 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.icon-right-543f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.icon-right-543f.dropdown-0650 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.link_upper_6a80 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.wrapper-cold-e694 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.south_d4fb {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chip_slow_9d2d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.component-cool-4e5e {
    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);
}

.component-cool-4e5e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.component-cool-4e5e strong {
    color: var(--accent-color);
}

/* Update Log Section */
.summary-first-2051 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip_iron_f1d1 {
    margin: 2rem 0;
}

.disabled_hot_8acd {
    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) {
    .disabled_hot_8acd {
        flex-direction: column;
        gap: 1rem;
    }
}

.disabled_hot_8acd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled_hot_8acd::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);
}

.image_orange_da1e {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.lower_88d4 {
    flex: 1;
}

.card-next-ee4a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.border_bottom_3ffa {
    list-style: none;
    padding: 0;
    margin: 0;
}

.border_bottom_3ffa li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.text-iron-d7f8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid-a95e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gold_aa74 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gold_aa74 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected-3df0 {
    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);
}

.hero-6d13 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.over-11a0 {
    flex: 1;
}

.wood_8da7 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.media-4ddc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.heading-ae04 {
    margin-top: 2rem;
    text-align: center;
}

.simple-f491 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.simple-f491 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.panel_inner_3553 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_inner_3553 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-motion-4540 {
    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);
}

.tag-motion-4540:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tag-motion-4540 .accordion-c4f9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-motion-4540 .content-09a9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.tag-motion-4540 .modal-4e59 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.tag-motion-4540 .shadow-2897 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.slow_1c84 {
    padding: var(--section-padding);
}

.item-fde7 .smooth_c470 {
    flex: 1;
}

/* Promo Calendar Section */
.bright-4e62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item-253d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-253d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-complex-3c0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-c034 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.video_be66 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lower_5cf5 {
    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);
}

.static_b2ea {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.description_56ff {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.breadcrumb-9088 {
    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);
}

.breadcrumb-9088 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb-9088 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.tiny-04f3 {
    padding: var(--section-padding);
}

.detail-fresh-dd5e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .detail-fresh-dd5e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard-da6f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_green_9086 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption-left-a8a1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption-left-a8a1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_e940 {
    margin-top: 3rem;
}

.highlight_e940 .rough_f9ab {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.highlight_e940 .panel_f2be {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.highlight_e940 .disabled-5790 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.highlight_e940 .disabled-5790 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.highlight_e940 .disabled-5790 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.highlight_e940 .disabled-5790 li strong {
    color: var(--warning-color);
}

.feature-745d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.feature-745d strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.nav-acce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_07aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_07aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dynamic-1200 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-1200 .column_d55a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.breadcrumb-glass-8452 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav_over_6fa2 {
    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);
}

.nav_over_6fa2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.preview_bronze_5a57 {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_fd10 {
    flex: 1;
}

.west-2b61 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.gold_e35e {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.content-6601 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.list-606f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.lite-7459 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .lite-7459 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-fe0f {
    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-fe0f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shadow-1de7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message-327e {
    color: var(--text-gray);
    font-size: 1rem;
}

.badge_liquid_c0fa {
    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);
}

.yellow-de33 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.yellow-de33 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.filter_0be6 { 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; }
.menu_3f81, .gallery_a5c2 { max-width:100%; height:auto; }

.soft-27ac, .button_b2b3, .up-b7f2 { white-space:normal; }

.info-stale-647a,
.accent-6eec,
.section_first_b81e,
.panel_inner_3553,
.out_c32a,
.out_4b16 {
  flex-wrap:wrap;
}

[class*="grid"],
.lite-7459,
.steel_46ca,
.notification_5b07 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.pink-b418 img,
.accent-6eec img,
.west_633d img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.pagination_rough_b5a3, .hard-9b5c,
.white-622b, .nav_7ea9 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.accent-a71a { width:100%; overflow-x:auto; }
.accent-a71a table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.first_e53b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .first_e53b {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.input-51ca {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.accent_bright_fdac,
.table-3b24,
.background_34f0,
.tag_copper_cf2a,
.white-5843,
.lite-7459,
.steel_46ca,
.notification_5b07,
.over-c3b6,
.column_2228,
.first_e53b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .accent_bright_fdac,
  .table-3b24,
  .background_34f0,
  .tag_copper_cf2a,
  .white-5843,
  .lite-7459,
  .steel_46ca,
  .notification_5b07,
  .over-c3b6,
  .column_2228,
  .first_e53b {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.sort_narrow_741f,
.focus-0893,
.fast-fe0f,
.active_dark_befa,
.block-liquid-8416,
.notice-easy-2cda,
.north_b092,
.input-51ca {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.grid-4a00,
.icon_e5a4,
.module-198e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.grid-4a00 > *,
.icon_e5a4 > *,
.module-198e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 1320 */
.phantom-card-u1 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
