/* {$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;
}

.silver_eef0 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.status_fixed_fbac {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .status_fixed_fbac {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .status_fixed_fbac {
        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 */
.shade-270c {
    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);
}

.hero_fast_c3ee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .hero_fast_c3ee {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .table-ca75 {
        grid-column: 1;
    }
    
    .label-f745 {
        grid-column: 2;
    }
    
    .disabled_05d9 {
        grid-column: 3;
    }
}

.table-ca75 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.table-ca75:hover img {
    transform: scale(1.05);
}

/* Navigation */
.avatar_pro_ef8e {
    display: none;
}

@media (min-width: 1024px) {
    .avatar_pro_ef8e {
        display: block;
    }
}

/* Grouped Navigation */
.carousel_a5db {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.grid_e0fc {
    position: relative;
}

.info-a260 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.grid_e0fc .filter_selected_d5c2 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.filter_selected_d5c2 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.fluid-ae47 {
    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;
}

.fluid-ae47:hover,
.fluid-ae47.fn-active-24a0 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.avatar-fluid-7827 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .avatar-fluid-7827 {
        display: flex;
    }
}

/* Mobile Register Button */
.label-f745 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .label-f745 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.wood_f9af {
    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;
}

.wood_f9af::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 */
.disabled_05d9 {
    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) {
    .disabled_05d9 {
        display: none;
    }
}

.disabled_05d9 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.disabled_05d9.fn-active-24a0 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.disabled_05d9.fn-active-24a0 span:nth-child(2) {
    opacity: 0;
}

.disabled_05d9.fn-active-24a0 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.slow-64f5 {
    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;
}

.slow-64f5.fn-active-24a0 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.orange-4ef5 {
    overflow: hidden;
}

.overlay_new_7adc {
    list-style: none;
    padding: 0.75rem 0;
}

.logo-tiny-7fed {
    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;
}

.logo-tiny-7fed:hover,
.logo-tiny-7fed.fn-active-24a0 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.logo-tiny-7fed.border_steel_a442 {
    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;
}

.logo-tiny-7fed.border_steel_a442::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 */
.purple_fd57 {
    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;
}

.slider-glass-53a0 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.slider-glass-53a0:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.hidden_9b89 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hidden_9b89:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.button_up_ae7a {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.25rem;
}

.button_up_ae7a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.stale_a453 {
    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;
}

.nav_9866 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.nav_9866:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.shadow-735e {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.shadow-735e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form_8c33 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.form_8c33: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);
}

.paper_f2e6 {
    font-size: 1em;
    font-weight: 700;
}

.table-mini-fa0e {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.surface_5eb5 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.surface_5eb5::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;
}

.article_ffee {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .article_ffee {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.filter-east-a9b0 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tabs_dd79 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.paper-0503 {
    margin-bottom: 2rem;
}

.photo_large_bd73 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .photo_large_bd73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_1daa {
    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);
}

.first_85f6 {
    font-size: 1.5rem;
}

.dropdown-ccc8 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.notification_bb94 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiny_78ed {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.tiny_78ed:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.north-77cd {
    text-align: center;
    margin-bottom: 3rem;
}

.right-fb71 {
    margin-bottom: 1rem;
}

.medium_25b1 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.west-798e {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .west-798e {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .west-798e.focus-9837 {
        direction: rtl;
    }
    
    .west-798e.focus-9837 > * {
        direction: ltr;
    }
}

.box-5628 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.box-5628:first-child {
    margin-top: 0;
}

.shade_basic_7249 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bronze-6d7c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.bronze-6d7c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.orange-1ff1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange-1ff1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_1409 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_06d3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.outline-dim-c26a {
    list-style: none;
}

.outline-dim-c26a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline-dim-c26a li:last-child {
    border-bottom: none;
}

/* Games Features */
.image_f355 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.alert-light-f7b2 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bottom_bc86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_b44d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.caption-paper-b145 {
    margin: 2rem 0;
}

.popup_4a03 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.background-upper-0a95 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.thick-680f {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.media_899a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.sidebar_d254 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sidebar_d254 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_6932 {
    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);
}

.search_6932:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask_first_a868 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.plasma-38be {
    font-size: 1.5rem;
}

.stone-4b3d {
    color: var(--accent-color);
    margin: 0;
}

.info_pink_e35d {
    list-style: none;
}

.info_pink_e35d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.info_pink_e35d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.preview_wide_97e8 {
    margin: 2rem 0;
}

.gradient-48c7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hard_f0b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hard_f0b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion-5918 {
    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);
}

.middle_1603 {
    font-size: 1.25rem;
}

.filter-6de0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.highlight_22e7,
.tag_40da {
    text-align: center;
    margin: 2rem 0;
}

.shade-small-61f9,
.footer-tall-f897 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.search-050e {
    margin: 2rem 0;
    text-align: center;
}

.popup_clean_f00a {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup_clean_f00a::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;
}

.highlight-c6c6 {
    position: relative;
    z-index: 1;
}

.list_simple_6058 {
    margin-bottom: 1rem;
}

.label-dark-55dd {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solid-b7eb {
    margin-bottom: 3rem;
}

.image-medium-1e7f {
    margin-top: 3rem;
}

.column-568c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .column-568c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column-568c .container_1daa {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.article-a337 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sort-down-3c37 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.nav-7606 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.rough-ca09 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .rough-ca09 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rough-ca09 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.orange-bf95 {
    margin-bottom: 1rem;
}

.notification_up_805c img {
    margin-bottom: 1rem;
}

.column-8184 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_current_4165 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.wood_e2d2 {
    list-style: none;
}

.wood_e2d2 li {
    margin-bottom: 0.5rem;
}

.wood_e2d2 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.wood_e2d2 a:hover {
    color: var(--accent-color);
}

.panel-white-47c6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.warm-3fd7 {
    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);
}

.warm-3fd7:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.block-current-26c2 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.block-current-26c2 p {
    margin-bottom: 0.25rem;
}

.mask_2196 {
    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) {
    .mask_2196 {
        flex-direction: row;
    }
}

.west_b8e9 {
    text-align: center;
}

@media (min-width: 768px) {
    .west_b8e9 {
        text-align: left;
    }
}

.west_b8e9 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tag-3e0f {
    font-size: 0.75rem !important;
}

.modal_easy_aec0 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.message_out_c578 {
    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);
    }
}

.surface_4a38 {
    animation: fadeInUp 0.6s ease-out;
}

.bright_8763 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.button-easy-b7bc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-easy-b7bc {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.top-6282 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-6282 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-9bdb {
    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);
}

.slider-9bdb .bottom_bc86 {
    font-size: 1.25rem;
}

.slider-9bdb .hidden-34a7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.primary-a7b1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary-a7b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph-83ac {
    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);
}

