/* {$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;
}

.rough_ec77 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.modal_hot_7bab {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .modal_hot_7bab {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .modal_hot_7bab {
        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 */
.component_prev_1578 {
    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);
}

.aside-warm-a100 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .aside-warm-a100 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .sort_bronze_a4cf {
        grid-column: 1;
    }
    
    .form-41b5 {
        grid-column: 2;
    }
    
    .primary_339f {
        grid-column: 3;
    }
}

.sort_bronze_a4cf img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.sort_bronze_a4cf:hover img {
    transform: scale(1.05);
}

/* Navigation */
.fixed_ed8c {
    display: none;
}

@media (min-width: 1024px) {
    .fixed_ed8c {
        display: block;
    }
}

/* Grouped Navigation */
.content-gas-fbc2 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.gallery-prev-e9d0 {
    position: relative;
}

.copper_bf00 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.gallery-prev-e9d0 .image-pink-0383 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.image-pink-0383 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.thumbnail-f639 {
    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;
}

.thumbnail-f639:hover,
.thumbnail-f639.fn-active-e8cc {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.middle_f8a8 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .middle_f8a8 {
        display: flex;
    }
}

/* Mobile Register Button */
.form-41b5 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .form-41b5 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.glass_0d92 {
    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;
}

.glass_0d92::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 */
.primary_339f {
    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) {
    .primary_339f {
        display: none;
    }
}

.primary_339f span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.primary_339f.fn-active-e8cc span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.primary_339f.fn-active-e8cc span:nth-child(2) {
    opacity: 0;
}

.primary_339f.fn-active-e8cc span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.picture-last-08fb {
    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;
}

.picture-last-08fb.fn-active-e8cc {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.inner-1a64 {
    overflow: hidden;
}

.feature_easy_f46e {
    list-style: none;
    padding: 0.75rem 0;
}

.stone-6304 {
    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;
}

.stone-6304:hover,
.stone-6304.fn-active-e8cc {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.stone-6304.container-5add {
    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;
}

.stone-6304.container-5add::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 */
.active-8d90 {
    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;
}

.over-7c74 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.over-7c74:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.icon-inner-f693 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.icon-inner-f693:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hidden_c0a3 {
    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;
}

.hidden_c0a3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.left-8f68 {
    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;
}

.slider-over-dc24 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.slider-over-dc24:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.alert-b200 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.alert-b200:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.accent_white_d9ef {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.accent_white_d9ef: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);
}

.main-thick-06d8 {
    font-size: 1em;
    font-weight: 700;
}

.alert-liquid-820d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hard-74fa {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hard-74fa::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;
}

.pink-7580 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .pink-7580 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.red-3335 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.steel-b3a6 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.copper_0b84 {
    margin-bottom: 2rem;
}

.hover-1098 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hover-1098 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label-gas-185c {
    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);
}

.card_black_3c8e {
    font-size: 1.5rem;
}

.preview-a18f {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.block_8fd6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_purple_9715 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.menu_purple_9715:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section_in_f363 {
    text-align: center;
    margin-bottom: 3rem;
}

.selected-caab {
    margin-bottom: 1rem;
}

.row-3c73 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.thumbnail_db1c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .thumbnail_db1c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .thumbnail_db1c.label-west-bad4 {
        direction: rtl;
    }
    
    .thumbnail_db1c.label-west-bad4 > * {
        direction: ltr;
    }
}

.alert-3c98 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.alert-3c98:first-child {
    margin-top: 0;
}

.fast_f533 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mask_a90d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask_a90d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.narrow-b14b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-b14b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-0640 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.lower-7f36 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.top-f7a2 {
    list-style: none;
}

.top-f7a2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-f7a2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.summary_green_ae95 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.thumbnail-up-f786 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer_light_8eb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-static-1e78 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.module-dynamic-e46a {
    margin: 2rem 0;
}

.photo-large-671d {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.logo-narrow-bb90 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.gallery-tall-87bd {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.text-iron-c02d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.widget-up-9274 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-up-9274 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_over_4483 {
    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);
}

.input_over_4483:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.photo_smooth_75f0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cold-b9ce {
    font-size: 1.5rem;
}

.module-last-e242 {
    color: var(--accent-color);
    margin: 0;
}

.active_red_d1bd {
    list-style: none;
}

.active_red_d1bd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.active_red_d1bd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.breadcrumb-eb69 {
    margin: 2rem 0;
}

.panel-lower-c989 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hidden_under_1bef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hidden_under_1bef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-lower-4cfd {
    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);
}

.dirty_89d1 {
    font-size: 1.25rem;
}

.old_f4cf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.outline_2872,
.main-pro-c7ab {
    text-align: center;
    margin: 2rem 0;
}

.gradient_8200,
.outline_265f {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.container-437f {
    margin: 2rem 0;
    text-align: center;
}

.paragraph-9f13 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.paragraph-9f13::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;
}

.tertiary_down_82d1 {
    position: relative;
    z-index: 1;
}

