/* {$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;
}

.right_7682 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.avatar-iron-c3a1 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .avatar-iron-c3a1 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .avatar-iron-c3a1 {
        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 */
.menu-ece1 {
    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);
}

.gold_f1a7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .gold_f1a7 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .banner_last_9d2a {
        grid-column: 1;
    }
    
    .photo-light-7259 {
        grid-column: 2;
    }
    
    .smooth-01fd {
        grid-column: 3;
    }
}

.banner_last_9d2a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.banner_last_9d2a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.image-5919 {
    display: none;
}

@media (min-width: 1024px) {
    .image-5919 {
        display: block;
    }
}

/* Grouped Navigation */
.notification_a66f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.message_iron_66ca {
    position: relative;
}

.form_0943 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.message_iron_66ca .title_stale_6755 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.title_stale_6755 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.list_eb4d {
    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;
}

.list_eb4d:hover,
.list_eb4d.fn-active-0c11 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.card_2e04 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .card_2e04 {
        display: flex;
    }
}

/* Mobile Register Button */
.photo-light-7259 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .photo-light-7259 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.prev_c76e {
    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;
}

.prev_c76e::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 */
.smooth-01fd {
    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) {
    .smooth-01fd {
        display: none;
    }
}

.smooth-01fd span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.smooth-01fd.fn-active-0c11 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.smooth-01fd.fn-active-0c11 span:nth-child(2) {
    opacity: 0;
}

.smooth-01fd.fn-active-0c11 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.description_17ab {
    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;
}

.description_17ab.fn-active-0c11 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.hero_light_dd39 {
    overflow: hidden;
}

.hero_large_12bf {
    list-style: none;
    padding: 0.75rem 0;
}

.module-large-e0b1 {
    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;
}

.module-large-e0b1:hover,
.module-large-e0b1.fn-active-0c11 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.module-large-e0b1.orange-1763 {
    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;
}

.module-large-e0b1.orange-1763::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 */
.media_e790 {
    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;
}

.footer_1f1f {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.footer_1f1f:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.alert-dirty-fdbf {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.alert-dirty-fdbf:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.message-8130 {
    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;
}

.message-8130:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.sort_gas_8ae9 {
    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;
}

.card_hard_8fb0 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.card_hard_8fb0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.picture_bottom_c688 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.picture_bottom_c688:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.badge-focused-a21a {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.badge-focused-a21a: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);
}

.thick_4d66 {
    font-size: 1em;
    font-weight: 700;
}

.nav_center_67ee {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.header-yellow-68d2 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.header-yellow-68d2::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;
}

.dim-de9e {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .dim-de9e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.link-in-f571 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.row_east_91f2 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.summary_5fd5 {
    margin-bottom: 2rem;
}

.huge-1c70 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .huge-1c70 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel-72b2 {
    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);
}

.bronze_97ce {
    font-size: 1.5rem;
}

.texture-e6f4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.white-d934 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.label_medium_b742 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.label_medium_b742:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.south-500d {
    text-align: center;
    margin-bottom: 3rem;
}

.accent_wide_bd1c {
    margin-bottom: 1rem;
}

.element-stone-fea7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.simple_b04f {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .simple_b04f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .simple_b04f.image-2322 {
        direction: rtl;
    }
    
    .simple_b04f.image-2322 > * {
        direction: ltr;
    }
}

.texture_e604 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.texture_e604:first-child {
    margin-top: 0;
}

.section_bronze_33ae {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.fast_8041 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.fast_8041:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.prev_76c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev_76c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-fb65 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination-tall-9e00 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.small_8c5d {
    list-style: none;
}

.small_8c5d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.small_8c5d li:last-child {
    border-bottom: none;
}

/* Games Features */
.search_3354 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.article-action-82ce {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-316e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-f936 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.tabs-fabb {
    margin: 2rem 0;
}

.grid_933c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.card_d3cf {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.modal_d911 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.summary-bronze-2992 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.footer_pressed_f8fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_pressed_f8fe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-760d {
    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-760d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.cold_2f8c {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hover-1c10 {
    font-size: 1.5rem;
}

.banner_mini_8da9 {
    color: var(--accent-color);
    margin: 0;
}

.filter-bottom-12e2 {
    list-style: none;
}

.filter-bottom-12e2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.filter-bottom-12e2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.out-02c9 {
    margin: 2rem 0;
}

.clean_8e2c {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.carousel_advanced_4d89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .carousel_advanced_4d89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_gold_8889 {
    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);
}

.nav-black-e8a8 {
    font-size: 1.25rem;
}

.hover-fresh-4445 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.easy_4b50,
.chip_orange_4954 {
    text-align: center;
    margin: 2rem 0;
}

.outline_639b,
.over_79be {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.nav_liquid_7024 {
    margin: 2rem 0;
    text-align: center;
}

.gas_1747 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gas_1747::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.badge-663b {
    position: relative;
    z-index: 1;
}

.disabled-paper-2ada {
    margin-bottom: 1rem;
}

.link_b0e4 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.layout-under-5375 {
    margin-bottom: 3rem;
}

.progress-da13 {
    margin-top: 3rem;
}

.block-12f2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .block-12f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-12f2 .steel-72b2 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_f665 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fast-6c42 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.slider_left_3214 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.top-bafd {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .top-bafd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .top-bafd {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.disabled-white-860b {
    margin-bottom: 1rem;
}

.sidebar_orange_7aa1 img {
    margin-bottom: 1rem;
}

.accordion-48b6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_green_59a8 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.aside_wide_ba02 {
    list-style: none;
}

.aside_wide_ba02 li {
    margin-bottom: 0.5rem;
}

.aside_wide_ba02 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.aside_wide_ba02 a:hover {
    color: var(--accent-color);
}

.hover-tiny-63b2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.frame_d3dc {
    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);
}

.frame_d3dc:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.inner-9bab {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.inner-9bab p {
    margin-bottom: 0.25rem;
}

.surface-8d36 {
    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) {
    .surface-8d36 {
        flex-direction: row;
    }
}

.bronze_d66f {
    text-align: center;
}

@media (min-width: 768px) {
    .bronze_d66f {
        text-align: left;
    }
}

.bronze_d66f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shadow-9214 {
    font-size: 0.75rem !important;
}

.secondary_current_e1f2 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-f760 {
    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);
    }
}

.caption_213a {
    animation: fadeInUp 0.6s ease-out;
}

.logo-pressed-1404 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.narrow-3512 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-3512 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.notification_26e8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_26e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-inner-1377 {
    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);
}

.detail-inner-1377 .feature-316e {
    font-size: 1.25rem;
}

.detail-inner-1377 .action_b39d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.slider_dim_98bb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slider_dim_98bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east-aae1 {
    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);
}

.east-aae1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-0b45 {
    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);
}

.component_lite_8e6f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pagination_5c56 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black-6665 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.chip_selected_1efa {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip_selected_1efa .tag-f936 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.chip_selected_1efa .left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
}

.simple-d3ac {
    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);
}

.small-88b0 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.small-88b0 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.small-88b0 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.gold-b290 {
    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);
}

.menu-6f94 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fast-0ca4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fast-0ca4 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fast-0ca4 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);
}

