/* {$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;
}

.picture-basic-8ae9 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.picture_fluid_38d5 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .picture_fluid_38d5 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .picture_fluid_38d5 {
        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 */
.status_gold_efc5 {
    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);
}

.outline_dynamic_66de {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .outline_dynamic_66de {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .advanced-4ec0 {
        grid-column: 1;
    }
    
    .stone_a86b {
        grid-column: 2;
    }
    
    .caption-9952 {
        grid-column: 3;
    }
}

.advanced-4ec0 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.advanced-4ec0:hover img {
    transform: scale(1.05);
}

/* Navigation */
.tooltip_stone_62e1 {
    display: none;
}

@media (min-width: 1024px) {
    .tooltip_stone_62e1 {
        display: block;
    }
}

/* Grouped Navigation */
.white_4679 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.list-small-e0ef {
    position: relative;
}

.shade-6e91 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.list-small-e0ef .description_white_aefe {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.description_white_aefe {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.in-628d {
    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;
}

.in-628d:hover,
.in-628d.fn-active-4f72 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.clean-1ec6 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .clean-1ec6 {
        display: flex;
    }
}

/* Mobile Register Button */
.stone_a86b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .stone_a86b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.pagination_e9d6 {
    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;
}

.pagination_e9d6::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.6;
    animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

/* Mobile Menu */
.caption-9952 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .caption-9952 {
        display: none;
    }
}

.caption-9952 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.caption-9952.fn-active-4f72 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.caption-9952.fn-active-4f72 span:nth-child(2) {
    opacity: 0;
}

.caption-9952.fn-active-4f72 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.filter-6073 {
    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;
}

.filter-6073.fn-active-4f72 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.sidebar-old-267b {
    overflow: hidden;
}

.carousel_purple_af7a {
    list-style: none;
    padding: 0.75rem 0;
}

.block_87e7 {
    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;
}

.block_87e7:hover,
.block_87e7.fn-active-4f72 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.block_87e7.chip_out_4b1a {
    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;
}

.block_87e7.chip_out_4b1a::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Button Styles */
.pagination-4643 {
    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;
}

.nav_5fc6 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.nav_5fc6:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.backdrop-rough-cedd {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.backdrop-rough-cedd:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.complex_992f {
    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;
}

.complex_992f:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.soft_0368 {
    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;
}

.description-0bed {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.description-0bed:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.brown-5f9d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.brown-5f9d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hidden_east_6154 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hidden_east_6154: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);
}

.alert_fixed_9ea3 {
    font-size: 1em;
    font-weight: 700;
}

.item_826b {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hover_pro_30ab {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hover_pro_30ab::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;
}

.texture-b5d3 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .texture-b5d3 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.item_brown_3f85 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.blue_fbe4 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.fixed-c7a3 {
    margin-bottom: 2rem;
}

.tabs-7f30 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tabs-7f30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_thick_0f46 {
    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);
}

.detail_8562 {
    font-size: 1.5rem;
}

.detail_b7ca {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.image-9be0 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_277d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.dropdown_277d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.accent-slow-86a6 {
    text-align: center;
    margin-bottom: 3rem;
}

.silver_bc95 {
    margin-bottom: 1rem;
}

.info_wood_baca {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.modal_b77e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .modal_b77e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .modal_b77e.backdrop_d66a {
        direction: rtl;
    }
    
    .modal_b77e.backdrop_d66a > * {
        direction: ltr;
    }
}

.lite-6447 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.lite-6447:first-child {
    margin-top: 0;
}

.top-2050 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article_prev_5c5d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.article_prev_5c5d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.dim-e906 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dim-e906 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-down-b586 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-8a59 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-over-a356 {
    list-style: none;
}

.hero-over-a356 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-over-a356 li:last-child {
    border-bottom: none;
}

/* Games Features */
.banner-dim-9e8a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.dirty_ab45 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dim-3d7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.article_cool_7081 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.fresh-4555 {
    margin: 2rem 0;
}

.tooltip_brown_3670 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hero-stone-6277 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.smooth_400d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.menu_bronze_bb3b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.container_094c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_094c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-6b35 {
    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);
}

.hard-6b35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tiny_fa30 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.menu_c127 {
    font-size: 1.5rem;
}

.photo-black-6f96 {
    color: var(--accent-color);
    margin: 0;
}

.image-advanced-7b40 {
    list-style: none;
}

.image-advanced-7b40 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.image-advanced-7b40 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.backdrop-red-33f0 {
    margin: 2rem 0;
}

.notice-4ef7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fresh_a651 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fresh_a651 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_e8e5 {
    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);
}

.image_7c64 {
    font-size: 1.25rem;
}

.alert_fe75 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.progress_liquid_912e,
.item-plasma-9417 {
    text-align: center;
    margin: 2rem 0;
}

.element-b402,
.secondary-small-8fb7 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.progress_paper_04e5 {
    margin: 2rem 0;
    text-align: center;
}