.in_3e70 {
    margin-bottom: 1rem;
}

.slow-b016 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.media-light-988a {
    margin-bottom: 3rem;
}

.paper_cdd0 {
    margin-top: 3rem;
}

.title_cool_9732 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .title_cool_9732 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title_cool_9732 .label-gas-185c {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dynamic_0e81 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dark-4f0b {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.secondary-94dd {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.list_outer_d19f {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .list_outer_d19f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list_outer_d19f {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.popup_right_f420 {
    margin-bottom: 1rem;
}

.block-150a img {
    margin-bottom: 1rem;
}

.video_green_26d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail_bronze_204d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.secondary-b893 {
    list-style: none;
}

.secondary-b893 li {
    margin-bottom: 0.5rem;
}

.secondary-b893 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.secondary-b893 a:hover {
    color: var(--accent-color);
}

.tabs-iron-f045 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fast-c72b {
    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);
}

.fast-c72b:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hover_452d {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hover_452d p {
    margin-bottom: 0.25rem;
}

.advanced-8bf8 {
    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) {
    .advanced-8bf8 {
        flex-direction: row;
    }
}

.summary-13d6 {
    text-align: center;
}

@media (min-width: 768px) {
    .summary-13d6 {
        text-align: left;
    }
}

.summary-13d6 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tooltip_slow_dccc {
    font-size: 0.75rem !important;
}

.new_c0e1 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.old_0cda {
    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);
    }
}

.notification_9809 {
    animation: fadeInUp 0.6s ease-out;
}

.east_dcda {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.outline_c2c5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline_c2c5 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.wrapper-focused-e3d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-focused-e3d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused_34d0 {
    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);
}

.focused_34d0 .footer_light_8eb0 {
    font-size: 1.25rem;
}

.focused_34d0 .notification_center_465b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.avatar_faf8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .avatar_faf8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-05e7 {
    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);
}

.image-05e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-166f {
    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);
}

.summary_out_70de {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.north_79bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_0027 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-8b11 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-8b11 .hover-static-1e78 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo-8b11 .dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-e2e6 {
    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);
}

.bright-9423 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.bright-9423 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.bright-9423 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.west-c51d {
    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);
}

.message-dde5 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pressed-f209 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pressed-f209 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pressed-f209 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);
}

.pressed-f209 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pressed-f209 input::placeholder {
    color: var(--text-muted);
}

.notice_a5f5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.over_cb7c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.over_cb7c input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.warm_739c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.warm_739c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hidden_under_1bef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_under_1bef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-lower-4cfd {
    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);
}

.nav-lower-4cfd .dirty_89d1 {
    font-size: 1.25rem;
}

.nav-lower-4cfd .old_f4cf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.outer_51cd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-b224 {
    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);
}

.primary-b224 .footer_light_8eb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-b224 .hover-static-1e78 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.primary-b224 .dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid-7d23 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_c191 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip_c191 .thumbnail_299f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip_c191 .menu-d7c0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-3814 {
    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);
}

.sidebar-old-b612 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .sidebar-old-b612 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature_d121 {
    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);
}

.feature_d121:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element_gas_0b27 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.main-b3eb {
    flex: 1;
}

.popup-7b01 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.caption_d18b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tooltip_5726 {
    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);
}

.tooltip_5726:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.panel_e2d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_e2d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_green_8e71 {
    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_green_8e71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_8dfa {
    font-size: 2rem;
    flex-shrink: 0;
}

.over-e1b0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pagination-first-07cb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled_yellow_fafa {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.section_white_d927 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-dc98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out_0f64 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.out_0f64 .avatar_orange_de03 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out_0f64 .focus-0455 {
    color: var(--text-gray);
    line-height: 1.6;
}

.action-1196 {
    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);
}

.preview-0a74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-854d {
    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);
}

.row-854d .footer_light_8eb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.row-854d .hover-static-1e78 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.row-854d .dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-6fa9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down-6fa9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_20a2 {
    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);
}

.tall_20a2:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.down_7a9e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .down_7a9e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.orange-ec71 {
    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);
}

.orange-ec71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_warm_06bf {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-d73f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-narrow-bb90 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.soft-0619 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.block-7421 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old_7117 {
    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);
}

.old_7117:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge-7329 {
    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);
}

.table-e452 {
    flex: 1;
}

.short-99f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tag_cf8a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.thumbnail_bright_eea4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up-b87d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large-6a42 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-6a42 .thumbnail_299f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.large-6a42 .menu-d7c0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main-pro-c7ab {
    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);
}

.top_e5cd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top_e5cd {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.light-0c97 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-0c97 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite-1330 {
    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);
}