.paragraph-83ac:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-e32f {
    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);
}

.south_43ef {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.paragraph_soft_e6b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple-6eba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused_3447 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.focused_3447 .search_b44d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focused_3447 .plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
}

.background_yellow_a662 {
    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);
}

.list-1e46 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.list-1e46 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.list-1e46 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.border-old-396d {
    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);
}

.backdrop-4c97 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.box_b4c2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.box_b4c2 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.box_b4c2 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);
}

.box_b4c2 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.box_b4c2 input::placeholder {
    color: var(--text-muted);
}

.nav_3a17 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-right-315d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.item-right-315d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.huge_27dc {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.huge_27dc:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hard_f0b0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_f0b0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion-5918 {
    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);
}

.motion-5918 .middle_1603 {
    font-size: 1.25rem;
}

.motion-5918 .filter-6de0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.feature_complex_5c44 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft_067f {
    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);
}

.soft_067f .bottom_bc86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.soft_067f .search_b44d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.soft_067f .plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame-clean-3d89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-outer-e18e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.text-outer-e18e .last-e626 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-outer-e18e .large_f440 {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean_879c {
    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);
}

.mini-9e3f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .mini-9e3f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red-48de {
    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);
}

.red-48de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.menu-ef67 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.table_wood_c625 {
    flex: 1;
}

.input-3dde {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.module_42c1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.search-thick-f84e {
    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);
}

.search-thick-f84e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.disabled_b436 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled_b436 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-14ee {
    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);
}

.container-14ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass-e079 {
    font-size: 2rem;
    flex-shrink: 0;
}

.east-cac3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.backdrop_8b75 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outline-purple-ca45 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.input-brown-709b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brown-542c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_prev_5a98 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_prev_5a98 .popup-46f3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_prev_5a98 .wrapper_old_12d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-43df {
    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);
}

.shadow_smooth_6dc9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper_527e {
    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);
}

.upper_527e .bottom_bc86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.upper_527e .search_b44d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.upper_527e .plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-dark-147e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-dark-147e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_stone_911c {
    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);
}

.status_stone_911c:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.content-4c5e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-4c5e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_3317 {
    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);
}

.sidebar_3317:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_new_9d0c {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_short_81ac {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.background-upper-0a95 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.new-f76a {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.info_pro_a24a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-dead {
    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);
}

.layout-dead:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside_5ed3 {
    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);
}

.heading-0651 {
    flex: 1;
}

.outline_172a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.dirty-068f {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.item_glass_7c25 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green-f3da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fresh-4c80 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh-4c80 .last-e626 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.fresh-4c80 .large_f440 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_40da {
    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);
}

.mask_lower_5556 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_lower_5556 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.label_cff8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_cff8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-brown-8b9c {
    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);
}

.container-brown-8b9c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_white_44e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-bdd9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.west_c73d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thick_cdb6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.bottom-d7ed {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_df5c {
    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);
}