.nav_pressed_5aa0 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav_pressed_5aa0::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;
}

.hovered_0656 {
    position: relative;
    z-index: 1;
}

.copper_60d0 {
    margin-bottom: 1rem;
}

.light_c540 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text_3d8c {
    margin-bottom: 3rem;
}

.item-upper-6331 {
    margin-top: 3rem;
}

.center-3b2e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .center-3b2e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.center-3b2e .footer_thick_0f46 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focus_952c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.column_4772 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.down_6d78 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.modal_5379 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .modal_5379 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal_5379 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.sort_bcb4 {
    margin-bottom: 1rem;
}

.dynamic-b44d img {
    margin-bottom: 1rem;
}

.text-purple-0b2c {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-d94c {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.popup-dynamic-7e55 {
    list-style: none;
}

.popup-dynamic-7e55 li {
    margin-bottom: 0.5rem;
}

.popup-dynamic-7e55 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.popup-dynamic-7e55 a:hover {
    color: var(--accent-color);
}

.bottom_21f3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.yellow-07e8 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.yellow-07e8:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.accordion_hard_b768 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.accordion_hard_b768 p {
    margin-bottom: 0.25rem;
}

.description_fast_6f73 {
    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) {
    .description_fast_6f73 {
        flex-direction: row;
    }
}

.in-eee4 {
    text-align: center;
}

@media (min-width: 768px) {
    .in-eee4 {
        text-align: left;
    }
}

.in-eee4 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.avatar_f350 {
    font-size: 0.75rem !important;
}

.dirty-091e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.article-fixed-d80c {
    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);
    }
}

.item-baf3 {
    animation: fadeInUp 0.6s ease-out;
}

.nav_d59d {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.active-3208 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-3208 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.container_pink_7777 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_pink_7777 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_fec4 {
    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);
}

.focus_fec4 .dim-3d7f {
    font-size: 1.25rem;
}

.focus_fec4 .advanced-8cb2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tag-bc85 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag-bc85 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid-8c31 {
    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);
}

.liquid-8c31:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.middle_6cd8 {
    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);
}

.alert-selected-95f2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.main_tall_4cba {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-052e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro_9dfd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pro_9dfd .article_cool_7081 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pro_9dfd .content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_current_07a6 {
    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);
}

.dark_35c3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.dark_35c3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dark_35c3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.backdrop_bb12 {
    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);
}

.caption-prev-06c1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hot_5f77 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hot_5f77 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hot_5f77 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);
}

.hot_5f77 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hot_5f77 input::placeholder {
    color: var(--text-muted);
}

.chip-8fb2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.message_017c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.message_017c input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.prev_478b {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.prev_478b:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.fresh_a651 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fresh_a651 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_e8e5 {
    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);
}

.glass_e8e5 .image_7c64 {
    font-size: 1.25rem;
}

.glass_e8e5 .alert_fe75 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.frame_d257 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_d473 {
    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);
}

.tall_d473 .dim-3d7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall_d473 .article_cool_7081 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tall_d473 .content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_6efd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_current_0f89 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slider_current_0f89 .sort-bb94 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.slider_current_0f89 .secondary-slow-313f {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_1c09 {
    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);
}

.fresh_85f6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fresh_85f6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_3eaa {
    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);
}

.gradient_3eaa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.header_prev_2a9d {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tertiary_7f3c {
    flex: 1;
}

.text_7ef6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pattern-purple-786e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tabs-hot-111c {
    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);
}

.tabs-hot-111c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.center-eb67 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .center-eb67 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex-ba85 {
    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);
}

.complex-ba85:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.overlay_outer_b6ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.out_51f4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.complex_e232 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.carousel-black-84cf {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.inner-d367 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green-cf72 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-af7c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-af7c .row_0aed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary-af7c .banner_new_20de {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-focused-ac75 {
    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);
}

.lite-279c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_0f5e {
    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);
}

.element_0f5e .dim-3d7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.element_0f5e .article_cool_7081 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element_0f5e .content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-clean-704a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar-clean-704a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search-edee {
    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);
}

.search-edee:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.row_gas_1658 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row_gas_1658 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-340e {
    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);
}

.badge-340e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under-f05d {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-under-fbc5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stone-6277 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.lite-7635 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.thumbnail-c1a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge-east-dd12 {
    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);
}

.badge-east-dd12:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out-1ed3 {
    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);
}

.item_eb0d {
    flex: 1;
}

.hard_0f0f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.first_c522 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.shade_fluid_254c {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid_dark_5274 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty-9920 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dirty-9920 .sort-bb94 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dirty-9920 .secondary-slow-313f {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-plasma-9417 {
    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);
}

.outline-1ac2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-1ac2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.prev-46a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev-46a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner_1312 {
    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);
}

.inner_1312:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-upper-ae85 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper-4547 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-pink-9eb9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.alert_simple_0e1d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slow-5252 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_1e60 {
    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);
}