.lite-1330:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent-77dd {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_paper_ee62 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-09a5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.motion_3e74 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.inner-82c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_e427 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip-47d0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title-inner-3ee9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_329e {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-0a74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-854d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.row-854d .hover-static-1e78 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-854d .dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_thick_f0cb {
    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);
}

.soft-95af {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .soft-95af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .soft-95af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-rough-1b9c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.link-rough-1b9c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-0146 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.section_4d72 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.thumbnail_da1c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.outer-dd3f {
    padding: 1.5rem;
}

.heading-stale-ecb6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.icon_copper_b79c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon_copper_b79c 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;
}

.icon_copper_b79c li:last-child {
    border-bottom: none;
}

.icon_copper_b79c li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.tabs-plasma-b506 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tabs-plasma-b506 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shadow_up_3ee9 {
    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);
}

.shadow_up_3ee9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.red_89c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article-f027 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mask_55ae {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.table-f7c8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.form-4a03 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-5b3c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip_paper_4bd6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.sidebar-brown-0d4d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_silver_d3c4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone_8754 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.heading_selected_d8d9 {
    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);
}

.paper-85a7 {
    text-align: center;
}

.pattern_slow_0fd5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_first_5c3a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.primary_fluid_4900 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover_5ec8 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_5ec8 .hover-static-1e78 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hover_5ec8 .dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
}

.small-7db6 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .small-7db6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small-7db6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-up-3b55 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.filter-up-3b55:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature-south-54bf {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.red_93fc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover-static-1e78 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.cold_34e3 {
    padding: 1.5rem;
}

.dim_9eae {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hovered_67d0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered_67d0 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;
}

.hovered_67d0 li:last-child {
    border-bottom: none;
}

.hovered_67d0 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.rough_dffb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.copper-98f6 {
    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);
}

.copper-98f6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_upper_49e7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_bdce {
    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);
}

.banner-166f {
    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;
}

.summary_out_70de {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.north_79bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion_823f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress-e472 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.media_0d7f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tabs-5358 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.summary-85a9 {
    display: flex;
    gap: 1rem;
}

.summary-85a9 .tertiary_9b25 {
    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;
}

.smooth_67a5 {
    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);
}

.thick-3756 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame-old-8d3e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame-old-8d3e 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-old-8d3e li:last-child {
    border-bottom: none;
}

.frame-old-8d3e li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.carousel_last_ebf3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .carousel_last_ebf3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_last_ebf3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description-pink-396e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.description-pink-396e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-fast-a64d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fluid_d671 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.avatar_orange_de03 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cool_bc36 {
    font-size: 1rem;
}

.inner_4457 {
    padding: 1.5rem;
}

.focus-0455 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.description-next-d218 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.description-next-d218 .paper-85a7 {
    text-align: center;
}

.description-next-d218 .hero_first_5c3a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.description-next-d218 .wrapper_eff4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dynamic_bd25 {
    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);
}

.dynamic_bd25:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.box_51d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_51d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-f35c {
    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);
}

.wrapper-f35c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer-45f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_tall_0638 {
    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);
}

.block-4650 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-01dd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip_black_b404 {
    color: var(--text-gray);
    line-height: 1.6;
}

.large-bdd9 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.button_e2f4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-6f5a {
    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);
}

.backdrop-clean-9feb {
    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;
}

.backdrop-clean-9feb.grid_hard_d091 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.backdrop-clean-9feb.video_4efe {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.backdrop-clean-9feb.tiny_5018 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.backdrop-clean-9feb.slider_red_e847 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.backdrop-clean-9feb.video-stale-8f91 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tag_huge_2c82 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hard-79f3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_2df9 {
    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);
}

.paragraph_8473 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.solid-7d23 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solid-7d23 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;
}

.solid-7d23 li:last-child {
    border-bottom: none;
}

.solid-7d23 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.hard-616d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hard-616d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hard-616d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border-warm-c6b5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.border-warm-c6b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-warm-c6b5.gas-8f90 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .border-warm-c6b5.gas-8f90 {
        grid-column: span 3;
    }
}

.module-42e7 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.border-warm-c6b5.gas-8f90 .module-42e7 {
    background: rgba(6, 182, 212, 0.1);
}

.middle-fc76 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.top-8996 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.border-warm-c6b5.gas-8f90 .top-8996 {
    color: var(--info-color);
}

.alert_lite_4775 {
    padding: 1.5rem;
    text-align: center;
}

.red-ed05 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.border-warm-c6b5.gas-8f90 .red-ed05 {
    color: var(--info-color);
}

.button_west_efcf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.first_05d2 {
    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 */
.article_west_6649 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .article_west_6649 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_brown_37c5 {
    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);
}

.hover_brown_37c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_5f70 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-b224 {
    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);
}

.dirty_89d1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper_1487 {
    flex: 1;
}

.panel-lower-c989 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.message-fresh-25cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary-tall-16d9 {
    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);
}

.panel_dbab {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.component-wood-7885 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.old_0cda {
    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);
}

.yellow_b627 {
  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);
}

.yellow_b627 .paper-85a7 {
    text-align: center;
}