.fast-0ca4 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fast-0ca4 input::placeholder {
    color: var(--text-muted);
}

.complex-a9a8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.modal_da9d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.modal_da9d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.article-tiny-d96d {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.article-tiny-d96d:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.carousel_advanced_4d89 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_advanced_4d89 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_gold_8889 {
    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);
}

.thumbnail_gold_8889 .nav-black-e8a8 {
    font-size: 1.25rem;
}

.thumbnail_gold_8889 .hover-fresh-4445 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.section_0a75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-up-7945 {
    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);
}

.tertiary-up-7945 .feature-316e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-up-7945 .tag-f936 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary-up-7945 .left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient_active_688d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-motion-5f33 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-motion-5f33 .accent-6343 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.footer-motion-5f33 .dynamic_beb9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple_940c {
    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);
}

.summary_7d6f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .summary_7d6f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light-d645 {
    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);
}

.light-d645:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_ebb3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.stale_aa32 {
    flex: 1;
}

.stale_db64 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gallery_mini_1b03 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fast_754d {
    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);
}

.fast_754d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.clean_3341 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .clean_3341 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_26b9 {
    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);
}

.item_26b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center_f74f {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar_west_239d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-35e0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.plasma-fac4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper_fec8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_dirty_3604 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-brown-76b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.info-brown-76b4 .icon_simple_2c3c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-brown-76b4 .icon-light-868c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hard-030e {
    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);
}

.liquid-c818 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static_7cea {
    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);
}

.static_7cea .feature-316e {
    font-size: 2rem;
    flex-shrink: 0;
}

.static_7cea .tag-f936 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.static_7cea .left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-14ae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-14ae {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-east-2be7 {
    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);
}

.article-east-2be7:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.input_9ec3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_9ec3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_0e01 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.overlay_0e01:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover_full_8776 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent-5ced {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card_d3cf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.sort_c195 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.hovered_a99f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-8bf5 {
    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);
}

.button-8bf5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-steel-50f4 {
    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);
}

.badge_clean_d1fa {
    flex: 1;
}

.video_429e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.steel-f213 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.disabled_aa1d {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-top-67e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-large-2564 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-large-2564 .accent-6343 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image-large-2564 .dynamic_beb9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip_orange_4954 {
    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);
}

.main-simple-5291 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-simple-5291 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.slider-white-d792 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-white-d792 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.next-a505 {
    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);
}

.next-a505:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas_a86f {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_south_d9b2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form_easy_b795 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.large_3f0c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.grid_iron_3130 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade-next-19c9 {
    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);
}