.bottom_1021 {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-d8b3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.middle-6adb {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_smooth_6dc9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper_527e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.upper_527e .search_b44d {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.upper_527e .plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-5011 {
    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);
}

.simple-c627 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .simple-c627 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-c627 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-advanced-d062 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.summary-advanced-d062:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tooltip-62bc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_65b4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.media-clean-1486 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.feature-focused-1293 {
    padding: 1.5rem;
}

.shadow-purple-1f49 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.active-active-a37c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-active-a37c 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;
}

.active-active-a37c li:last-child {
    border-bottom: none;
}

.active-active-a37c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.overlay_e821 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_e821 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_3e31 {
    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);
}

.title_3e31:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.warm-8e16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-gas-52e1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input-left-57ed {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.chip_94c4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.medium_ba1b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-dark-6170 {
    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);
}

.modal_dim_0089 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_wide_fa3e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module_south_fbd1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade_last_4ad3 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline-narrow-b407 {
    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);
}

.tag_a57e {
    text-align: center;
}

.paper_41d3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box-e708 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.south_b8ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-west-546c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-west-546c .search_b44d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.module-west-546c .plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-simple-2bb0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .texture-simple-2bb0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture-simple-2bb0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-inner-9c07 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.badge-inner-9c07:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out_0275 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.small_718b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.search_b44d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.mini_7499 {
    padding: 1.5rem;
}

.plasma_fadc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail_red_0628 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_red_0628 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;
}

.thumbnail_red_0628 li:last-child {
    border-bottom: none;
}

.thumbnail_red_0628 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.list-paper-b57c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.nav-dirty-608a {
    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);
}

.nav-dirty-608a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_basic_0103 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_36aa {
    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);
}

.container-e32f {
    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;
}

.south_43ef {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph_soft_e6b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.top-dbb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside_left_792f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input-b26d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.component_dark_c378 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sort-basic-4e81 {
    display: flex;
    gap: 1rem;
}

.sort-basic-4e81 .sidebar-east-b2c2 {
    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;
}

.light_190f {
    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);
}

.label_f679 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.pressed-8ffe {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pressed-8ffe 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;
}

.pressed-8ffe li:last-child {
    border-bottom: none;
}

.pressed-8ffe li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.copper_3943 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .copper_3943 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .copper_3943 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange-82a8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.orange-82a8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.title-glass-0d4d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.input-5c4d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup-46f3 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.status-429a {
    font-size: 1rem;
}

.secondary_large_d4e5 {
    padding: 1.5rem;
}

.wrapper_old_12d3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gold-e512 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.gold-e512 .tag_a57e {
    text-align: center;
}

.gold-e512 .box-e708 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.gold-e512 .dropdown_833d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.hard_c2b4 {
    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);
}

.hard_c2b4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.under-8e0f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-8e0f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_pro_90ed {
    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);
}

.content_pro_90ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern_first_13fe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_9679 {
    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);
}

.card-75be {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid-eb52 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture-f2b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas_0be8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.wood_7c11 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_3086 {
    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);
}

.bottom-ee63 {
    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;
}