.yellow_b627 .pattern_slow_0fd5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.yellow_b627 .hero_first_5c3a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tooltip_8220 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay-upper-9cc4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-tall-0bbc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container-7f75 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title-579c {
    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);
}

.west-860d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.background-current-f291 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-small-f150 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .form-small-f150 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form-small-f150 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite-6bd7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite-6bd7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-5812 {
    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);
}

.thick_5b1c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.layout-last-c2bd {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.badge_new_1a49 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge_new_1a49.light-a241 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.badge_new_1a49.card-upper-3a52 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.badge_new_1a49.light_0bb0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.container-8179 {
    padding: 1.5rem;
    text-align: center;
}

.active-b156 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bright_cd82 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bright_cd82 .hover_north_ae11 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.fast_bac8 {
    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);
}

.fast_bac8:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.liquid-4589 {
  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);
}

.iron-92b8 {
    text-align: center;
}

.iron-92b8 .pattern_slow_0fd5 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.iron-92b8 .hero_first_5c3a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.copper-287a { text-align: center; }
.copper-3e1a { text-align: left; }
.logo_stone_44c9 { text-align: right; }

.plasma-2ccc { margin-bottom: 0; }
.text_554f { margin-bottom: 0.5rem; }
.pro_1c1f { margin-bottom: 1rem; }
.picture_west_3c8d { margin-bottom: 1.5rem; }
.wood_bd90 { margin-bottom: 2rem; }

.breadcrumb_liquid_6840 { margin-top: 0; }
.soft_146d { margin-top: 0.5rem; }
.shadow-pink-c6a0 { margin-top: 1rem; }
.widget-thick-9aa3 { margin-top: 1.5rem; }
.hover_469f { margin-top: 2rem; }

.fn-hidden-e8cc { display: none; }
.fn-visible-e8cc { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .hard-74fa {
        padding: 6rem 0 3rem;
    }
    
    .pink-7580 {
        text-align: center;
    }
    
    .thumbnail_db1c {
        text-align: center;
    }
    
    .hover-1098 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .component_prev_1578,
    .picture-last-08fb,
    .paragraph-9f13,
    .secondary-94dd {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hard-74fa {
        background: none;
    }
}

/* Providers Section */
.gold_3958 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-7d96 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-7d96 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .caption-7d96 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_blue_8a3b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.footer_blue_8a3b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dynamic-413c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.orange_ca8a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.in-a0bb {
    list-style: none;
    padding: 0;
}

.in-a0bb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.in-a0bb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pro_d45d {
    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);
}

.pro_d45d p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.shadow_a379 {
    padding: var(--section-padding);
}

.right-a41b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-a41b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard_ccac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard_ccac:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-huge-0bf9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.backdrop-middle-484b {
    display: flex;
    flex-direction: column;
}

.advanced-f0e6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.new-0b7f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.dark_1035 {
    color: var(--accent-color);
}

.rough-4370 {
    font-size: 1.25rem;
}

.label-dark-7a8a {
    margin-bottom: 1rem;
}

.label-dark-7a8a p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.mask-2b8a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.filter-0228 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.paper-85a7 {
    text-align: center;
}

.pattern_slow_0fd5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero_first_5c3a {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.dynamic_9a6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel-1855 {
    margin: 2rem 0;
}

.component-6f96 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.component-6f96 .footer_light_8eb0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-4657 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.wrapper_next_8741 {
    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;
}

.wrapper_next_8741:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accent-0543 {
    font-size: 2rem;
}

.info_white_14f9 {
    display: flex;
    flex-direction: column;
}

.hero-active-f4c4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.gradient-over-5f7f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.feature-bronze-85a7 {
    padding: var(--section-padding);
}

.carousel_26ea {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .carousel_26ea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .carousel_26ea {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_fd7b {
    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);
}

.gallery_fd7b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gallery_fd7b .pattern_slow_0fd5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.gallery_fd7b .hero_first_5c3a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.gallery_fd7b .search-simple-40d9 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.list_yellow_312f {
    margin-top: 4rem;
}

.soft-1e68 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.highlight-bottom-b077 {
    overflow-x: auto;
}

.filter_silver_f748 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.filter_silver_f748 thead {
    background: var(--accent-color);
}

.filter_silver_f748 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.filter_silver_f748 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_silver_f748 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.filter_silver_f748 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.caption-solid-f156 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_50c4 {
    max-width: 900px;
    margin: 0 auto;
}

.status_c472 {
    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);
}

.status_c472:hover {
    border-color: var(--accent-color);
}

.static-8eca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.static-8eca h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.small_bae6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.status_c472.fn-active-e8cc .small_bae6 {
    transform: rotate(45deg);
}

.medium-0c56 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.status_c472.fn-active-e8cc .medium-0c56 {
    max-height: 1000px;
}

.medium-0c56 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.stone-29f9 {
    padding: var(--section-padding);
}

.bright-9423 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.fast-7a23 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_0135 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_0135 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.middle_95b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_4edd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accent-48b7 {
    font-size: 2rem;
}

.image-thick-b577 {
    color: var(--text-white);
    margin: 0;
}

.status-new-109f {
    list-style: none;
    padding: 0;
}

.status-new-109f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-new-109f li:last-child {
    border-bottom: none;
}

.label_plasma_432b {
    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);
}