.hovered_427a {
    font-size: 2rem;
    flex-shrink: 0;
}

.row-west-a772 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.basic-8d17 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-c818 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.static_7cea {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.static_7cea .tag-f936 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.static_7cea .left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
}

.old_6d7a {
    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);
}

.detail-copper-22e8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-copper-22e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-copper-22e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-new-f924 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.paragraph-new-f924:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.photo_medium_cf9e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.table_rough_ef97 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gallery_47ad {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bottom_ce26 {
    padding: 1.5rem;
}

.liquid-78f0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heading_9d2e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading_9d2e 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;
}

.heading_9d2e li:last-child {
    border-bottom: none;
}

.heading_9d2e li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.input_plasma_7b73 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_plasma_7b73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-dynamic-4f96 {
    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);
}

.photo-dynamic-4f96:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-upper-6527 {
    font-size: 2rem;
    flex-shrink: 0;
}

.west-5c50 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail_liquid_2eb3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article-hot-2752 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wide-05d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient-767b {
    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);
}

.detail_ee30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel_8957 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface_west_cc42 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-148e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dark-5a72 {
    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);
}

.green_953a {
    text-align: center;
}

.surface_middle_bfc9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.copper_8b30 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider_warm_ff86 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article_tall_b37f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article_tall_b37f .tag-f936 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.article_tall_b37f .left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_new_43e3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_new_43e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_new_43e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_3305 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.container_3305:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.chip-ae83 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow_67e9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tag-f936 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.plasma-c0b1 {
    padding: 1.5rem;
}

.left_c296 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.purple_a117 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purple_a117 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;
}

.purple_a117 li:last-child {
    border-bottom: none;
}

.purple_a117 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.wrapper_0e3e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.action_cb89 {
    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);
}

.action_cb89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_green_87d9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_701a {
    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);
}

.summary-0b45 {
    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;
}

.component_lite_8e6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination_5c56 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-36f2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white-6eb0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.orange_2c18 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic_a8da {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.green-741c {
    display: flex;
    gap: 1rem;
}

.green-741c .preview_8909 {
    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;
}

.dirty-7b5c {
    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);
}

.tag_e440 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.container-00cf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-00cf 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;
}

.container-00cf li:last-child {
    border-bottom: none;
}

.container-00cf li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.shade_9920 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shade_9920 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade_9920 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_center_1190 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.article_center_1190:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_3453 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.table-fluid-6bd1 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.icon_simple_2c3c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.north_2de9 {
    font-size: 1rem;
}

.feature-d204 {
    padding: 1.5rem;
}

.icon-light-868c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tag_b26c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tag_b26c .green_953a {
    text-align: center;
}

.tag_b26c .copper_8b30 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.tag_b26c .focus-medium-4e19 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.caption_f030 {
    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);
}

.caption_f030:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.accent_liquid_ff0f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_liquid_ff0f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_2266 {
    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);
}

.header_2266:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-a34c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-f346 {
    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);
}

.fresh_f30f {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_6fd9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search_right_57a9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_thick_39ac {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar-4764 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box_6182 {
    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);
}

.wrapper_483a {
    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;
}

.wrapper_483a.slider_788e {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.wrapper_483a.short_9366 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.wrapper_483a.out_0e84 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.wrapper_483a.photo-gas-5f81 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.wrapper_483a.carousel-b2a5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.first_d3b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action-ec4f {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean_79af {
    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);
}

.layout_wide_33c2 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gradient_active_688d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient_active_688d 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;
}

.gradient_active_688d li:last-child {
    border-bottom: none;
}

.gradient_active_688d li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.item_narrow_c85a {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .item_narrow_c85a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .item_narrow_c85a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption_green_1836 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.caption_green_1836:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_green_1836.module-0ced {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .caption_green_1836.module-0ced {
        grid-column: span 3;
    }
}

.icon-5fa5 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.caption_green_1836.module-0ced .icon-5fa5 {
    background: rgba(6, 182, 212, 0.1);
}

.short_3682 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gradient_next_c564 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.caption_green_1836.module-0ced .gradient_next_c564 {
    color: var(--info-color);
}

.pagination-motion-b814 {
    padding: 1.5rem;
    text-align: center;
}

.paper-9264 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.caption_green_1836.module-0ced .paper-9264 {
    color: var(--info-color);
}

.logo-e504 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.copper_8728 {
    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 */
.component-fad3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-fad3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-center-ca11 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.block-center-ca11:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop-large-6198 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-up-7945 {
    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);
}

.nav-black-e8a8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid_7d26 {
    flex: 1;
}

.clean_8e2c {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.progress_9adf {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav_be18 {
    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);
}

.logo_d31b {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.soft-f194 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-f760 {
    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);
}

.upper_a9b4 {
  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);
}

.upper_a9b4 .green_953a {
    text-align: center;
}

.upper_a9b4 .surface_middle_bfc9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.upper_a9b4 .copper_8b30 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box_dark_9050 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-stone-1d55 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-gold-5c72 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary-fresh-5b61 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-lower-cf3a {
    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);
}

.pattern-400d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter-cold-7ca0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-b7a5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-b7a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-b7a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black_278f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.black_278f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.steel_f8b2 {
    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);
}