.bottom-ee63.copper_3e77 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.bottom-ee63.stale-085b {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.bottom-ee63.stone_1215 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.bottom-ee63.summary_0702 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.bottom-ee63.focused_719f {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.primary-b8ed {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.photo_750f {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-0908 {
    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);
}

.silver_b7d4 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame-clean-3d89 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame-clean-3d89 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;
}

.frame-clean-3d89 li:last-child {
    border-bottom: none;
}

.frame-clean-3d89 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.old-b811 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old-b811 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .old-b811 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-3ee6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bottom-3ee6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom-3ee6.widget_selected_5960 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .bottom-3ee6.widget_selected_5960 {
        grid-column: span 3;
    }
}

.mask_green_ecc9 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.bottom-3ee6.widget_selected_5960 .mask_green_ecc9 {
    background: rgba(6, 182, 212, 0.1);
}

.iron_753d {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.preview-d92b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.bottom-3ee6.widget_selected_5960 .preview-d92b {
    color: var(--info-color);
}

.photo-f99e {
    padding: 1.5rem;
    text-align: center;
}

.inner-96a1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bottom-3ee6.widget_selected_5960 .inner-96a1 {
    color: var(--info-color);
}

.middle_4689 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.black_e68f {
    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 */
.slow_9c73 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_9c73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-1e5c {
    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);
}

.secondary-1e5c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer_3b7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft_067f {
    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);
}

.middle_1603 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_46ee {
    flex: 1;
}

.gradient-48c7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.texture_b65f {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_thick_9dae {
    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-left-ba4e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.texture-current-5fb2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.message_out_c578 {
    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);
}

.icon-81bd {
  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);
}

.icon-81bd .tag_a57e {
    text-align: center;
}

.icon-81bd .paper_41d3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.icon-81bd .box-e708 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.box_c677 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-first-ab41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide-a425 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.basic_6dab {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-0841 {
    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);
}

.active_south_455e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box_5cd9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-27ac {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .center-27ac {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .center-27ac {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box-dark-82fd {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.box-dark-82fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_fluid_a09d {
    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);
}

.cool_190b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.progress_f5bb {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tabs_2bb2 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabs_2bb2.red-43f6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tabs_2bb2.warm-2dcb {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tabs_2bb2.outline-0764 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.panel-25d3 {
    padding: 1.5rem;
    text-align: center;
}

.tag-cdce {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.right_eff4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.right_eff4 .right-a127 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.card_hovered_bf59 {
    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);
}

.card_hovered_bf59:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dirty-244a {
  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);
}

.lite-c816 {
    text-align: center;
}

.lite-c816 .paper_41d3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.lite-c816 .box-e708 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.accordion_9d31 { text-align: center; }
.hidden_37ab { text-align: left; }
.table-0e55 { text-align: right; }

.backdrop_080f { margin-bottom: 0; }
.banner_e92e { margin-bottom: 0.5rem; }
.green_92c7 { margin-bottom: 1rem; }
.overlay_down_f559 { margin-bottom: 1.5rem; }
.list-017a { margin-bottom: 2rem; }

.brown_0bfc { margin-top: 0; }
.tooltip-00cb { margin-top: 0.5rem; }
.search_ecdd { margin-top: 1rem; }
.top-8a67 { margin-top: 1.5rem; }
.bright-b571 { margin-top: 2rem; }

.fn-hidden-24a0 { display: none; }
.fn-visible-24a0 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .surface_5eb5 {
        padding: 6rem 0 3rem;
    }
    
    .article_ffee {
        text-align: center;
    }
    
    .west-798e {
        text-align: center;
    }
    
    .photo_large_bd73 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .shade-270c,
    .slow-64f5,
    .popup_clean_f00a,
    .nav-7606 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .surface_5eb5 {
        background: none;
    }
}

/* Providers Section */
.smooth_0462 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.south-e517 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .south-e517 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-e517 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid_6344 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fluid_6344:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top-dcb1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.background_current_9d5b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.up-16bf {
    list-style: none;
    padding: 0;
}

.up-16bf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.up-16bf li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.secondary_2179 {
    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);
}

.secondary_2179 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.item-iron-c66d {
    padding: var(--section-padding);
}

.footer-black-f773 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-black-f773 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_under_bbb2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.feature_under_bbb2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.shade-pink-c2a9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.avatar_17ae {
    display: flex;
    flex-direction: column;
}

.white-050f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.texture_f947 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.aside-a6fe {
    color: var(--accent-color);
}

.pagination-tiny-34e8 {
    font-size: 1.25rem;
}

.notification_dim_b4ff {
    margin-bottom: 1rem;
}

.notification_dim_b4ff p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.summary-3cbe {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.modal_north_a9a0 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.tag_a57e {
    text-align: center;
}

.paper_41d3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box-e708 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.hard_93e8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-0f37 {
    margin: 2rem 0;
}

.lower-7a65 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.lower-7a65 .bottom_bc86 {
    font-size: 2rem;
    flex-shrink: 0;
}

.north_5d79 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.block-f658 {
    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;
}

.block-f658:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary_left_57b6 {
    font-size: 2rem;
}

.pressed_ba08 {
    display: flex;
    flex-direction: column;
}

.tertiary_purple_4fdf {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.content_5b7e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.soft-dec7 {
    padding: var(--section-padding);
}

.fluid-8ba0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fluid-8ba0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fluid-8ba0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow-6fe6 {
    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);
}

.slow-6fe6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slow-6fe6 .paper_41d3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.slow-6fe6 .box-e708 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.slow-6fe6 .section_61f8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.surface_middle_d717 {
    margin-top: 4rem;
}

.table-bright-b15f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.steel-b98c {
    overflow-x: auto;
}

.footer-focused-edad {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.footer-focused-edad thead {
    background: var(--accent-color);
}

.footer-focused-edad th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.footer-focused-edad td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-focused-edad tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.footer-focused-edad tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.list-warm-5170 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture_2cbb {
    max-width: 900px;
    margin: 0 auto;
}

.small_96e5 {
    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);
}

.small_96e5:hover {
    border-color: var(--accent-color);
}

.border-inner-c7a8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.border-inner-c7a8 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.tertiary_4d42 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.small_96e5.fn-active-24a0 .tertiary_4d42 {
    transform: rotate(45deg);
}

.chip-silver-3833 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.small_96e5.fn-active-24a0 .chip-silver-3833 {
    max-height: 1000px;
}

.chip-silver-3833 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.hard-5dbb {
    padding: var(--section-padding);
}

.list-1e46 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.content_warm_b130 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-2a3f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary-2a3f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-fa57 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_14ee {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dim_6d97 {
    font-size: 2rem;
}

.secondary-d27a {
    color: var(--text-white);
    margin: 0;
}

.hovered-e4a1 {
    list-style: none;
    padding: 0;
}

.hovered-e4a1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered-e4a1 li:last-child {
    border-bottom: none;
}

.lite_4324 {
    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);
}

.lite_4324 p {
    color: var(--success-color);
    margin: 0;
}

.panel-focused-18cd {
    margin-top: 3rem;
}

.label_f679 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.text-pro-8ad4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .text-pro-8ad4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid_a7f2 {
    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);
}

.bright_dd3a {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.grid_a7f2 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.small-d2e1 {
    padding: var(--section-padding);
}

.dropdown_e95a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_e95a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-a77a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hero-a77a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hover_tall_9eca {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.red_d076 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.surface-gold-284f {
    flex: 1;
}

.new-6664 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.main_c6aa {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.dark-e202 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_ac0c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status_ac0c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hover-0b0b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.thumbnail_bronze_c17b {
    padding: var(--section-padding);
}

.tag_right_9c05 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.summary-b778 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-b778 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-bottom-fd79 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_9264, .icon-5cf0, .footer-lower-e863 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.footer-lower-e863 {
    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 */
.north_2016 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dim_c5bd {
    margin: 2rem 0;
}

.gold-7e03 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy_7577 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lower_74db {
    list-style: none;
    padding: 0;
}

.lower_74db 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;
}

.lower_74db li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.lower_74db li:last-child {
    border-bottom: none;
}

.tooltip-cold-f5e7 {
    text-align: center;
    margin-top: 2rem;
}

.heading_south_4767 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.shadow_hovered_3a2f {
    padding: var(--section-padding);
}

.container_paper_eec4 {
    margin: 2rem 0;
}

.short_d8a5 {
    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) {
    .short_d8a5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.short_d8a5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.notice_hard_091b {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.hero-in-6d57 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.picture-89bc {
    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;
}

.disabled_e17e {
    flex: 1;
}

.overlay_1990 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pattern-soft-17ed {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.popup_9394 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.caption-soft-f013 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .caption-soft-f013 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.badge_b71a {
    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);
}

.badge_b71a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.badge_b71a .paper_41d3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_b71a .box-e708 {
    color: var(--text-gray);
    font-size: 1rem;
}

.feature_df21 {
    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);
}

.small-ba40 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.small-ba40 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.heading-next-f3bc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .heading-next-f3bc {
        grid-template-columns: 1fr 1fr;
    }
}

.breadcrumb-hard-d798 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_brown_6b9d {
    margin-bottom: 1.5rem;
}

.tag_brown_6b9d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tag_brown_6b9d input,
.tag_brown_6b9d 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;
}

.tag_brown_6b9d input:focus,
.tag_brown_6b9d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hard-b549 {
    width: 100%;
    margin-top: 1rem;
}

.pagination-last-21bb {
    display: flex;
    align-items: center;
}

.first_d038 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.picture-0a61 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.table-brown-7f5e {
    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;
}

.iron_a0cf {
    color: var(--text-gray);
}

.feature_wood_1899 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.short-4d03 {
    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);
}

.short-4d03 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.liquid_39d4 {
    margin-top: 3rem;
}

.focus-active-68f7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.right-7929 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bronze-37ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.slider-next-4295 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-next-4295:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.form_blue_1d29 {
    padding: var(--section-padding);
}

.wood-9cfe {
    margin: 2rem 0;
}

.tertiary_in_9f06 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner_upper_fb2d {
    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;
}

.banner_upper_fb2d:hover, .banner_upper_fb2d.fn-active-24a0 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.cold-aed8 {
    display: none;
}

.cold-aed8.fn-active-24a0 {
    display: block;
}

.sidebar_simple_9fcb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-a387 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.badge_7b0d h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.badge_7b0d ul {
    list-style: none;
    padding: 0;
}

.badge_7b0d ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.badge_7b0d ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.filter-smooth-fc3c {
    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 */
.heading_hovered_69f2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_9ee7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.under_3999 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.small_3c8f {
    color: var(--accent-color);
    margin: 0;
}

.image-steel-3e99 {
    display: flex;
    gap: 1.5rem;
}

.bright-1d4a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.huge_d982 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.down_92ce {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.down_92ce.black-c438 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.down_92ce.avatar_basic_717c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.down_92ce.aside-a449 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.gas-6ded {
    margin-top: 2rem;
}

.right-3bc7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.video_pressed_f7e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .video_pressed_f7e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-8f3a {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.preview-29e1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.filter_2333 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.table_selected_5bca {
    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 */
.search-3e17 {
    padding: var(--section-padding);
}

.footer-e0cb {
    margin: 2rem 0;
}

.button-current-4aca {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.secondary_9e33 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.hot_92f5 {
    list-style: none;
    padding: 0;
}

.hot_92f5 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;
}

.hot_92f5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.hot_92f5 li:last-child {
    border-bottom: none;
}

.purple-2b0b {
    margin: 2rem 0;
}

.smooth_70a4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.accent_fast_ee3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .accent_fast_ee3a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.narrow_41c2 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-hovered-88dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thick-11dd {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.mask_659e {
    margin-top: 2rem;
}

.input-3dde {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.bottom_b669 {
    list-style: none;
    padding: 0;
}

.avatar_5232 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.avatar_5232 a {
    color: var(--accent-color);
    text-decoration: none;
}

.avatar_5232 a:hover {
    text-decoration: underline;
}

.bottom_c773 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    border-left: 4px solid var(--success-color);
}

/* League Coverage Section */
.title-liquid-9f21 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_25ee {
    margin: 2rem 0;
}

.tertiary-hot-f614 {
    margin-bottom: 3rem;
}

.tertiary-hot-f614 .easy_7577 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.video_2d64 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-98ab {
    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);
}

.hero-98ab:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.module-medium-b973 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .module-medium-b973 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-1821 {
    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 */
.pink-7b7a {
    padding: var(--section-padding);
}

.banner_right_6508 {
    margin: 2rem 0;
}

.overlay-f77a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.background-653d {
    overflow-x: auto;
    margin: 2rem 0;
}

.dynamic-9c66 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.dark-7831 {
    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;
}

.notice-dark-64f4 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.accent_first_0795 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .accent_first_0795 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link_black_0606 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_black_0606 .bottom_bc86 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.link_black_0606 .search_b44d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dropdown_b394 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.glass_ef16 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_4432 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_4432 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_orange_ae65 {
    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;
}

.hover_orange_ae65:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.title-7eaf {
    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);
}

.small-465b {
    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;
}

.pro_67fa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail-white-ea22 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.down-66d4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tiny_40a4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.out-637c {
    color: var(--text-white);
    font-weight: 600;
}

.detail_90ba {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.under_419f {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.under_419f .sidebar-east-b2c2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hard-caa5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard-caa5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west_cd1b {
    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);
}

.west_cd1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.west_cd1b .paper_41d3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.west_cd1b .box-e708 {
    color: var(--text-gray);
    font-size: 1rem;
}

.tooltip-out-1e0b {
    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);
}

.warm-23d7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.warm-23d7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.bottom-d7ed {
    margin: 2rem 0;
}

.status_df5c {
    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);
}

.status_df5c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.bottom_1021 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.input-b5ef {
    flex: 1;
}

.new-d8b3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.middle-6adb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.shadow_smooth_6dc9 {
    margin: 2rem 0;
}

.upper_527e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper_527e .search_b44d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.upper_527e .plasma_fadc {
    color: var(--text-gray);
    margin: 0;
}

.heading-5011 {
    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);
}

.heading-5011 .shade-small-61f9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.dropdown_b394 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.aside_5ed3 {
    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;
}

.heading-0651 {
    flex: 1;
}

.dirty-068f {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.item_glass_7c25 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.container-e32f {
    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;
}

.input_hovered_5881 {
    flex: 1;
}

.south_43ef {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.paragraph_soft_e6b2 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.input-b26d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.component_dark_c378 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.sort-basic-4e81 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.sort-basic-4e81 .sidebar-east-b2c2 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.light_190f {
    margin-top: 2rem;
}

.light_190f .label_f679 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.widget_6e14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-narrow-b407 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outline-narrow-b407 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-narrow-b407 .tag_a57e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.south_b8ec {
    margin: 2rem 0;
}

.module-west-546c {
    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 */
.photo_fresh_c8e5 {
    padding: var(--section-padding);
}

.mini_7499 {
    margin-top: 1rem;
}

.thumbnail_red_0628 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.thumbnail_red_0628 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.thumbnail_red_0628 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.photo-0787 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-68e7 {
    margin: 2rem 0;
}

.white-0d1e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.right_c878 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.out_8743 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.glass_5e82 {
    margin: 2rem 0;
}

.black_99f3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.black_99f3 .easy_7577 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dynamic-59dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dynamic-59dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-564b {
    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);
}

.modal-rough-382b {
    color: var(--text-white);
    font-weight: 600;
}

.inner_b131 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.selected_99d4 {
    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);
}

.selected_99d4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tiny_5007 {
    padding: var(--section-padding);
}

.aside_13cf {
    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;
}

.aside_13cf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pattern-under-863c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-under-863c .bright_dd3a {
    font-size: 2rem;
    flex-shrink: 0;
}

.pattern-under-863c .glass-e1e6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.sidebar_basic_ed43 {
    flex: 1;
}

.header-01c6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video_static_dc4a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_static_dc4a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.video_static_dc4a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wood_19b4 {
    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);
}

.wood_19b4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wood_19b4 strong {
    color: var(--warning-color);
}

/* Slots Section */
.accordion-wood-db31 {
    padding: var(--section-padding);
}

.input-brown-709b {
    margin: 2rem 0;
}

/* Table Games Section */
.fast-2c2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-542c {
    margin: 2rem 0;
}

.banner_prev_5a98 {
    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);
}

.banner_prev_5a98:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.banner_prev_5a98 .popup-46f3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_prev_5a98 .wrapper_old_12d3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.upper-43df {
    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);
}

.upper-43df .shade-small-61f9 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.footer-590f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow_9f73 {
    margin: 2rem 0;
}

.shade_white_082e {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused_9c6f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress_5054 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.center-8f21 {
    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);
}

.center-8f21:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.center-8f21.fn-active-24a0 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.over_0865 {
    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);
}

.motion_7809 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.motion_7809 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.box_2988 {
    padding: var(--section-padding);
}

.disabled-6860 {
    margin: 2rem 0;
}

.tooltip_top_032f {
    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);
}

.tooltip_top_032f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tooltip_top_032f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tabs-narrow-bd32 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.focused-9021 {
    flex: 1;
}

.black_62e4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tall-f983 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.breadcrumb_306c {
    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;
}

.element-smooth-85da {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade-stone-8215 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.item_tall_d345 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.light_de18 {
    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;
}

.light_de18:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.banner-lower-d5e9 {
    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);
}

.highlight-2ecd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight-2ecd strong {
    color: var(--accent-color);
}

/* New Games Section */
.status_last_5e96 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.soft-36e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .soft-36e9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .soft-36e9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_orange_9c9f {
    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;
}

.tooltip_orange_9c9f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.orange_b6b8 {
    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;
}

.notification_f625 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.widget-right-b367 {
    font-size: 2rem;
}

.hidden_94f9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.filter-lower-20ff {
    flex: 1;
}

.surface_8b2c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.image-4907 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.content_7269 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dark-3a95 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.top_7481 {
    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;
}

.basic_ed9c {
    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;
}

.basic_ed9c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.iron-c02a {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge_1245 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_e4cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .message_e4cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-94da {
    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);
}

.media-d5d7 {
    color: var(--text-white);
    font-weight: 600;
}

.info_fac6 {
    color: var(--accent-color);
    font-weight: 600;
}

.detail_16de {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.detail_16de strong {
    color: var(--accent-color);
}

/* Security Section */
.filter_bb52 {
    padding: var(--section-padding);
}

/* Benefits Section */
.alert_d2f8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.primary-e3e6 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.heading-liquid-c9f2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-d700 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.gallery_9093 {
    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) {
    .gallery_9093 {
        flex-direction: column;
        gap: 1rem;
    }
}

.gallery_9093:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gallery_9093 .container-e32f {
    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;
}

.gallery_9093 .input_hovered_5881 {
    flex: 1;
}

.gallery_9093 .south_43ef {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gallery_9093 .paragraph_soft_e6b2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focus-last-a3c1 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-last-a3c1 .gradient-48c7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.focus-last-a3c1 .feature_complex_5c44 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-last-a3c1 .feature_complex_5c44 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus-last-a3c1 .feature_complex_5c44 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.avatar-0283 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.link-2f14 {
    padding: var(--section-padding);
}

.card-outer-13a3 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .card-outer-13a3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-under-d25e {
    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);
}

.content-under-d25e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.content-under-d25e .surface_prev_7e2f {
    font-size: 2rem;
    flex-shrink: 0;
}

.content-under-d25e .sort_c0e9 {
    flex: 1;
}

.content-under-d25e .last-e626 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.content-under-d25e .alert-14fb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.fast_8507 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast_8507 .surface-in-4967 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast_8507 .bright_1ce7 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.fast_8507 .bright_1ce7 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);
}

.fast_8507 .bright_1ce7 li:last-child {
    border-bottom: none;
}

.fast_8507 .bright_1ce7 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;
}