.label_plasma_432b p {
    color: var(--success-color);
    margin: 0;
}

.logo_6477 {
    margin-top: 3rem;
}

.thick-3756 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.border_a29f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .border_a29f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-ac3f {
    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);
}

.first-676b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-ac3f p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.container-bronze-09b7 {
    padding: var(--section-padding);
}

.info-fresh-9567 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-fresh-9567 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.small_e9e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.small_e9e0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pagination_complex_66f3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.small_719e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.accordion_d938 {
    flex: 1;
}

.form-fresh-e376 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.module-e530 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.paragraph_e6ca {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-brown-4cfd {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-brown-4cfd:last-child {
    border-bottom: none;
}

/* Comparison Section */
.paper_cbaa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.first-b666 {
    padding: var(--section-padding);
}

.border-3318 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.pattern_up_b03a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_up_b03a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-east-f2c1 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_solid_27c5, .pressed_6b8e, .element_06a6 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.element_06a6 {
    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 */
.gradient_small_d018 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.content_out_1424 {
    margin: 2rem 0;
}

.table_hot_484f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-2724 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_14b1 {
    list-style: none;
    padding: 0;
}

.cool_14b1 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;
}

.cool_14b1 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cool_14b1 li:last-child {
    border-bottom: none;
}

.pressed-47a5 {
    text-align: center;
    margin-top: 2rem;
}

.brown_803c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.black_6ecd {
    padding: var(--section-padding);
}

.element-4469 {
    margin: 2rem 0;
}

.gold_3812 {
    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) {
    .gold_3812 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gold_3812:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gradient-cd94 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.summary-smooth-1cf6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.surface_white_2c2b {
    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;
}

.dropdown_upper_98af {
    flex: 1;
}

.hovered-f418 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background-fast-b934 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hot-fba2 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.new-9c84 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .new-9c84 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.slider-fa64 {
    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);
}

.slider-fa64:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider-fa64 .pattern_slow_0fd5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-fa64 .hero_first_5c3a {
    color: var(--text-gray);
    font-size: 1rem;
}

.liquid-07ab {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort-new-d829 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.sort-new-d829 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.notification-narrow-c9cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .notification-narrow-c9cd {
        grid-template-columns: 1fr 1fr;
    }
}

.pattern_89bd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim_e5c7 {
    margin-bottom: 1.5rem;
}

.dim_e5c7 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dim_e5c7 input,
.dim_e5c7 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;
}

.dim_e5c7 input:focus,
.dim_e5c7 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask-down-034e {
    width: 100%;
    margin-top: 1rem;
}

.surface-thick-b359 {
    display: flex;
    align-items: center;
}

.avatar_smooth_d276 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.east_319b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.cold-8ef3 {
    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;
}

.sidebar-b89f {
    color: var(--text-gray);
}

.breadcrumb_steel_b650 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-warm-a602 {
    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);
}

.footer-warm-a602 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.info_out_18f1 {
    margin-top: 3rem;
}

.alert_rough_a901 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.black-2014 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-2e35 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.sort-current-d118 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-current-d118:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.disabled-6cf1 {
    padding: var(--section-padding);
}

.light-43ba {
    margin: 2rem 0;
}

.over_9225 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight-63d4 {
    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;
}