.border-3e69 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination_white_1141 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip_center_95eb {
    color: var(--text-gray);
    line-height: 1.6;
}

.lite-279c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_0f5e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.element_0f5e .article_cool_7081 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.element_0f5e .content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-small-5ecd {
    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);
}

.shadow-down-4ae9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow-down-4ae9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow-down-4ae9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_steel_6f31 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thumbnail_steel_6f31:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_9ffd {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.filter-last-b416 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article-pressed-feae {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.red_a761 {
    padding: 1.5rem;
}

.layout-upper-d97d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disabled-light-3e96 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled-light-3e96 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;
}

.disabled-light-3e96 li:last-child {
    border-bottom: none;
}

.disabled-light-3e96 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.primary-bottom-39d3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .primary-bottom-39d3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer-4303 {
    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);
}

.outer-4303:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny-e419 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-paper-9b20 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chip_ad19 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline_9750 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fast-d899 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-b9a3 {
    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);
}

.content-fast-a505 {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange_14ba {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.solid_cfd6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_3dea {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.out-4084 {
    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);
}

.status_f395 {
    text-align: center;
}

.accent-75ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-b972 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.large_6207 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.green-6e68 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-6e68 .article_cool_7081 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.green-6e68 .content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_left_510b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .background_left_510b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .background_left_510b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-eb2b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo-eb2b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_current_cc0b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tall-c721 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.article_cool_7081 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.current_d078 {
    padding: 1.5rem;
}

.content_a511 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture-lower-21ae {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture-lower-21ae 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;
}

.picture-lower-21ae li:last-child {
    border-bottom: none;
}

.picture-lower-21ae li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.frame-right-8cd9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gold_8374 {
    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);
}

.gold_8374:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_stale_43ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus_right_6cb3 {
    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);
}

.middle_6cd8 {
    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;
}

.alert-selected-95f2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_tall_4cba {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_a65b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-bronze-1ab3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-c76a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_small_b6d3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tertiary-silver-5a1d {
    display: flex;
    gap: 1rem;
}

.tertiary-silver-5a1d .cool_cfe1 {
    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;
}

.motion-6b1f {
    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);
}

.hidden-aca6 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.steel-4db3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steel-4db3 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;
}

.steel-4db3 li:last-child {
    border-bottom: none;
}

.steel-4db3 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.pattern-9d56 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern-9d56 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pattern-9d56 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.under-b966 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.under-b966:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-last-8789 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.accent-a704 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.row_0aed {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.pro_0723 {
    font-size: 1rem;
}

.purple-0013 {
    padding: 1.5rem;
}

.banner_new_20de {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.box_yellow_f2a7 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.box_yellow_f2a7 .status_f395 {
    text-align: center;
}

.box_yellow_f2a7 .dim-b972 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.box_yellow_f2a7 .orange_2450 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.narrow-de01 {
    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);
}

.narrow-de01:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.banner_941f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_941f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_dynamic_5c91 {
    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);
}

.link_dynamic_5c91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_dark_b44d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_9825 {
    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);
}

.solid-bc1c {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-large-6170 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.panel-f6ec {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid_b608 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.down_6e41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-628e {
    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);
}

.title_53f3 {
    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;
}

.title_53f3.new_9484 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.title_53f3.light-b3e0 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.title_53f3.new-79f7 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.title_53f3.sidebar_3dc6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.title_53f3.nav-hot-f8a4 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.list_cool_07d6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.upper-33da {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-68e7 {
    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);
}

.table-fccd {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.iron_6efd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iron_6efd 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;
}

.iron_6efd li:last-child {
    border-bottom: none;
}

.iron_6efd li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.focus-bright-c9a1 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-bright-c9a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus-bright-c9a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-lite-6e91 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tabs-lite-6e91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs-lite-6e91.block-medium-0ef5 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tabs-lite-6e91.block-medium-0ef5 {
        grid-column: span 3;
    }
}

.border_9474 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tabs-lite-6e91.block-medium-0ef5 .border_9474 {
    background: rgba(6, 182, 212, 0.1);
}

.list-eb23 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.widget-2a9e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tabs-lite-6e91.block-medium-0ef5 .widget-2a9e {
    color: var(--info-color);
}

.label_ff34 {
    padding: 1.5rem;
    text-align: center;
}

.row_74e3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tabs-lite-6e91.block-medium-0ef5 .row_74e3 {
    color: var(--info-color);
}

.backdrop-295b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.background-22fb {
    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 */
.info_center_9951 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_center_9951 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-097d {
    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);
}

.form-097d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold_519f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_d473 {
    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);
}

.image_7c64 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-stone-af00 {
    flex: 1;
}

.notice-4ef7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.rough-525a {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_c28b {
    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);
}

.wood_98ae {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cool-5cd3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-fixed-d80c {
    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);
}