.fast_8507 .bright_1ce7 li strong {
    color: var(--text-white);
}

.breadcrumb_current_4789 {
    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);
}

.breadcrumb_current_4789 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.breadcrumb_current_4789 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.nav-7c5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-bfb5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shadow-bfb5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pressed-9565 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pressed-9565:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.highlight-c548 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.left-eba8 {
    font-size: 2rem;
}

.alert_fresh_73a7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.disabled_ddbc {
    flex: 1;
}

.button_solid_9368 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.button_solid_9368 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.button_solid_9368 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.layout-gas-76b6 {
    margin-top: 3rem;
}

.button-current-4aca {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.secondary_9e33 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hot_92f5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot_92f5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hot_92f5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hot_92f5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.box-7f68 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel-82b7 {
    margin: 2rem 0;
}

.top-a780 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.top-a780 .easy_7577 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.border-5c14 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .border-5c14 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.complex_ab8c {
    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);
}

.complex_ab8c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wide-53c7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-fixed-ef60 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.slider-white-c4d3 {
    padding: var(--section-padding);
}

.cold-be66 {
    margin: 2rem 0;
}

.medium_cfe1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .medium_cfe1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .medium_cfe1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-debb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.caption-debb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.content-fa89 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.paper_dacc {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.focused-ab59 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.focused-ab59.thumbnail_26d6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.avatar_last_e557 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.outline_b230 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.container_gold_ea5e {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status_417a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail-7d17 {
    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);
}

.detail-7d17 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail-7d17 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.summary_cf13 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_6942 {
    margin: 2rem 0;
}

.dark-734f {
    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) {
    .dark-734f {
        flex-direction: column;
        gap: 1rem;
    }
}

.dark-734f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dark-734f::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);
}