.highlight-63d4:hover, .highlight-63d4.fn-active-e8cc {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.progress-mini-ea3a {
    display: none;
}

.progress-mini-ea3a.fn-active-e8cc {
    display: block;
}

.section_basic_cbc7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-4c0e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-orange-bfc8 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.footer-orange-bfc8 ul {
    list-style: none;
    padding: 0;
}

.footer-orange-bfc8 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.footer-orange-bfc8 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.focus-east-3b2b {
    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 */
.up-651d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev-c507 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow_40f9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pro_4e9a {
    color: var(--accent-color);
    margin: 0;
}

.detail_a1e3 {
    display: flex;
    gap: 1.5rem;
}

.narrow-e392 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.shadow-af81 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.west_908f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.west_908f.small-98e2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.west_908f.center_39c8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.west_908f.panel-8595 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.up-b223 {
    margin-top: 2rem;
}

.pro_c814 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert_slow_f107 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .alert_slow_f107 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_f937 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.message-complex-c9b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bright_8ee4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.clean_9772 {
    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 */
.breadcrumb_a6ba {
    padding: var(--section-padding);
}

.bronze_fda9 {
    margin: 2rem 0;
}

.orange-63be {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.highlight_4f59 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.section_action_6c5f {
    list-style: none;
    padding: 0;
}

.section_action_6c5f 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;
}

.section_action_6c5f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.section_action_6c5f li:last-child {
    border-bottom: none;
}

.accent-hard-d4fb {
    margin: 2rem 0;
}

.basic_d14b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice_full_c1dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notice_full_c1dc {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask-e1ea {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.selected-39a5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge_18a0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dark_2490 {
    margin-top: 2rem;
}

.popup-7b01 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.accordion_fresh_695d {
    list-style: none;
    padding: 0;
}

.fast-c75d {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.fast-c75d a {
    color: var(--accent-color);
    text-decoration: none;
}

.fast-c75d a:hover {
    text-decoration: underline;
}

.list_action_add4 {
    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 */
.last_12c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hovered-7480 {
    margin: 2rem 0;
}

.status-pink-d0d1 {
    margin-bottom: 3rem;
}

.status-pink-d0d1 .short-2724 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mask-top-90c6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.outline_pro_445f {
    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);
}

.outline_pro_445f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.backdrop-e333 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .backdrop-e333 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.motion_418d {
    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 */
.bronze_3170 {
    padding: var(--section-padding);
}

.description-ed12 {
    margin: 2rem 0;
}

.link_first_709f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.primary-1eea {
    overflow-x: auto;
    margin: 2rem 0;
}

.tall-4db0 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.banner_0b2b {
    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;
}

.carousel-blue-3701 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.banner_selected_7326 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .banner_selected_7326 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.basic_a73d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.basic_a73d .footer_light_8eb0 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.basic_a73d .hover-static-1e78 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paper-0a1a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.column_b285 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_105c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_105c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article_full_0281 {
    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;
}

.article_full_0281:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.button_88ff {
    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);
}

.smooth-8cb4 {
    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;
}

.alert_warm_f1c7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.icon-hard-b0a7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.west-3d40 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.grid-dim-2994 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border_543a {
    color: var(--text-white);
    font-weight: 600;
}

.status_f2ff {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout_pressed_fc14 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layout_pressed_fc14 .tertiary_9b25 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.purple-cff4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .purple-cff4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-94df {
    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);
}

.nav-94df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.nav-94df .pattern_slow_0fd5 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav-94df .hero_first_5c3a {
    color: var(--text-gray);
    font-size: 1rem;
}

.text-wide-b4d6 {
    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);
}

.bottom_91f4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.bottom_91f4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.inner-82c4 {
    margin: 2rem 0;
}

.background_e427 {
    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);
}

.background_e427:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.chip-47d0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert_6827 {
    flex: 1;
}

.title-inner-3ee9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.image_329e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.preview-0a74 {
    margin: 2rem 0;
}

.row-854d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.row-854d .hover-static-1e78 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.row-854d .dim_9eae {
    color: var(--text-gray);
    margin: 0;
}

.message_thick_f0cb {
    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);
}

.message_thick_f0cb .gradient_8200 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.paper-0a1a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.huge-7329 {
    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;
}

.table-e452 {
    flex: 1;
}

.tag_cf8a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.thumbnail_bright_eea4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.banner-166f {
    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;
}

.large_26ab {
    flex: 1;
}

.summary_out_70de {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.north_79bc {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.media_0d7f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tabs-5358 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.summary-85a9 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.summary-85a9 .tertiary_9b25 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.smooth_67a5 {
    margin-top: 2rem;
}

.smooth_67a5 .thick-3756 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.aside-cb80 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_selected_d8d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .heading_selected_d8d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_selected_d8d9 .paper-85a7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_fluid_4900 {
    margin: 2rem 0;
}

.hover_5ec8 {
    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 */
.notification-8f35 {
    padding: var(--section-padding);
}

.cold_34e3 {
    margin-top: 1rem;
}

.hovered_67d0 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hovered_67d0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hovered_67d0 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.hot_d27f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-95ca {
    margin: 2rem 0;
}

.link_a68d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.large_154a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.photo-b87e {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.wood-0b58 {
    margin: 2rem 0;
}

.secondary_steel_041b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.secondary_steel_041b .short-2724 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer-2c8b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outer-2c8b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hard-03d6 {
    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);
}

.container-cool-b973 {
    color: var(--text-white);
    font-weight: 600;
}

.heading-74c8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.accent-small-98fb {
    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);
}

.accent-small-98fb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.down_d69b {
    padding: var(--section-padding);
}

.hot_4481 {
    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;
}

.hot_4481:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.detail-west-1ec8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-west-1ec8 .first-676b {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-west-1ec8 .wood-d1eb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pro_cebc {
    flex: 1;
}

.tabs-b32f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element_1e8e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element_1e8e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.element_1e8e li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.fixed_489d {
    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);
}

.fixed_489d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fixed_489d strong {
    color: var(--warning-color);
}

/* Slots Section */
.heading-fixed-b663 {
    padding: var(--section-padding);
}

.section_white_d927 {
    margin: 2rem 0;
}

/* Table Games Section */
.current-6ba6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow-dc98 {
    margin: 2rem 0;
}

.out_0f64 {
    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);
}

.out_0f64:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.out_0f64 .avatar_orange_de03 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out_0f64 .focus-0455 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.action-1196 {
    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);
}

.action-1196 .gradient_8200 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.shade_silver_1cef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-9c95 {
    margin: 2rem 0;
}

.preview-f5c6 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail-772d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_prev_f32b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.narrow-8636 {
    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);
}

.narrow-8636:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.narrow-8636.fn-active-e8cc {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_0297 {
    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);
}

.lower_4ab2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lower_4ab2 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.chip_b82e {
    padding: var(--section-padding);
}

.dropdown_658f {
    margin: 2rem 0;
}

.focused_d840 {
    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);
}

.focused_d840:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .focused_d840 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-e380 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.backdrop_3094 {
    flex: 1;
}

.active-4db9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.paragraph-prev-66f1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.border_f381 {
    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;
}

.first-cc18 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup-brown-9bd6 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.card_9ff9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section_center_cb5c {
    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;
}

.section_center_cb5c:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active-25e3 {
    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);
}