.accordion-2fd6 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.carousel_new_bc09 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tertiary_4c79 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tertiary_4c79.purple_c588 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary_4c79.outer-6edc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tertiary_4c79.frame_f255 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.list-hard-0eba {
    padding: 1.5rem;
    text-align: center;
}

.accent_smooth_b8f1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown_39c4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dropdown_39c4 .block-black-f21e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.table_mini_523d {
    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);
}

.table_mini_523d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.red_4322 {
  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);
}

.slider_5bb0 {
    text-align: center;
}

.slider_5bb0 .surface_middle_bfc9 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.slider_5bb0 .copper_8b30 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.menu-dirty-354a { text-align: center; }
.bronze_c98b { text-align: left; }
.modal_current_969d { text-align: right; }

.article_ebcf { margin-bottom: 0; }
.card_f29d { margin-bottom: 0.5rem; }
.focus-566b { margin-bottom: 1rem; }
.title-7aa2 { margin-bottom: 1.5rem; }
.stone_f3c3 { margin-bottom: 2rem; }

.fast_9a99 { margin-top: 0; }
.dropdown_wood_d4a3 { margin-top: 0.5rem; }
.notification-lite-31af { margin-top: 1rem; }
.medium-60c7 { margin-top: 1.5rem; }
.first-1b1b { margin-top: 2rem; }

.fn-hidden-0c11 { display: none; }
.fn-visible-0c11 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .header-yellow-68d2 {
        padding: 6rem 0 3rem;
    }
    
    .dim-de9e {
        text-align: center;
    }
    
    .simple_b04f {
        text-align: center;
    }
    
    .huge-1c70 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .menu-ece1,
    .description_17ab,
    .gas_1747,
    .slider_left_3214 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .header-yellow-68d2 {
        background: none;
    }
}

/* Providers Section */
.bright_61a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thick-3af0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thick-3af0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-3af0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-out-b0cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb-out-b0cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress_thick_bb5c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-a318 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tabs-paper-5f76 {
    list-style: none;
    padding: 0;
}

.tabs-paper-5f76 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tabs-paper-5f76 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.footer_fa7e {
    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);
}

.footer_fa7e p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.old_2e4f {
    padding: var(--section-padding);
}

.sidebar_20cb {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_20cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_09fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wood_09fe:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blue_4fc8 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.accordion_last_0d68 {
    display: flex;
    flex-direction: column;
}

.wood_590a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pagination_64ff {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shadow_eb70 {
    color: var(--accent-color);
}

.highlight-0abd {
    font-size: 1.25rem;
}

.first_4fbd {
    margin-bottom: 1rem;
}

.first_4fbd p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.image_hot_ed96 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.east-69aa {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.green_953a {
    text-align: center;
}

.surface_middle_bfc9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.copper_8b30 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.overlay_bright_611a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_cfcc {
    margin: 2rem 0;
}

.sort-soft-b630 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.sort-soft-b630 .feature-316e {
    font-size: 2rem;
    flex-shrink: 0;
}

.motion-5728 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.sort_stale_be87 {
    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;
}

.sort_stale_be87:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.text-dirty-1cb4 {
    font-size: 2rem;
}

.under-b32a {
    display: flex;
    flex-direction: column;
}

.row-6298 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.list_0ceb {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.texture_bronze_ee09 {
    padding: var(--section-padding);
}

.box-dirty-b2f6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .box-dirty-b2f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .box-dirty-b2f6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_84d2 {
    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);
}

.gold_84d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold_84d2 .surface_middle_bfc9 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.gold_84d2 .copper_8b30 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.gold_84d2 .container_warm_9a5e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.action-400d {
    margin-top: 4rem;
}

.breadcrumb-c9e1 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.label_north_d121 {
    overflow-x: auto;
}

.wrapper_center_4df6 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.wrapper_center_4df6 thead {
    background: var(--accent-color);
}

.wrapper_center_4df6 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.wrapper_center_4df6 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_center_4df6 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.wrapper_center_4df6 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.main-short-f029 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_active_9519 {
    max-width: 900px;
    margin: 0 auto;
}

.surface_pink_57a0 {
    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);
}

.surface_pink_57a0:hover {
    border-color: var(--accent-color);
}

.input-full-a212 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.input-full-a212 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.slider-simple-6936 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.surface_pink_57a0.fn-active-0c11 .slider-simple-6936 {
    transform: rotate(45deg);
}

.caption-slow-8385 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.surface_pink_57a0.fn-active-0c11 .caption-slow-8385 {
    max-height: 1000px;
}

.caption-slow-8385 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.slow_833c {
    padding: var(--section-padding);
}

.small-88b0 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.first_3d6e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-current-8d38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-current-8d38 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pressed_086b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_new_e4ed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.slider-basic-8671 {
    font-size: 2rem;
}

.info_warm_c8e6 {
    color: var(--text-white);
    margin: 0;
}

.header-short-2857 {
    list-style: none;
    padding: 0;
}

.header-short-2857 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-short-2857 li:last-child {
    border-bottom: none;
}

.shadow-1803 {
    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);
}

.shadow-1803 p {
    color: var(--success-color);
    margin: 0;
}

.message-2c44 {
    margin-top: 3rem;
}

.tag_e440 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.chip-0979 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .chip-0979 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip-clean-953c {
    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);
}