.section_06fd {
  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);
}

.section_06fd .status_f395 {
    text-align: center;
}

.section_06fd .accent-75ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.section_06fd .dim-b972 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.element_under_5f8d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs-2ba2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_21c4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_advanced_02d8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-9f35 {
    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);
}

.short_60fa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.blue-88bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-lite-5ccf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .grid-lite-5ccf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-lite-5ccf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.first-0df8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.first-0df8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_bf64 {
    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);
}

.clean-7749 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.status_over_8cf8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.panel-dirty-175b {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-dirty-175b.cold-eb74 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.panel-dirty-175b.header-72be {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.panel-dirty-175b.header-01b4 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.tooltip_pressed_12e5 {
    padding: 1.5rem;
    text-align: center;
}

.plasma-5b51 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heading_tiny_226c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.heading_tiny_226c .video_fluid_030c {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.breadcrumb_last_5cdc {
    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);
}

.breadcrumb_last_5cdc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.secondary_clean_3151 {
  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);
}

.grid_smooth_1cbd {
    text-align: center;
}

.grid_smooth_1cbd .accent-75ee {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.grid_smooth_1cbd .dim-b972 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tooltip-right-e0b5 { text-align: center; }
.frame-glass-12ea { text-align: left; }
.shade-clean-5486 { text-align: right; }

.accordion-746f { margin-bottom: 0; }
.brown_2da5 { margin-bottom: 0.5rem; }
.content_faf6 { margin-bottom: 1rem; }
.carousel_9231 { margin-bottom: 1.5rem; }
.row-hard-cf13 { margin-bottom: 2rem; }

.surface_f294 { margin-top: 0; }
.video-south-aad3 { margin-top: 0.5rem; }
.wide_cb75 { margin-top: 1rem; }
.dropdown_current_8ed3 { margin-top: 1.5rem; }
.message_old_a503 { margin-top: 2rem; }

.fn-hidden-4f72 { display: none; }
.fn-visible-4f72 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .hover_pro_30ab {
        padding: 6rem 0 3rem;
    }
    
    .texture-b5d3 {
        text-align: center;
    }
    
    .modal_b77e {
        text-align: center;
    }
    
    .tabs-7f30 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .status_gold_efc5,
    .filter-6073,
    .nav_pressed_5aa0,
    .down_6d78 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hover_pro_30ab {
        background: none;
    }
}

/* Providers Section */
.blue_8e9e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-red-3776 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-red-3776 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .status-red-3776 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-7e01 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fixed-7e01:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled-9e2d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tag-23b3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.border_3e6c {
    list-style: none;
    padding: 0;
}

.border_3e6c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.border_3e6c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.surface-plasma-1dff {
    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);
}

.surface-plasma-1dff p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.background-small-2023 {
    padding: var(--section-padding);
}

.footer-224a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-224a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-8b1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.avatar-8b1e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.background_tall_dd68 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.element-b7a9 {
    display: flex;
    flex-direction: column;
}