.banner_top_770b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner_top_770b strong {
    color: var(--accent-color);
}

/* New Games Section */
.tag_medium_58a4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_short_8296 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .layout_short_8296 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout_short_8296 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge-1fea {
    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;
}

.badge-1fea:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component_glass_1e05 {
    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;
}

.photo_9092 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.wood-9041 {
    font-size: 2rem;
}

.media_4cfd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.avatar-mini-fcf0 {
    flex: 1;
}

.element_9181 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.center-d80f {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-full-41f4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.breadcrumb-stone-859a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.outline-1dc5 {
    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;
}

.surface-87e3 {
    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;
}

.surface-87e3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.primary-down-6eb0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh-94f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-huge-6fed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .notification-huge-6fed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-da04 {
    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);
}

.focus-3c66 {
    color: var(--text-white);
    font-weight: 600;
}

.element-9414 {
    color: var(--accent-color);
    font-weight: 600;
}

.notification_6d23 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.notification_6d23 strong {
    color: var(--accent-color);
}

/* Security Section */
.column_a1bc {
    padding: var(--section-padding);
}

/* Benefits Section */
.search_a95f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.aside-36f7 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.image_silver_53aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot-b4e0 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.backdrop_ac75 {
    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) {
    .backdrop_ac75 {
        flex-direction: column;
        gap: 1rem;
    }
}

.backdrop_ac75:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.backdrop_ac75 .banner-166f {
    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;
}

.backdrop_ac75 .large_26ab {
    flex: 1;
}

.backdrop_ac75 .summary_out_70de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.backdrop_ac75 .north_79bc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.filter-south-dce6 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter-south-dce6 .panel-lower-c989 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.filter-south-dce6 .outer_51cd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-south-dce6 .outer_51cd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.filter-south-dce6 .outer_51cd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.frame_fluid_4e50 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.dirty-9c95 {
    padding: var(--section-padding);
}

.paragraph_8305 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .paragraph_8305 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-dc82 {
    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);
}

.top-dc82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.top-dc82 .top_afab {
    font-size: 2rem;
    flex-shrink: 0;
}

.top-dc82 .medium-d758 {
    flex: 1;
}

.top-dc82 .thumbnail_299f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.top-dc82 .basic_453b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.card_pink_5783 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_pink_5783 .outline-bright-58ea {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card_pink_5783 .list-a9a6 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.card_pink_5783 .list-a9a6 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);
}

.card_pink_5783 .list-a9a6 li:last-child {
    border-bottom: none;
}

.card_pink_5783 .list-a9a6 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;
}

.card_pink_5783 .list-a9a6 li strong {
    color: var(--text-white);
}

.static_0b0f {
    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);
}

.static_0b0f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.static_0b0f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.badge_tiny_25cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pink_3f6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pink_3f6c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wrapper-complex-117e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.wrapper-complex-117e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.border-a7cb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_1814 {
    font-size: 2rem;
}

.bronze_5644 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mask-hard-9a85 {
    flex: 1;
}

.container-b7dd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container-b7dd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.container-b7dd li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.bronze-2dbe {
    margin-top: 3rem;
}

.orange-63be {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.highlight_4f59 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section_action_6c5f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section_action_6c5f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.section_action_6c5f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.section_action_6c5f li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.video_static_352b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-8a6a {
    margin: 2rem 0;
}

.blue_f341 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.blue_f341 .short-2724 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.copper_79c2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .copper_79c2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.description-5613 {
    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);
}

.description-5613:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.logo_c096 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.smooth-5e67 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.advanced-7edd {
    padding: var(--section-padding);
}

.yellow-c55c {
    margin: 2rem 0;
}