.next_219f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chip-clean-953c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.hidden_c10a {
    padding: var(--section-padding);
}

.pattern_dc61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_dc61 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown_c2f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.brown_c2f0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slider-72ed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-469c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.caption_ebdf {
    flex: 1;
}

.overlay-liquid-7ee1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background_71bc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.media_hard_64a1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-bottom-470a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-bottom-470a:last-child {
    border-bottom: none;
}

/* Comparison Section */
.south_fca9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.motion-d0ad {
    padding: var(--section-padding);
}

.paper_c6ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.warm-abe6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm-abe6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.east-1643 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-slow-3f4f, .iron-a644, .icon_static_3021 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.icon_static_3021 {
    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 */
.old-9ac5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern_6141 {
    margin: 2rem 0;
}

.tall-e954 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_blue_6b0c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.container-1642 {
    list-style: none;
    padding: 0;
}

.container-1642 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;
}

.container-1642 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.container-1642 li:last-child {
    border-bottom: none;
}

.focus-fb28 {
    text-align: center;
    margin-top: 2rem;
}

.row_easy_5db6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.photo-up-1e86 {
    padding: var(--section-padding);
}

.inner-3024 {
    margin: 2rem 0;
}

.caption-b506 {
    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) {
    .caption-b506 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.caption-b506:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.menu_stale_bc9b {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.overlay_3459 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.header_4291 {
    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;
}

.label_1d82 {
    flex: 1;
}

.popup-south-e1e7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.iron-bbbb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.silver_e195 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.out_b448 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .out_b448 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.outline-inner-89fe {
    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);
}

.outline-inner-89fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.outline-inner-89fe .surface_middle_bfc9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline-inner-89fe .copper_8b30 {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture-smooth-51c1 {
    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);
}

.outline_yellow_c6d9 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.outline_yellow_c6d9 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.stale-1da2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .stale-1da2 {
        grid-template-columns: 1fr 1fr;
    }
}

.hidden_pink_4ed1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.blue-aca4 {
    margin-bottom: 1.5rem;
}

.blue-aca4 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blue-aca4 input,
.blue-aca4 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;
}

.blue-aca4 input:focus,
.blue-aca4 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fresh-fb5d {
    width: 100%;
    margin-top: 1rem;
}

.focus_e887 {
    display: flex;
    align-items: center;
}

.thumbnail_west_7565 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.right-9dd6 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.fixed-ffed {
    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;
}

.content-6f2a {
    color: var(--text-gray);
}

.column-7cbf {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.alert-wood-026a {
    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);
}

.alert-wood-026a p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.header-607b {
    margin-top: 3rem;
}

.inner-0653 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.tooltip-current-f716 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_63d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.last-ee5a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.last-ee5a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tooltip-b607 {
    padding: var(--section-padding);
}

.info_2146 {
    margin: 2rem 0;
}

.purple_a585 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.background_green_a6cd {
    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;
}

.background_green_a6cd:hover, .background_green_a6cd.fn-active-0c11 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.upper-cdd7 {
    display: none;
}

.upper-cdd7.fn-active-0c11 {
    display: block;
}

.hover-439b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard_5a62 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fresh-f8fc h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.fresh-f8fc ul {
    list-style: none;
    padding: 0;
}