.title-b8ec {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pagination_fdef {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accordion_2110 {
    color: var(--accent-color);
}

.modal_soft_23bf {
    font-size: 1.25rem;
}

.secondary_bottom_084c {
    margin-bottom: 1rem;
}

.secondary_bottom_084c p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.disabled_huge_6a83 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.video_415a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.status_f395 {
    text-align: center;
}

.accent-75ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-b972 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.badge_cc40 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_complex_16b5 {
    margin: 2rem 0;
}

.menu-upper-f3c8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.menu-upper-f3c8 .dim-3d7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide-5f3c {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.fluid-d073 {
    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;
}

.fluid-d073:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box_e12d {
    font-size: 2rem;
}

.dropdown_ed57 {
    display: flex;
    flex-direction: column;
}

.pattern_static_c8d9 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hidden-stale-ffb8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.layout-9f48 {
    padding: var(--section-padding);
}

.steel_fd6d {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .steel_fd6d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steel_fd6d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.smooth-52ee {
    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);
}

.smooth-52ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.smooth-52ee .accent-75ee {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.smooth-52ee .dim-b972 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.smooth-52ee .gallery_b9db {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.short_c034 {
    margin-top: 4rem;
}

.hero-rough-8bec {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.dark-fe5b {
    overflow-x: auto;
}

.overlay-upper-6a4b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.overlay-upper-6a4b thead {
    background: var(--accent-color);
}

.overlay-upper-6a4b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.overlay-upper-6a4b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-upper-6a4b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.overlay-upper-6a4b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.primary_c5e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_3dc9 {
    max-width: 900px;
    margin: 0 auto;
}

.cool_c21c {
    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);
}

.cool_c21c:hover {
    border-color: var(--accent-color);
}

.section_iron_533c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.section_iron_533c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.down-4182 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.cool_c21c.fn-active-4f72 .down-4182 {
    transform: rotate(45deg);
}

.status_small_2e19 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.cool_c21c.fn-active-4f72 .status_small_2e19 {
    max-height: 1000px;
}

.status_small_2e19 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.label_light_a585 {
    padding: var(--section-padding);
}

.dark_35c3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.feature-43f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_7ea1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_7ea1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light-b2bf {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-bright-d52a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.article-simple-d3a2 {
    font-size: 2rem;
}

.narrow_6ff7 {
    color: var(--text-white);
    margin: 0;
}

.table_2004 {
    list-style: none;
    padding: 0;
}

.table_2004 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table_2004 li:last-child {
    border-bottom: none;
}

.column_ab10 {
    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);
}

.column_ab10 p {
    color: var(--success-color);
    margin: 0;
}

.grid-solid-b35b {
    margin-top: 3rem;
}

.hidden-aca6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pattern_f300 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pattern_f300 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.heading-last-67c1 {
    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);
}

.rough_a20f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.heading-last-67c1 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.frame-paper-1e99 {
    padding: var(--section-padding);
}

.secondary_lite_0d06 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_lite_0d06 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_26b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container_26b2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pink-eb9a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.list_e2d0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.disabled_active_c5a7 {
    flex: 1;
}

.down_506b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.yellow-2da2 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.mask_full_b0fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.input_c045 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.input_c045:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hot-34a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.complex_53ae {
    padding: var(--section-padding);
}

.card_top_3c44 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.label_fb61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_fb61 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-a488 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer_3b18, .disabled-north-0dbd, .logo-3549 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.logo-3549 {
    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 */
.list-blue-59e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-wood-3476 {
    margin: 2rem 0;
}

.hard-7344 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_plasma_2b43 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.nav-red-5546 {
    list-style: none;
    padding: 0;
}

.nav-red-5546 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;
}

.nav-red-5546 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.nav-red-5546 li:last-child {
    border-bottom: none;
}

.simple-c51a {
    text-align: center;
    margin-top: 2rem;
}

.hover-solid-4a06 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.container_tiny_9e9e {
    padding: var(--section-padding);
}

.block-c25f {
    margin: 2rem 0;
}

.carousel_liquid_f7a8 {
    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) {
    .carousel_liquid_f7a8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.carousel_liquid_f7a8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.disabled_full_9a8a {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.yellow-1fd8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.video_d6f7 {
    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;
}

.out-50e2 {
    flex: 1;
}

.title_690b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.active_ca39 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.motion_546b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.fluid_6d69 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .fluid_6d69 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.under-4095 {
    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);
}

.under-4095:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.under-4095 .accent-75ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.under-4095 .dim-b972 {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture_0730 {
    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);
}

.sort-pressed-ab39 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.sort-pressed-ab39 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.section-lite-96f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .section-lite-96f0 {
        grid-template-columns: 1fr 1fr;
    }
}

.status-soft-3b7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-31bf {
    margin-bottom: 1.5rem;
}

.caption-31bf label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.caption-31bf input,
.caption-31bf 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;
}

.caption-31bf input:focus,
.caption-31bf select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.item-current-df0c {
    width: 100%;
    margin-top: 1rem;
}

.paragraph_00d9 {
    display: flex;
    align-items: center;
}

.component-top-440a {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.hidden_b26d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.background_gold_aac0 {
    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;
}

.pagination-4e02 {
    color: var(--text-gray);
}

.thick-b352 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.prev-409f {
    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);
}

.prev-409f p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.over-a096 {
    margin-top: 3rem;
}

.mask_32e6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.filter_paper_b97f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-64ea {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.detail_dynamic_9eee {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail_dynamic_9eee:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.huge-c6b1 {
    padding: var(--section-padding);
}

.backdrop-fee3 {
    margin: 2rem 0;
}

.notification_tall_cedc {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.medium-b7ae {
    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;
}

.medium-b7ae:hover, .medium-b7ae.fn-active-4f72 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.sort-north-6b85 {
    display: none;
}

.sort-north-6b85.fn-active-4f72 {
    display: block;
}

.breadcrumb-prev-a4ca {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-9dcc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.last_1f07 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.last_1f07 ul {
    list-style: none;
    padding: 0;
}

.last_1f07 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.last_1f07 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.rough-d45e {
    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 */
.plasma-48dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-0cbd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_f41b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.brown_9a28 {
    color: var(--accent-color);
    margin: 0;
}

.last-bfb4 {
    display: flex;
    gap: 1.5rem;
}

.south_9d3a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box-copper-ae40 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.frame_966a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.frame_966a.copper_3f40 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.frame_966a.search_yellow_54fa {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.frame_966a.notice_north_1de2 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pattern_53fd {
    margin-top: 2rem;
}

.slider-iron-fa80 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.search_c195 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .search_c195 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-693f {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.dropdown-3029 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.module-mini-94ae {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.liquid-73fd {
    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 */
.bottom_7b28 {
    padding: var(--section-padding);
}

.picture_a75a {
    margin: 2rem 0;
}

.pressed-798d {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.tag-cb34 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.white-93d4 {
    list-style: none;
    padding: 0;
}

.white-93d4 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;
}

.white-93d4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.white-93d4 li:last-child {
    border-bottom: none;
}

.outline_new_c777 {
    margin: 2rem 0;
}

.rough_5333 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.lower-a5fc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lower-a5fc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent-edb5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_b3ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden_6542 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.badge_a4f5 {
    margin-top: 2rem;
}

.text_7ef6 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.secondary-2214 {
    list-style: none;
    padding: 0;
}

.progress_a41c {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.progress_a41c a {
    color: var(--accent-color);
    text-decoration: none;
}

.progress_a41c a:hover {
    text-decoration: underline;
}

.texture_dynamic_235c {
    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 */
.static_f88c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue_90ce {
    margin: 2rem 0;
}

.slow-1a3f {
    margin-bottom: 3rem;
}

.slow-1a3f .aside_plasma_2b43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.module-0b12 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.caption_f574 {
    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);
}

.caption_f574:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.component_653d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .component_653d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay-center-7eb1 {
    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 */
.item-11d9 {
    padding: var(--section-padding);
}

.dark-41de {
    margin: 2rem 0;
}

.rough-b9ad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.yellow-79df {
    overflow-x: auto;
    margin: 2rem 0;
}

.icon-95f4 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.green-1b56 {
    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;
}

.pink-067c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.fluid-f3ca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .fluid-f3ca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.south-1aca {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south-1aca .dim-3d7f {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.south-1aca .article_cool_7081 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_482a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.caption_4846 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_52e1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_52e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-lite-7534 {
    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;
}

.grid-lite-7534:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.block_pink_2f47 {
    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);
}

.hard-5613 {
    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;
}

.lite-8ff9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.center_2a3e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.table-huge-3045 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.basic_87b3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.easy-554e {
    color: var(--text-white);
    font-weight: 600;
}

.background-5507 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image-static-4b1a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.image-static-4b1a .cool_cfe1 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hovered_8a0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hovered_8a0e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-f8ed {
    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);
}

.item-f8ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-f8ed .accent-75ee {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.item-f8ed .dim-b972 {
    color: var(--text-gray);
    font-size: 1rem;
}

.logo-eb5d {
    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);
}

.caption-tiny-4e1b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.caption-tiny-4e1b strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.slow-5252 {
    margin: 2rem 0;
}

.video_1e60 {
    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);
}

.video_1e60:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.border-3e69 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solid_20d8 {
    flex: 1;
}

.pagination_white_1141 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip_center_95eb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.lite-279c {
    margin: 2rem 0;
}

.element_0f5e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_0f5e .article_cool_7081 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.element_0f5e .content_a511 {
    color: var(--text-gray);
    margin: 0;
}

.preview-small-5ecd {
    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);
}

.preview-small-5ecd .element-b402 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.pagination_482a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.out-1ed3 {
    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;
}

.item_eb0d {
    flex: 1;
}

.first_c522 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.shade_fluid_254c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.middle_6cd8 {
    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;
}

.photo_70cd {
    flex: 1;
}

.alert-selected-95f2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.main_tall_4cba {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.nav-c76a {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.component_small_b6d3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.tertiary-silver-5a1d {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tertiary-silver-5a1d .cool_cfe1 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.motion-6b1f {
    margin-top: 2rem;
}

.motion-6b1f .hidden-aca6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.description-13a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out-4084 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .out-4084 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out-4084 .status_f395 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_6207 {
    margin: 2rem 0;
}

.green-6e68 {
    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 */
.gallery_f69a {
    padding: var(--section-padding);
}

.current_d078 {
    margin-top: 1rem;
}

.picture-lower-21ae {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.picture-lower-21ae li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.picture-lower-21ae li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.widget-5e32 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_190e {
    margin: 2rem 0;
}

.description-selected-328e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.dark_5ccc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video_action_c546 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.secondary-b276 {
    margin: 2rem 0;
}

.mask-old-4748 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.mask-old-4748 .aside_plasma_2b43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery_0bdc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery_0bdc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.black_4cf3 {
    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);
}

.hot-bbe7 {
    color: var(--text-white);
    font-weight: 600;
}

.primary_cool_19cc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.surface-6e83 {
    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);
}

.surface-6e83 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.photo-small-ba6b {
    padding: var(--section-padding);
}

.notice_1b75 {
    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;
}

.notice_1b75:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.north_07f8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.north_07f8 .rough_a20f {
    font-size: 2rem;
    flex-shrink: 0;
}

.north_07f8 .surface_8cb3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.footer_outer_fcd5 {
    flex: 1;
}

.image_paper_2567 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lower_12ae {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower_12ae li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.lower_12ae li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focused-0d82 {
    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);
}

.focused-0d82 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused-0d82 strong {
    color: var(--warning-color);
}

/* Slots Section */
.tertiary-d070 {
    padding: var(--section-padding);
}

.inner-d367 {
    margin: 2rem 0;
}

/* Table Games Section */
.focused_9b74 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-cf72 {
    margin: 2rem 0;
}

.primary-af7c {
    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);
}

.primary-af7c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.primary-af7c .row_0aed {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.primary-af7c .banner_new_20de {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.column-focused-ac75 {
    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);
}

.column-focused-ac75 .element-b402 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.module_up_5f05 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade_huge_1136 {
    margin: 2rem 0;
}

.short_3294 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bottom-6d67 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.article_fe5e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button_lite_35aa {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.button_lite_35aa:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.button_lite_35aa.fn-active-4f72 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-8c26 {
    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);
}

.basic-d288 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.basic-d288 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.hidden-simple-897b {
    padding: var(--section-padding);
}

.modal-0690 {
    margin: 2rem 0;
}

.hero-in-3a03 {
    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);
}

.hero-in-3a03:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .hero-in-3a03 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.grid_2fc2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.pro_4946 {
    flex: 1;
}

.thick_1fc7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.small_282e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.description-hovered-a1fd {
    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;
}

.module_lower_cec2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup_3020 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hover_warm_3245 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sidebar-pressed-5b71 {
    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;
}

.sidebar-pressed-5b71:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pro-11e0 {
    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);
}

.accordion-d0b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion-d0b4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.inner_0978 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-pressed-f426 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shade-pressed-f426 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade-pressed-f426 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_88b3 {
    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_88b3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.chip-ec7a {
    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;
}

.fixed-0873 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.title-6c9e {
    font-size: 2rem;
}

.breadcrumb_dynamic_bf90 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.hot-838a {
    flex: 1;
}

.current_7d0a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.button-7bef {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.focused_0f50 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gold-f56f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.small_1368 {
    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;
}

.paper-79f4 {
    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;
}

.paper-79f4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wrapper_green_1bfd {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_95e7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_e96d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .plasma_e96d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.middle-6087 {
    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);
}

.hero-slow-cc15 {
    color: var(--text-white);
    font-weight: 600;
}

.current-1390 {
    color: var(--accent-color);
    font-weight: 600;
}

.hard_b103 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hard_b103 strong {
    color: var(--accent-color);
}

/* Security Section */
.panel_a489 {
    padding: var(--section-padding);
}

/* Benefits Section */
.avatar_1c0a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.media-short-d89b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.pagination_huge_001e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_silver_17f5 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.active-0119 {
    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) {
    .active-0119 {
        flex-direction: column;
        gap: 1rem;
    }
}

.active-0119:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active-0119 .middle_6cd8 {
    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;
}

.active-0119 .photo_70cd {
    flex: 1;
}

.active-0119 .alert-selected-95f2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.active-0119 .main_tall_4cba {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.right-d640 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.right-d640 .notice-4ef7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.right-d640 .frame_d257 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-d640 .frame_d257 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.right-d640 .frame_d257 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.avatar_88ef {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.red_36be {
    padding: var(--section-padding);
}

.hero-7e4b {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-7e4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-smooth-c7ec {
    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);
}

.sort-smooth-c7ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.sort-smooth-c7ec .hover-center-7fbb {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-smooth-c7ec .label-east-57df {
    flex: 1;
}

.sort-smooth-c7ec .sort-bb94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-smooth-c7ec .prev-1d36 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.blue-7c8e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue-7c8e .header_7256 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue-7c8e .complex-db02 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.blue-7c8e .complex-db02 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);
}

.blue-7c8e .complex-db02 li:last-child {
    border-bottom: none;
}

.blue-7c8e .complex-db02 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;
}

.blue-7c8e .complex-db02 li strong {
    color: var(--text-white);
}

.detail_active_fdd4 {
    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);
}

.detail_active_fdd4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_active_fdd4 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.upper-350c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_029b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box_029b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.right-6281 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.right-6281:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focus-light-7a12 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.red-de03 {
    font-size: 2rem;
}

.carousel_80b5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.disabled-huge-956b {
    flex: 1;
}

.copper_4787 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper_4787 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.copper_4787 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wrapper_6eac {
    margin-top: 3rem;
}

.pressed-798d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.tag-cb34 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.white-93d4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.white-93d4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.white-93d4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.white-93d4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.thumbnail-active-c497 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_9187 {
    margin: 2rem 0;
}

.basic-19cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.basic-19cb .aside_plasma_2b43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.badge_first_8d67 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .badge_first_8d67 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.over-e0aa {
    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);
}

.over-e0aa:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.video-4493 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-77fa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.huge_fbd3 {
    padding: var(--section-padding);
}

.status_3ec2 {
    margin: 2rem 0;
}

.module-smooth-e121 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .module-smooth-e121 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module-smooth-e121 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_dirty_bb11 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag_dirty_bb11:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.white-5cc6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.picture-light-b8a4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.red_469a {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.red_469a.form-light-dac5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.steel-9336 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.avatar-6745 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.hard_a83a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dirty-00cb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav-af6f {
    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);
}

.nav-af6f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav-af6f strong {
    color: var(--accent-color);
}

/* Update Log Section */
.layout_hot_b21f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-6c19 {
    margin: 2rem 0;
}

.hovered-1e12 {
    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) {
    .hovered-1e12 {
        flex-direction: column;
        gap: 1rem;
    }
}

.hovered-1e12:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hovered-1e12::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);
}

.popup_0d91 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-yellow-4baf {
    flex: 1;
}

.fresh_d46d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.grid-narrow-d51c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-narrow-d51c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.text_lower_70e1 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_slow_6fdc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-new-24a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .media-new-24a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right_ecce {
    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);
}

.component-pro-e2d9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-552e {
    flex: 1;
}

.slider_0872 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.border-white-29dd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.input-b96f {
    margin-top: 2rem;
    text-align: center;
}

.block_warm_362a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_warm_362a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.banner_941f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_941f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_dynamic_5c91 {
    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);
}

.link_dynamic_5c91:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link_dynamic_5c91 .tiny-e419 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link_dynamic_5c91 .header-paper-9b20 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.link_dynamic_5c91 .chip_ad19 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.link_dynamic_5c91 .outline_9750 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.advanced_2052 {
    padding: var(--section-padding);
}

.chip_9825 .wrapper_e55f {
    flex: 1;
}

/* Promo Calendar Section */
.hovered_d4a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-gold-49ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-gold-49ed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-hard-d629 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out_2552 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.gold_c011 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.active-76ae {
    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);
}

.secondary-04a7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline-glass-add6 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.panel-current-2cff {
    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);
}

.panel-current-2cff p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.panel-current-2cff strong {
    color: var(--accent-color);
}

/* Requirements Section */
.text_copper_c822 {
    padding: var(--section-padding);
}

.large-1c0f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .large-1c0f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-a3de {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-710f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.media-e0c3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-e0c3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-7fdf {
    margin-top: 3rem;
}

.filter-7fdf .pressed-798d {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.filter-7fdf .tag-cb34 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-7fdf .white-93d4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.filter-7fdf .white-93d4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.filter-7fdf .white-93d4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.filter-7fdf .white-93d4 li strong {
    color: var(--warning-color);
}

.search-stone-2254 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search-stone-2254 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.description_c533 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline_blue_0311 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_blue_0311 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion_4893 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_4893 .aside_plasma_2b43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.list-black-782c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mask_f10b {
    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);
}

.mask_f10b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.full-f872 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_paper_b9f7 {
    flex: 1;
}

.complex_ac53 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.label_760f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mask-pro-a3f9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.box_4848 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.advanced_65f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .advanced_65f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_8b31 {
    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);
}

.glass_8b31:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-top-405b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.narrow-2476 {
    color: var(--text-gray);
    font-size: 1rem;
}

.sort-pressed-ab39 {
    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);
}

.icon-52cc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.icon-52cc strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.picture_fluid_38d5 { 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; }
.dropdown_277d, .article_prev_5c5d { max-width:100%; height:auto; }

.pagination-4643, .complex_992f, .soft_0368 { white-space:normal; }

.texture-b5d3,
.modal_b77e,
.info_center_9951,
.banner_941f,
.lite-279c,
.grid-lite-5ccf {
  flex-wrap:wrap;
}

[class*="grid"],
.advanced_65f0,
.module-smooth-e121,
.center-3b2e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.hover_pro_30ab img,
.modal_b77e img,
.image-9be0 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.item_brown_3f85, .blue_fbe4,
.silver_bc95, .info_wood_baca {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.dark-fe5b { width:100%; overflow-x:auto; }
.dark-fe5b table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.status-red-3776 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .status-red-3776 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.fixed-7e01 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.steel_fd6d,
.notification-mini-da10,
.card_3bf0,
.backdrop-mini-aca8,
.fluid_6d69,
.advanced_65f0,
.module-smooth-e121,
.center-3b2e,
.secondary_clean_3151,
.modal-0690,
.status-red-3776 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .steel_fd6d,
  .notification-mini-da10,
  .card_3bf0,
  .backdrop-mini-aca8,
  .fluid_6d69,
  .advanced_65f0,
  .module-smooth-e121,
  .center-3b2e,
  .secondary_clean_3151,
  .modal-0690,
  .status-red-3776 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.smooth-52ee,
.under-4095,
.glass_8b31,
.footer_thick_0f46,
.tag_dirty_bb11,
.grid_smooth_1cbd,
.hero-in-3a03,
.fixed-7e01 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.shadow_9968,
.east_9c52,
.first-702b {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.shadow_9968 > *,
.east_9c52 > *,
.first-702b > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 0de5 */
.promo-block-b1 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.3;
}