.silver_24e6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .silver_24e6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .silver_24e6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline-e1ef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outline-e1ef:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fixed_5000 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.backdrop_south_17e9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.video_9c42 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video_9c42.middle-a41b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.under_f5ae {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.pro-f2f7 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.message-bdab {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-5eda {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item_fresh_95f7 {
    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);
}

.item_fresh_95f7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item_fresh_95f7 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.pressed-2260 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort-glass-6a4e {
    margin: 2rem 0;
}

.tooltip-complex-6281 {
    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) {
    .tooltip-complex-6281 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tooltip-complex-6281:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tooltip-complex-6281::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);
}

.pattern_eafc {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.description-9b96 {
    flex: 1;
}

.white-25b8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert_cold_6c4e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert_cold_6c4e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.full_ff37 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-steel-1c75 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider_tall_030c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider_tall_030c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_b994 {
    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);
}

.article-aec6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tabs-c648 {
    flex: 1;
}

.medium_9a79 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.slider-fd2a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.backdrop-bottom-c126 {
    margin-top: 2rem;
    text-align: center;
}

.lower-4c47 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lower-4c47 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.box_51d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_51d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-f35c {
    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);
}

.wrapper-f35c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.wrapper-f35c .red_89c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper-f35c .article-f027 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.wrapper-f35c .mask_55ae {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.wrapper-f35c .table-f7c8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.large_4651 {
    padding: var(--section-padding);
}

.modal_tall_0638 .article_dim_67a3 {
    flex: 1;
}

/* Promo Calendar Section */
.progress-medium-8bab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-south-fc8a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary-south-fc8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_0182 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notice_6b6f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.box_e9d8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link_huge_b1bc {
    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);
}

.image_d2f7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.menu-f2ac {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.pattern-2a8a {
    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);
}

.pattern-2a8a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern-2a8a strong {
    color: var(--accent-color);
}

/* Requirements Section */
.input_gas_3fdf {
    padding: var(--section-padding);
}

.fluid-0d92 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fluid-0d92 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-eb9d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-c7fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.disabled_7cb2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_7cb2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.container-4dd3 {
    margin-top: 3rem;
}

.container-4dd3 .orange-63be {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.container-4dd3 .highlight_4f59 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container-4dd3 .section_action_6c5f {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.container-4dd3 .section_action_6c5f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.container-4dd3 .section_action_6c5f li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.container-4dd3 .section_action_6c5f li strong {
    color: var(--warning-color);
}

.backdrop-57f6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop-57f6 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.small-7310 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-warm-84ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-warm-84ab {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-0a26 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.background-0a26 .short-2724 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.grid-motion-5e60 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-rough-0dbc {
    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);
}

.image-rough-0dbc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.liquid-9bc1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_1d77 {
    flex: 1;
}

.filter-8e0b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.motion-8cb4 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.iron_bb53 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.title-a858 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.sidebar_bb0d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .sidebar_bb0d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.copper_ebbd {
    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);
}

.copper_ebbd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module-black-ef6b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gradient-thick-9196 {
    color: var(--text-gray);
    font-size: 1rem;
}

.sort-new-d829 {
    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);
}

.pink-4b51 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.pink-4b51 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.modal_hot_7bab { width:100%; max-width:1200px; padding:0 16px; box-sizing:border-box; }
* { box-sizing:border-box; }

img, video, svg { max-width:100%; height:auto; display:block; }
.menu_purple_9715, .mask_a90d { max-width:100%; height:auto; }

.active-8d90, .hidden_c0a3, .left-8f68 { white-space:normal; }

.pink-7580,
.thumbnail_db1c,
.article_west_6649,
.box_51d8,
.preview-0a74,
.form-small-f150 {
  flex-wrap:wrap;
}

[class*="grid"],
.sidebar_bb0d,
.silver_24e6,
.title_cool_9732 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.hard-74fa img,
.thumbnail_db1c img,
.block_8fd6 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.red-3335, .steel-b3a6,
.selected-caab, .row-3c73 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.highlight-bottom-b077 { width:100%; overflow-x:auto; }
.highlight-bottom-b077 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.caption-7d96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .caption-7d96 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.footer_blue_8a3b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.carousel_26ea,
.gradient_5845,
.slider-95eb,
.next_eba5,
.new-9c84,
.sidebar_bb0d,
.silver_24e6,
.title_cool_9732,
.liquid-4589,
.dropdown_658f,
.caption-7d96 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .carousel_26ea,
  .gradient_5845,
  .slider-95eb,
  .next_eba5,
  .new-9c84,
  .sidebar_bb0d,
  .silver_24e6,
  .title_cool_9732,
  .liquid-4589,
  .dropdown_658f,
  .caption-7d96 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.gallery_fd7b,
.slider-fa64,
.copper_ebbd,
.label-gas-185c,
.outline-e1ef,
.iron-92b8,
.focused_d840,
.footer_blue_8a3b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.active-4778,
.slider_medium_f98c,
.overlay-4628 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.active-4778 > *,
.slider_medium_f98c > *,
.overlay-4628 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 3ca7 */
.phantom-card-n1 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