.fresh-f8fc ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.fresh-f8fc ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.modal_thick_0771 {
    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 */
.disabled_c25e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_gas_61eb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-0628 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.out_3694 {
    color: var(--accent-color);
    margin: 0;
}

.lite-5147 {
    display: flex;
    gap: 1.5rem;
}

.menu_cdc9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tag-ad8e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.button_yellow_ab3e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.button_yellow_ab3e.complex-b256 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.button_yellow_ab3e.pattern-complex-6dc8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.button_yellow_ab3e.main_fd9d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hidden_advanced_6414 {
    margin-top: 2rem;
}

.brown-cfa1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar-action-99b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .avatar-action-99b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-2668 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.east_8238 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.full-40d1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.selected-9f30 {
    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 */
.picture-f03a {
    padding: var(--section-padding);
}

.background_wood_2cd6 {
    margin: 2rem 0;
}

.rough-1a8b {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.avatar-7396 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.hero-b863 {
    list-style: none;
    padding: 0;
}

.hero-b863 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;
}

.hero-b863 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.hero-b863 li:last-child {
    border-bottom: none;
}

.header-8e43 {
    margin: 2rem 0;
}

.logo_smooth_d559 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.title_hot_12f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title_hot_12f6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-up-9843 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold_c9d6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.panel-4b58 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pagination-paper-54bc {
    margin-top: 2rem;
}

.stale_db64 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.advanced-ac8f {
    list-style: none;
    padding: 0;
}

.backdrop-1aea {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.backdrop-1aea a {
    color: var(--accent-color);
    text-decoration: none;
}

.backdrop-1aea a:hover {
    text-decoration: underline;
}

.header_ca5f {
    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 */
.hover-92c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-stale-8598 {
    margin: 2rem 0;
}

.gallery_motion_9f83 {
    margin-bottom: 3rem;
}

.gallery_motion_9f83 .message_blue_6b0c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.warm-ee0c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bottom_8bf9 {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.bottom_8bf9:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.title-new-8d87 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .title-new-8d87 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph-fluid-fe11 {
    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 */
.border-b45b {
    padding: var(--section-padding);
}

.copper_1395 {
    margin: 2rem 0;
}

.label-complex-bd41 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.label-75cf {
    overflow-x: auto;
    margin: 2rem 0;
}

.bronze_6e56 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.mask_slow_9ac3 {
    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;
}

.media-5b23 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.grid_c8b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .grid_c8b9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_2c2f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_2c2f .feature-316e {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.plasma_2c2f .tag-f936 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-middle-8ff2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.white-1f89 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_a0ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input_a0ab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_motion_539d {
    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;
}

.detail_motion_539d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.easy_60a7 {
    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);
}

.box-0f34 {
    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;
}

.out_b7c3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tag-2ad0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.filter-3a26 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-fde0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-pressed-1f6e {
    color: var(--text-white);
    font-weight: 600;
}

.light-da27 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.accent-plasma-3095 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accent-plasma-3095 .preview_8909 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.surface_d5f6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .surface_d5f6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.top_3932 {
    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);
}

.top_3932:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top_3932 .surface_middle_bfc9 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.top_3932 .copper_8b30 {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph-steel-62fa {
    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);
}

.in-18ef {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.in-18ef strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.grid_iron_3130 {
    margin: 2rem 0;
}

.shade-next-19c9 {
    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);
}

.shade-next-19c9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hovered_427a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link_narrow_e188 {
    flex: 1;
}

.row-west-a772 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.basic-8d17 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.liquid-c818 {
    margin: 2rem 0;
}

.static_7cea {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.static_7cea .tag-f936 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.static_7cea .left_c296 {
    color: var(--text-gray);
    margin: 0;
}

.old_6d7a {
    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);
}

.old_6d7a .outline_639b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.video-middle-8ff2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.notification-steel-50f4 {
    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;
}

.badge_clean_d1fa {
    flex: 1;
}

.steel-f213 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.disabled_aa1d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.summary-0b45 {
    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;
}

.alert-e327 {
    flex: 1;
}

.component_lite_8e6f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.pagination_5c56 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.orange_2c18 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.dynamic_a8da {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.green-741c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.green-741c .preview_8909 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dirty-7b5c {
    margin-top: 2rem;
}

.dirty-7b5c .tag_e440 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.heading-2f8c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark-5a72 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dark-5a72 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-5a72 .green_953a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_warm_ff86 {
    margin: 2rem 0;
}

.article_tall_b37f {
    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 */
.panel-5911 {
    padding: var(--section-padding);
}

.plasma-c0b1 {
    margin-top: 1rem;
}

.purple_a117 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.purple_a117 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.purple_a117 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.video_8861 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-00fd {
    margin: 2rem 0;
}

.alert_568b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.pressed-3b3c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.south-0720 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.light_8e78 {
    margin: 2rem 0;
}

.shadow-b443 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shadow-b443 .message_blue_6b0c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary_smooth_a8a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tertiary_smooth_a8a1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light_b3aa {
    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);
}

.chip_stone_f6a9 {
    color: var(--text-white);
    font-weight: 600;
}

.nav_94cc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.dark_2553 {
    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);
}

.dark_2553 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.item-8600 {
    padding: var(--section-padding);
}

.button_e3f5 {
    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;
}

.button_e3f5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.menu_884c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu_884c .next_219f {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_884c .border_top_4351 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.title-bc4d {
    flex: 1;
}

.secondary-up-c728 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notice_south_df5b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice_south_df5b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.notice_south_df5b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.outline-e41d {
    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);
}

.outline-e41d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.outline-e41d strong {
    color: var(--warning-color);
}

/* Slots Section */
.thick_60a8 {
    padding: var(--section-padding);
}

.wrapper_fec8 {
    margin: 2rem 0;
}

/* Table Games Section */
.description_32aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_dirty_3604 {
    margin: 2rem 0;
}

.info-brown-76b4 {
    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);
}

.info-brown-76b4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.info-brown-76b4 .icon_simple_2c3c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-brown-76b4 .icon-light-868c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hard-030e {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.hard-030e .outline_639b {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.north-1c64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-glass-1c9f {
    margin: 2rem 0;
}

.breadcrumb_e3fe {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_e3f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input-fluid-a75e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-bright-989b {
    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);
}

.summary-bright-989b:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.summary-bright-989b.fn-active-0c11 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-e421 {
    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);
}

.light_9700 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.light_9700 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.input_0dbd {
    padding: var(--section-padding);
}

.tertiary-625a {
    margin: 2rem 0;
}

.heading-current-efb7 {
    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);
}

.heading-current-efb7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .heading-current-efb7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.full-194f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.outer_88a1 {
    flex: 1;
}

.south-6e44 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature_smooth_d450 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.carousel_fluid_ec65 {
    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;
}

.tertiary-ae13 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.small_6197 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.row_left_5c79 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hover_new_b2cb {
    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;
}

.hover_new_b2cb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.top_2742 {
    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);
}

.input_slow_48b4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input_slow_48b4 strong {
    color: var(--accent-color);
}

/* New Games Section */
.media_middle_896e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light-f353 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .light-f353 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .light-f353 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_d775 {
    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;
}

.backdrop_d775:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.paper-95c7 {
    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;
}

.container-4120 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.pattern_medium_7b02 {
    font-size: 2rem;
}

.focus_under_16b7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.outer_e85c {
    flex: 1;
}

.progress-3af6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.cold_a77f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.description_690e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo_43ab {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lower_62f6 {
    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;
}

.logo-0db4 {
    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;
}

.logo-0db4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.north-fbb4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer_left_c12b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.text_paper_3df5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .text_paper_3df5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-new-5429 {
    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);
}

.highlight-smooth-4e0f {
    color: var(--text-white);
    font-weight: 600;
}

.badge_065a {
    color: var(--accent-color);
    font-weight: 600;
}

.background_tall_2f04 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.background_tall_2f04 strong {
    color: var(--accent-color);
}

/* Security Section */
.yellow_96a6 {
    padding: var(--section-padding);
}

/* Benefits Section */
.row-381c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.avatar-0de2 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.element_out_60d9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_basic_48bc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.photo_action_89d3 {
    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) {
    .photo_action_89d3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.photo_action_89d3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.photo_action_89d3 .summary-0b45 {
    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;
}

.photo_action_89d3 .alert-e327 {
    flex: 1;
}

.photo_action_89d3 .component_lite_8e6f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.photo_action_89d3 .pagination_5c56 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.down-7d60 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-7d60 .clean_8e2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.down-7d60 .section_0a75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.down-7d60 .section_0a75 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.down-7d60 .section_0a75 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.paper_87c6 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.preview_steel_f77d {
    padding: var(--section-padding);
}

.container_16c8 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .container_16c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logo_7ecf {
    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);
}

.logo_7ecf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.logo_7ecf .copper_8cb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_7ecf .icon_middle_5e31 {
    flex: 1;
}

.logo_7ecf .accent-6343 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo_7ecf .cold_8e34 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.gas_c9ed {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gas_c9ed .motion-fbff {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gas_c9ed .carousel_next_f84a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.gas_c9ed .carousel_next_f84a 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);
}

.gas_c9ed .carousel_next_f84a li:last-child {
    border-bottom: none;
}

.gas_c9ed .carousel_next_f84a 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;
}

.gas_c9ed .carousel_next_f84a li strong {
    color: var(--text-white);
}

.warm_1c50 {
    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);
}

.warm_1c50 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.warm_1c50 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.main-c61e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail_east_3f48 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .detail_east_3f48 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shade-new-bd8e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade-new-bd8e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.outer_fc5c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_d541 {
    font-size: 2rem;
}

.heading_hovered_0cd6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background_d771 {
    flex: 1;
}

.text-083c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-083c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.text-083c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.header_blue_26ab {
    margin-top: 3rem;
}

.rough-1a8b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.avatar-7396 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-b863 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-b863 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hero-b863 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hero-b863 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.mini_964d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_eedb {
    margin: 2rem 0;
}

.row-light-0a84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.row-light-0a84 .message_blue_6b0c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph_bottom_04ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .paragraph_bottom_04ee {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel-2f86 {
    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);
}

.panel-2f86:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.aside-hard-cac3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tooltip_0056 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.progress-full-6d06 {
    padding: var(--section-padding);
}

.description-new-9fb1 {
    margin: 2rem 0;
}

.static_0cc8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .static_0cc8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .static_0cc8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel-5298 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.panel-5298:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gallery-short-58fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-36b6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.form-39ff {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.form-39ff.caption_clean_1f5f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.disabled_light_d0c3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.backdrop_907f {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.logo-5975 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-811a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider-lower-3b95 {
    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);
}

.slider-lower-3b95 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slider-lower-3b95 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.summary-light-b4e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-9906 {
    margin: 2rem 0;
}

.narrow-c2f6 {
    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) {
    .narrow-c2f6 {
        flex-direction: column;
        gap: 1rem;
    }
}

.narrow-c2f6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.narrow-c2f6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.surface-right-5eab {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.rough-6d24 {
    flex: 1;
}

.soft-a57f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.surface_38fd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surface_38fd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-easy-48e4 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-4e7c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav_84df {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nav_84df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_pressed_15ed {
    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);
}

.logo_27a0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label_2a4d {
    flex: 1;
}

.hidden-copper-7f77 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.popup_7c9e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sidebar_51e4 {
    margin-top: 2rem;
    text-align: center;
}

.accordion_selected_d7ea {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion_selected_d7ea strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.accent_liquid_ff0f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_liquid_ff0f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header_2266 {
    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);
}

.header_2266:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header_2266 .modal-upper-6527 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header_2266 .west-5c50 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.header_2266 .detail_liquid_2eb3 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.header_2266 .article-hot-2752 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.yellow_c1bf {
    padding: var(--section-padding);
}

.hero-f346 .pattern_0f61 {
    flex: 1;
}

/* Promo Calendar Section */
.item-fast-8a97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-9f3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-9f3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_focused_8c4a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-pressed-b4cd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.bright-47f5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag_selected_285d {
    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);
}

.picture-next-c075 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.table-2f41 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.input-up-550d {
    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);
}

.input-up-550d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.input-up-550d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.media_outer_4628 {
    padding: var(--section-padding);
}

.list_1220 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list_1220 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.first-d2c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south_3d4d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface-5aec {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surface-5aec li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_a2a5 {
    margin-top: 3rem;
}

.focused_a2a5 .rough-1a8b {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.focused_a2a5 .avatar-7396 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focused_a2a5 .hero-b863 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.focused_a2a5 .hero-b863 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.focused_a2a5 .hero-b863 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.focused_a2a5 .hero-b863 li strong {
    color: var(--warning-color);
}

.surface-8d62 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface-8d62 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.breadcrumb_af1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_261f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_261f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_cc80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_cc80 .message_blue_6b0c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.notice-top-f732 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fixed_da9d {
    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);
}

.fixed_da9d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo-clean-e32c {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_428f {
    flex: 1;
}

.notice-glass-497d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.logo_310a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.active_1ff2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.down-7ce8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tag-hot-acbc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .tag-hot-acbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-solid-aaf2 {
    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);
}

.tertiary-solid-aaf2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.footer-92be {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.label_south_50f4 {
    color: var(--text-gray);
    font-size: 1rem;
}

.outline_yellow_c6d9 {
    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);
}

.tag-plasma-6c90 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tag-plasma-6c90 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.avatar-iron-c3a1 { 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; }
.label_medium_b742, .fast_8041 { max-width:100%; height:auto; }

.media_e790, .message-8130, .sort_gas_8ae9 { white-space:normal; }

.dim-de9e,
.simple_b04f,
.component-fad3,
.accent_liquid_ff0f,
.liquid-c818,
.banner-b7a5 {
  flex-wrap:wrap;
}

[class*="grid"],
.tag-hot-acbc,
.static_0cc8,
.block-12f2 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.header-yellow-68d2 img,
.simple_b04f img,
.white-d934 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.link-in-f571, .row_east_91f2,
.accent_wide_bd1c, .element-stone-fea7 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.label_north_d121 { width:100%; overflow-x:auto; }
.label_north_d121 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.thick-3af0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .thick-3af0 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.breadcrumb-out-b0cd {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.box-dirty-b2f6,
.slider_glass_a8de,
.large_8ceb,
.video-c988,
.out_b448,
.tag-hot-acbc,
.static_0cc8,
.block-12f2,
.red_4322,
.tertiary-625a,
.thick-3af0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .box-dirty-b2f6,
  .slider_glass_a8de,
  .large_8ceb,
  .video-c988,
  .out_b448,
  .tag-hot-acbc,
  .static_0cc8,
  .block-12f2,
  .red_4322,
  .tertiary-625a,
  .thick-3af0 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.gold_84d2,
.outline-inner-89fe,
.tertiary-solid-aaf2,
.steel-72b2,
.panel-5298,
.slider_5bb0,
.heading-current-efb7,
.breadcrumb-out-b0cd {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.huge_3d3d,
.module_6876,
.outline_e576 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.huge_3d3d > *,
.module_6876 > *,
.outline_e576 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: c762 */
.phantom-card-g5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