.active-top-e5bd {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.green-c577 {
    flex: 1;
}

.hidden_abfa {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-paper-5f19 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-paper-5f19 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.component_black_f029 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal_large_225c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold_fc7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold_fc7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-hard-45d6 {
    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);
}

.dynamic_a670 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.active_1373 {
    flex: 1;
}

.paragraph-01ae {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.bright_5c88 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.text_651a {
    margin-top: 2rem;
    text-align: center;
}

.fluid_b7c2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fluid_b7c2 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.under-8e0f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-8e0f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_pro_90ed {
    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);
}

.content_pro_90ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.content_pro_90ed .warm-8e16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.content_pro_90ed .description-gas-52e1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.content_pro_90ed .input-left-57ed {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.content_pro_90ed .chip_94c4 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.fresh-ae3b {
    padding: var(--section-padding);
}

.old_9679 .top_276e {
    flex: 1;
}

/* Promo Calendar Section */
.yellow_6fcb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced-ba23 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced-ba23 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_pink_d648 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_00fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.mini-f928 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link_green_9bed {
    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);
}

.banner-dark-48b3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.thumbnail-14ab {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.paragraph-1a31 {
    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);
}

.paragraph-1a31 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paragraph-1a31 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.layout_smooth_bb84 {
    padding: var(--section-padding);
}

.texture-rough-8051 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture-rough-8051 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_center_33dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle-81c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.nav-739d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-739d li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.link-58a6 {
    margin-top: 3rem;
}

.link-58a6 .button-current-4aca {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.link-58a6 .secondary_9e33 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.link-58a6 .hot_92f5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.link-58a6 .hot_92f5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.link-58a6 .hot_92f5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.link-58a6 .hot_92f5 li strong {
    color: var(--warning-color);
}

.north_5359 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.north_5359 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.disabled-solid-3bb4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_4d85 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table_4d85 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-9c3f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-9c3f .easy_7577 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.dropdown_af21 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outer-4539 {
    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);
}

.outer-4539:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.column_962f {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-6150 {
    flex: 1;
}

.notice-725c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.white-fff0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dynamic_0d96 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.background-7722 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.picture_0600 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .picture_0600 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-7e87 {
    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);
}

.carousel-7e87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.progress-clean-3c8d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_5036 {
    color: var(--text-gray);
    font-size: 1rem;
}

.small-ba40 {
    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);
}

.surface-short-5d8d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.surface-short-5d8d strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.status_fixed_fbac { 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; }
.tiny_78ed, .bronze-6d7c { max-width:100%; height:auto; }

.purple_fd57, .button_up_ae7a, .stale_a453 { white-space:normal; }

.article_ffee,
.west-798e,
.slow_9c73,
.under-8e0f,
.shadow_smooth_6dc9,
.center-27ac {
  flex-wrap:wrap;
}

[class*="grid"],
.picture_0600,
.medium_cfe1,
.column-568c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.surface_5eb5 img,
.west-798e img,
.notification_bb94 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.filter-east-a9b0, .tabs_dd79,
.right-fb71, .medium_25b1 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.steel-b98c { width:100%; overflow-x:auto; }
.steel-b98c table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.south-e517 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .south-e517 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.fluid_6344 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.fluid-8ba0,
.badge_b271,
.gas_3607,
.logo_action_3cac,
.caption-soft-f013,
.picture_0600,
.medium_cfe1,
.column-568c,
.dirty-244a,
.disabled-6860,
.south-e517 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .fluid-8ba0,
  .badge_b271,
  .gas_3607,
  .logo_action_3cac,
  .caption-soft-f013,
  .picture_0600,
  .medium_cfe1,
  .column-568c,
  .dirty-244a,
  .disabled-6860,
  .south-e517 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.slow-6fe6,
.badge_b71a,
.carousel-7e87,
.container_1daa,
.caption-debb,
.lite-c816,
.tooltip_top_032f,
.fluid_6344 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.pattern-rough-170f,
.iron_32f0,
.focus_7e3b {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.pattern-rough-170f > *,
.iron_32f0 > *,
.focus_7e3b > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: a7de */
.promo-block-o5 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
