/* {$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;
}

.selected_b8fc {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.silver-c7d0 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .silver-c7d0 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .silver-c7d0 {
        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 */
.down_f2f2 {
    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);
}

.component_first_8f7c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .component_first_8f7c {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .gradient_yellow_e23a {
        grid-column: 1;
    }
    
    .link-db2a {
        grid-column: 2;
    }
    
    .main-6556 {
        grid-column: 3;
    }
}

.gradient_yellow_e23a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.gradient_yellow_e23a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.panel-90e1 {
    display: none;
}

@media (min-width: 1024px) {
    .panel-90e1 {
        display: block;
    }
}

/* Grouped Navigation */
.banner_ac1f {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.rough_0142 {
    position: relative;
}

.slider_action_4087 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.rough_0142 .component-8b50 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.component-8b50 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.first-31fb {
    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;
}

.first-31fb:hover,
.first-31fb.fn-active-6c99 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.block-next-43b4 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .block-next-43b4 {
        display: flex;
    }
}

/* Mobile Register Button */
.link-db2a {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .link-db2a {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.solid-93a1 {
    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;
}

.solid-93a1::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 */
.main-6556 {
    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) {
    .main-6556 {
        display: none;
    }
}

.main-6556 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.main-6556.fn-active-6c99 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.main-6556.fn-active-6c99 span:nth-child(2) {
    opacity: 0;
}

.main-6556.fn-active-6c99 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.outline_1628 {
    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;
}

.outline_1628.fn-active-6c99 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.card-slow-367a {
    overflow: hidden;
}

.pagination-250c {
    list-style: none;
    padding: 0.75rem 0;
}

.fast-6bc9 {
    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;
}

.fast-6bc9:hover,
.fast-6bc9.fn-active-6c99 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.fast-6bc9.focus_hard_eddd {
    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;
}

.fast-6bc9.focus_hard_eddd::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 */
.green_e821 {
    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;
}

.input-hard-31cc {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.input-hard-31cc:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.header_21d6 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.header_21d6:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.breadcrumb_cold_1cc6 {
    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;
}

.breadcrumb_cold_1cc6:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.cold_40a7 {
    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;
}

.message-8403 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.message-8403:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.filter-685d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.filter-685d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.sidebar_bottom_5894 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.sidebar_bottom_5894: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);
}

.prev_28ec {
    font-size: 1em;
    font-weight: 700;
}

.search-9b3d {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.column-over-85e4 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.column-over-85e4::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;
}

.preview_771f {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .preview_771f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.middle-5023 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.left_3d12 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.smooth-44f6 {
    margin-bottom: 2rem;
}

.article_hot_14d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .article_hot_14d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-green-0367 {
    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);
}

.sort-0d34 {
    font-size: 1.5rem;
}

.hard_8a1a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.sidebar_e102 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.basic_fa8d {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.basic_fa8d:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.avatar-gold-02d3 {
    text-align: center;
    margin-bottom: 3rem;
}

.picture_static_c5fb {
    margin-bottom: 1rem;
}

.shadow_mini_96c7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.secondary_c623 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .secondary_c623 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .secondary_c623.short-da78 {
        direction: rtl;
    }
    
    .secondary_c623.short-da78 > * {
        direction: ltr;
    }
}

.status_2775 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.status_2775:first-child {
    margin-top: 0;
}

.message-black-daf8 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mask_steel_4afa {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.mask_steel_4afa:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.blue-9abd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue-9abd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down-6ed7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.stone-3501 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.alert_552c {
    list-style: none;
}

.alert_552c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert_552c li:last-child {
    border-bottom: none;
}

/* Games Features */
.section-lite-7b9a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.message_6d5a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pro_0d65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.surface_outer_3934 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.breadcrumb_360c {
    margin: 2rem 0;
}

.header_67ea {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.list-last-1263 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.list_6b87 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.button_a423 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.search_short_c3bd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_short_c3bd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-motion-dd42 {
    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);
}

.modal-motion-dd42:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.bottom_ca44 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.text-948a {
    font-size: 1.5rem;
}

.filter_soft_6ae5 {
    color: var(--accent-color);
    margin: 0;
}

.background_0b10 {
    list-style: none;
}

.background_0b10 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.background_0b10 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.sidebar-red-67c4 {
    margin: 2rem 0;
}

.lite_a235 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.column_d2ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .column_d2ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_lite_abf8 {
    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);
}

.cold-6fb4 {
    font-size: 1.25rem;
}

.center-fefb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.fresh_edea,
.text-e288 {
    text-align: center;
    margin: 2rem 0;
}

.border-gold-8f61,
.hovered-d0ce {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.notice-820a {
    margin: 2rem 0;
    text-align: center;
}

.pagination-plasma-b6f7 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pagination-plasma-b6f7::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;
}

.gradient_fixed_e017 {
    position: relative;
    z-index: 1;
}

.avatar_e252 {
    margin-bottom: 1rem;
}

.form_409e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pattern_tall_da73 {
    margin-bottom: 3rem;
}

.image-iron-21ee {
    margin-top: 3rem;
}

.tabs-bb22 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tabs-bb22 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-bb22 .video-green-0367 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-6d17 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.warm-3daa {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.prev_5489 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.backdrop-outer-bbab {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .backdrop-outer-bbab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop-outer-bbab {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.easy-b80a {
    margin-bottom: 1rem;
}

.focused_b5ad img {
    margin-bottom: 1rem;
}

.secondary-old-dc8e {
    color: var(--text-gray);
    line-height: 1.6;
}

.text_pressed_77d2 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.glass_3131 {
    list-style: none;
}

.glass_3131 li {
    margin-bottom: 0.5rem;
}

.glass_3131 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.glass_3131 a:hover {
    color: var(--accent-color);
}

.heading_aeb2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gallery-pro-3287 {
    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);
}

.gallery-pro-3287:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.info-purple-d2de {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.info-purple-d2de p {
    margin-bottom: 0.25rem;
}

.slider_medium_6d9e {
    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) {
    .slider_medium_6d9e {
        flex-direction: row;
    }
}

.dropdown-8d4d {
    text-align: center;
}

@media (min-width: 768px) {
    .dropdown-8d4d {
        text-align: left;
    }
}

.dropdown-8d4d p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bottom_929f {
    font-size: 0.75rem !important;
}

.table-a01e {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tall_476a {
    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);
    }
}

.footer-eb44 {
    animation: fadeInUp 0.6s ease-out;
}

.motion-9b05 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.message_33ea {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_33ea {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.caption-3b2b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-3b2b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-new-8ef0 {
    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);
}

.progress-new-8ef0 .pro_0d65 {
    font-size: 1.25rem;
}

.progress-new-8ef0 .icon-077a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.heading_white_5f00 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading_white_5f00 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright-a5ae {
    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);
}

.bright-a5ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.surface_focused_7577 {
    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);
}

.header_solid_3556 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hidden-211e {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-7f76 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple-14d2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple-14d2 .surface_outer_3934 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple-14d2 .component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.text_dbfb {
    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);
}

.copper_b26f {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.copper_b26f img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.copper_b26f img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.widget-inner-40a0 {
    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);
}

.box-4d85 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prev-6446 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prev-6446 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.prev-6446 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);
}

.prev-6446 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.prev-6446 input::placeholder {
    color: var(--text-muted);
}

.hidden_02db {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.form_1344 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.form_1344 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.title-0afc {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.title-0afc:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.column_d2ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_d2ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_lite_abf8 {
    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);
}

.card_lite_abf8 .cold-6fb4 {
    font-size: 1.25rem;
}

.card_lite_abf8 .center-fefb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.huge-f73a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action_058b {
    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);
}

.action_058b .pro_0d65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action_058b .surface_outer_3934 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_058b .component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_huge_6578 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip-complex-a732 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tooltip-complex-a732 .background-2f2d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip-complex-a732 .info-bottom-1a5d {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple_48cc {
    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);
}

.up-05fb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .up-05fb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-warm-f84d {
    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);
}

.column-warm-f84d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section-bright-993a {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.small_c466 {
    flex: 1;
}

.item_tiny_a081 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.accordion_a0c3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_dynamic_afd3 {
    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);
}

.background_dynamic_afd3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.texture_8ac2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_8ac2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list_0c6c {
    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);
}

.list_0c6c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.simple_06d5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_thick_5496 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.column_small_5da4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gold-8a70 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.basic-6c70 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accordion_0a40 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-bottom-2132 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.message-bottom-2132 .message-00e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message-bottom-2132 .frame_red_e3d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-liquid-3687 {
    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);
}

.nav_11bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-db2b {
    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);
}

.main-db2b .pro_0d65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main-db2b .surface_outer_3934 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main-db2b .component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.top-a875 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .top-a875 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-rough-0924 {
    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);
}

.tooltip-rough-0924:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.secondary_fast_4f0a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_fast_4f0a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-narrow-2e40 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title-narrow-2e40:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.soft_eca5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-c010 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.list-last-1263 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.layout-silver-d4cb {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.disabled_plasma_7e11 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused_270c {
    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);
}

.focused_270c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-gas-486e {
    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);
}

.sidebar_soft_6a34 {
    flex: 1;
}

.fixed-67bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.module-south-e36c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pressed_2e4a {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-steel-6d96 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_d966 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal_d966 .background-2f2d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_d966 .info-bottom-1a5d {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-e288 {
    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);
}

.header_cool_248c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_cool_248c {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.new_703c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new_703c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-bright-bc4d {
    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);
}

.pagination-bright-bc4d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section-fd68 {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium_dbfb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.action_e9c0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.thumbnail-6851 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hover_b838 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-fresh-d752 {
    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);
}

.layout-fff8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.nav_4575 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_orange_3996 {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav_11bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main-db2b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.main-db2b .surface_outer_3934 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main-db2b .component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.center_87c8 {
    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);
}

.form-pro-dfea {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .form-pro-dfea {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form-pro-dfea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze-1cc8 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.bronze-1cc8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table_red_fd4d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active_fc13 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card-north-71d2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.block-e5ce {
    padding: 1.5rem;
}

.fresh_39f9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.active_c67a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_c67a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.active_c67a li:last-child {
    border-bottom: none;
}

.active_c67a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.large-c9d0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .large-c9d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-over-e6a7 {
    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);
}

.info-over-e6a7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-eb7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.gold-9f94 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.heading_1202 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.chip_f01b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border-in-5769 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_brown_718b {
    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);
}

.link-paper-226e {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_center_47b8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination_smooth_4071 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_new_2f7e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.secondary_5372 {
    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);
}

.layout-4377 {
    text-align: center;
}

.texture_advanced_8680 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel_32fd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.silver-39b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_e023 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_e023 .surface_outer_3934 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_e023 .component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_yellow_eab7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_yellow_eab7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_yellow_eab7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.caption-bottom-fb8e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.caption-bottom-fb8e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_small_796a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_bee9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.surface_outer_3934 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.slow_d93c {
    padding: 1.5rem;
}

.component-bottom-f9e7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dynamic_e07e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dynamic_e07e 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;
}

.dynamic_e07e li:last-child {
    border-bottom: none;
}

.dynamic_e07e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.wood-826e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.active-f3b4 {
    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);
}

.active-f3b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.narrow_f951 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-fluid-b3a4 {
    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);
}

.surface_focused_7577 {
    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;
}

.header_solid_3556 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden-211e {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge_prev_3566 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_658d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.small_3a5c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-63e3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.brown-fc7f {
    display: flex;
    gap: 1rem;
}

.brown-fc7f .preview_plasma_6f92 {
    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;
}

.out-a0ad {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bright-8b11 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.over_61c6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.over_61c6 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;
}

.over_61c6 li:last-child {
    border-bottom: none;
}

.over_61c6 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.article_blue_fc75 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .article_blue_fc75 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article_blue_fc75 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-205a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.medium-205a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide-146c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.menu-0eb9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.message-00e0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.lite_dce8 {
    font-size: 1rem;
}

.lower_87b6 {
    padding: 1.5rem;
}

.frame_red_e3d3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.chip-fluid-cf60 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.chip-fluid-cf60 .layout-4377 {
    text-align: center;
}

.chip-fluid-cf60 .steel_32fd {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.chip-fluid-cf60 .image_7557 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.old-27e4 {
    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);
}

.old-27e4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.gradient-hard-de43 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-hard-de43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_wood_3530 {
    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);
}

.sort_wood_3530:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border_slow_f6e5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim-62bb {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary-6a34 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-motion-0994 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop_876b {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_active_2d17 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient_first_b50d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze-326a {
    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);
}

.smooth-5d88 {
    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;
}

.smooth-5d88.column_blue_767d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.smooth-5d88.south-91c6 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.smooth-5d88.grid-narrow-5059 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.smooth-5d88.last-0d2c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.smooth-5d88.iron-adae {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.black_bc94 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notification_up_c543 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-574d {
    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);
}

.form-282f {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_huge_6578 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_huge_6578 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;
}

.aside_huge_6578 li:last-child {
    border-bottom: none;
}

.aside_huge_6578 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.table_0daf {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .table_0daf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .table_0daf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_cold_b120 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.panel_cold_b120:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.panel_cold_b120.slider_9a5d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .panel_cold_b120.slider_9a5d {
        grid-column: span 3;
    }
}

.aside_fast_fee1 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.panel_cold_b120.slider_9a5d .aside_fast_fee1 {
    background: rgba(6, 182, 212, 0.1);
}

.overlay_old_db4f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hover_cool_7ffb {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.panel_cold_b120.slider_9a5d .hover_cool_7ffb {
    color: var(--info-color);
}

.old-1a24 {
    padding: 1.5rem;
    text-align: center;
}

.iron-bbd4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.panel_cold_b120.slider_9a5d .iron-bbd4 {
    color: var(--info-color);
}

.banner_d05d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.item_pink_f4b3 {
    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 */
.soft-316f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft-316f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-1db3 {
    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);
}

.module-1db3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption_active_f169 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.action_058b {
    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);
}

.cold-6fb4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_35e0 {
    flex: 1;
}

.lite_a235 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.notice_d120 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_333c {
    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);
}

.paper-7395 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.banner-medium-1815 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tall_476a {
    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);
}

.stone_d889 {
  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);
}

.stone_d889 .layout-4377 {
    text-align: center;
}

.stone_d889 .texture_advanced_8680 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.stone_d889 .steel_32fd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tabs_pink_1331 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medium-34dc {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-d255 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message-97fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.surface-upper-202a {
    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);
}

.element_stone_cbf5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-smooth-d4bc {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean-0de8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .clean-0de8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean-0de8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_258e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort_258e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge_silver_d8d9 {
    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);
}

.background-5d2f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.banner-ff3c {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.backdrop_6f43 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.backdrop_6f43.liquid-b6db {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.backdrop_6f43.right_6667 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.backdrop_6f43.widget_paper_ca4a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.card_gold_a89a {
    padding: 1.5rem;
    text-align: center;
}

.purple-3575 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shade-4514 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.shade-4514 .slider-214b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.pressed_0676 {
    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);
}

.pressed_0676:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.rough_a755 {
  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);
}

.input_96f1 {
    text-align: center;
}

.input_96f1 .texture_advanced_8680 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.input_96f1 .steel_32fd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.label_924e { text-align: center; }
.out_b1d4 { text-align: left; }
.chip_green_bfba { text-align: right; }

.gallery-557e { margin-bottom: 0; }
.brown_5c2c { margin-bottom: 0.5rem; }
.white-274c { margin-bottom: 1rem; }
.gradient_ffef { margin-bottom: 1.5rem; }
.bottom-7d04 { margin-bottom: 2rem; }

.gradient_abda { margin-top: 0; }
.outline_1af1 { margin-top: 0.5rem; }
.bronze_ec04 { margin-top: 1rem; }
.box_down_29b8 { margin-top: 1.5rem; }
.thumbnail_wide_0674 { margin-top: 2rem; }

.fn-hidden-6c99 { display: none; }
.fn-visible-6c99 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .column-over-85e4 {
        padding: 6rem 0 3rem;
    }
    
    .preview_771f {
        text-align: center;
    }
    
    .secondary_c623 {
        text-align: center;
    }
    
    .article_hot_14d1 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .down_f2f2,
    .outline_1628,
    .pagination-plasma-b6f7,
    .prev_5489 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .column-over-85e4 {
        background: none;
    }
}

/* Providers Section */
.breadcrumb-copper-ed68 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_718c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_718c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail_718c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card_a678 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.card_a678:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.background_hard_eadd {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.search-d11c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fast_8166 {
    list-style: none;
    padding: 0;
}

.fast_8166 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.fast_8166 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.avatar_f7b9 {
    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);
}

.avatar_f7b9 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.box_c910 {
    padding: var(--section-padding);
}

.summary-gold-1fcd {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-gold-1fcd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface-2a51 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface-2a51:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.widget_huge_ea98 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tooltip_first_143c {
    display: flex;
    flex-direction: column;
}

.hidden_cold_0d96 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.caption_white_266b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.component_7e3e {
    color: var(--accent-color);
}

.soft_9b1d {
    font-size: 1.25rem;
}

.surface_paper_2b80 {
    margin-bottom: 1rem;
}

.surface_paper_2b80 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.button_glass_215b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.title_988c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.layout-4377 {
    text-align: center;
}

.texture_advanced_8680 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel_32fd {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.active-pro-dfda {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-e860 {
    margin: 2rem 0;
}

.text_72fd {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.text_72fd .pro_0d65 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_6cf6 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.title_purple_6d21 {
    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;
}

.title_purple_6d21:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.steel-514e {
    font-size: 2rem;
}

.wrapper-active-d23f {
    display: flex;
    flex-direction: column;
}

.shadow-0db6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.first_fe53 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.alert_under_caa3 {
    padding: var(--section-padding);
}

.backdrop_883c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop_883c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .backdrop_883c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame_paper_24d1 {
    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);
}

.frame_paper_24d1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.frame_paper_24d1 .texture_advanced_8680 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.frame_paper_24d1 .steel_32fd {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.frame_paper_24d1 .sort_eea8 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.wide_43da {
    margin-top: 4rem;
}

.paper-4a5e {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.header-inner-08ca {
    overflow-x: auto;
}

.media_center_2fc9 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.media_center_2fc9 thead {
    background: var(--accent-color);
}

.media_center_2fc9 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.media_center_2fc9 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.media_center_2fc9 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.media_center_2fc9 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.focused-28eb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_plasma_2ec9 {
    max-width: 900px;
    margin: 0 auto;
}

.card-18bc {
    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);
}

.card-18bc:hover {
    border-color: var(--accent-color);
}

.west-645a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.west-645a h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.lite-36c0 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.card-18bc.fn-active-6c99 .lite-36c0 {
    transform: rotate(45deg);
}

.element_f9e9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.card-18bc.fn-active-6c99 .element_f9e9 {
    max-height: 1000px;
}

.element_f9e9 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.tag-270e {
    padding: var(--section-padding);
}

.copper_b26f {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.caption-iron-cfa3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_740a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .mask_740a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.white_1b0e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-full-a05e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cold-826f {
    font-size: 2rem;
}

.article-c4a2 {
    color: var(--text-white);
    margin: 0;
}

.huge_dba9 {
    list-style: none;
    padding: 0;
}

.huge_dba9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huge_dba9 li:last-child {
    border-bottom: none;
}

.sidebar-fast-12ad {
    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);
}

.sidebar-fast-12ad p {
    color: var(--success-color);
    margin: 0;
}

.inner-fd8d {
    margin-top: 3rem;
}

.bright-8b11 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.middle_170d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .middle_170d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter-next-8ce9 {
    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);
}

.over_467e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.filter-next-8ce9 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.middle-14d1 {
    padding: var(--section-padding);
}

.filter-dim-8304 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-dim-8304 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-f079 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sidebar-f079:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.content_light_2be9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.green_a6da {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.button-prev-4c21 {
    flex: 1;
}

.chip-light-77a6 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.status-steel-8340 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.photo_last_9725 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-stone-6d46 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-stone-6d46:last-child {
    border-bottom: none;
}

/* Comparison Section */
.slow-7e87 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dynamic-3141 {
    padding: var(--section-padding);
}

.gallery_fast_cc3e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.status-middle-aca1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status-middle-aca1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-action-3849 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-d0eb, .in-87ec, .green_02ab {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.green_02ab {
    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 */
.hero-silver-4f5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.current-7525 {
    margin: 2rem 0;
}

.title_12a2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-99a6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dropdown-11e5 {
    list-style: none;
    padding: 0;
}

.dropdown-11e5 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;
}

.dropdown-11e5 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.dropdown-11e5 li:last-child {
    border-bottom: none;
}

.widget_large_c4f0 {
    text-align: center;
    margin-top: 2rem;
}

.photo-9b8a {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hover_mini_d77d {
    padding: var(--section-padding);
}

.item_north_a716 {
    margin: 2rem 0;
}

.content-6931 {
    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) {
    .content-6931 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.content-6931:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_basic_c944 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.short-e4d8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.caption-south-c777 {
    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;
}

.menu_35a5 {
    flex: 1;
}

.summary_8ad9 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.active-2902 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.panel_fresh_704b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.yellow_c25a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .yellow_c25a {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.secondary_99ed {
    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);
}

.secondary_99ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary_99ed .texture_advanced_8680 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.secondary_99ed .steel_32fd {
    color: var(--text-gray);
    font-size: 1rem;
}

.west-143d {
    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);
}

.popup_f462 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.popup_f462 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.green-6441 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .green-6441 {
        grid-template-columns: 1fr 1fr;
    }
}

.progress-in-a8fb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-9055 {
    margin-bottom: 1.5rem;
}

.table-9055 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.table-9055 input,
.table-9055 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;
}

.table-9055 input:focus,
.table-9055 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.header-easy-5df2 {
    width: 100%;
    margin-top: 1rem;
}

.surface_huge_2f6f {
    display: flex;
    align-items: center;
}

.dropdown_fresh_4eda {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.card-silver-7562 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.under-7d91 {
    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;
}

.filter-df61 {
    color: var(--text-gray);
}

.rough_7429 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.search_dee6 {
    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);
}

.search_dee6 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.north-f6d4 {
    margin-top: 3rem;
}

.video_4014 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.media_center_c140 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-bc21 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.sort_9193 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sort_9193:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.wide-5814 {
    padding: var(--section-padding);
}

.modal-dirty-303e {
    margin: 2rem 0;
}

.advanced_55e5 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.mask_tiny_5793 {
    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;
}

.mask_tiny_5793:hover, .mask_tiny_5793.fn-active-6c99 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.table-first-f713 {
    display: none;
}

.table-first-f713.fn-active-6c99 {
    display: block;
}

.disabled_iron_541e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.article-4690 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.basic-f8a6 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.basic-f8a6 ul {
    list-style: none;
    padding: 0;
}

.basic-f8a6 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.basic-f8a6 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.soft_933f {
    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 */
.slow-b876 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.blue-191b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-75cf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb_blue_c755 {
    color: var(--accent-color);
    margin: 0;
}

.component_7f65 {
    display: flex;
    gap: 1.5rem;
}

.top-c620 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.basic-53b8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.summary-91b2 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.summary-91b2.popup-746b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.summary-91b2.fluid_b418 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.summary-91b2.red_dc05 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.advanced-8378 {
    margin-top: 2rem;
}

.highlight_4809 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.status-hot-a0d7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .status-hot-a0d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-7df8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.footer_complex_3682 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.popup_637c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.component-dirty-04a6 {
    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 */
.short_6a6e {
    padding: var(--section-padding);
}

.alert-silver-3edc {
    margin: 2rem 0;
}

.column-fixed-6685 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.light_e2da {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.east_5d9a {
    list-style: none;
    padding: 0;
}

.east_5d9a 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;
}

.east_5d9a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.east_5d9a li:last-child {
    border-bottom: none;
}

.component_new_5f4c {
    margin: 2rem 0;
}

.gold_7400 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider_right_d114 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider_right_d114 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accordion-pro-00b5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fresh_de95 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-677c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.carousel-fresh-e9f8 {
    margin-top: 2rem;
}

.item_tiny_a081 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.hero-lite-dd8e {
    list-style: none;
    padding: 0;
}

.avatar-4bba {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.avatar-4bba a {
    color: var(--accent-color);
    text-decoration: none;
}

.avatar-4bba a:hover {
    text-decoration: underline;
}

.nav_07a5 {
    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 */
.stone_61d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-98d8 {
    margin: 2rem 0;
}

.hard-d971 {
    margin-bottom: 3rem;
}

.hard-d971 .main-99a6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.icon_1e7d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hidden_gas_8b8c {
    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);
}

.hidden_gas_8b8c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hard-efcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hard-efcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_3ce5 {
    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 */
.box-68f0 {
    padding: var(--section-padding);
}

.main_current_2017 {
    margin: 2rem 0;
}

.thick-115a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.red_f875 {
    overflow-x: auto;
    margin: 2rem 0;
}

.secondary-bddf {
    background: rgba(6, 182, 212, 0.1) !important;
}

.module_6f3c {
    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;
}

.dropdown_gold_a729 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.overlay_d54f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .overlay_d54f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input_iron_9074 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input_iron_9074 .pro_0d65 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.input_iron_9074 .surface_outer_3934 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_last_9c37 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.slider-hot-3245 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-54b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-54b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion_3624 {
    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;
}

.motion_3624:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.cool_e8e1 {
    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);
}

.paragraph_4b0a {
    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;
}

.under_3af4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.brown_f022 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.down-6e4d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sidebar_orange_8d4a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-easy-5b06 {
    color: var(--text-white);
    font-weight: 600;
}

.under-3037 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal_05df {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal_05df .preview_plasma_6f92 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.primary_dd28 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary_dd28 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.picture_clean_6cd8 {
    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);
}

.picture_clean_6cd8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.picture_clean_6cd8 .texture_advanced_8680 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.picture_clean_6cd8 .steel_32fd {
    color: var(--text-gray);
    font-size: 1rem;
}

.medium-eb73 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-motion-7611 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.feature-motion-7611 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.hover_b838 {
    margin: 2rem 0;
}

.mask-fresh-d752 {
    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);
}

.mask-fresh-d752:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.layout-fff8 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.content-07ac {
    flex: 1;
}

.nav_4575 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_orange_3996 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.nav_11bc {
    margin: 2rem 0;
}

.main-db2b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-db2b .surface_outer_3934 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.main-db2b .component-bottom-f9e7 {
    color: var(--text-gray);
    margin: 0;
}

.center_87c8 {
    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);
}

.center_87c8 .border-gold-8f61 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.mask_last_9c37 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.secondary-gas-486e {
    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;
}

.sidebar_soft_6a34 {
    flex: 1;
}

.module-south-e36c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.pressed_2e4a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.surface_focused_7577 {
    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;
}

.hero-8683 {
    flex: 1;
}

.header_solid_3556 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hidden-211e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.small_3a5c {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.hero-63e3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.brown-fc7f {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.brown-fc7f .preview_plasma_6f92 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.out-a0ad {
    margin-top: 2rem;
}

.out-a0ad .bright-8b11 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.blue_3779 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_5372 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .secondary_5372 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_5372 .layout-4377 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-39b4 {
    margin: 2rem 0;
}

.paragraph_e023 {
    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 */
.middle_3c20 {
    padding: var(--section-padding);
}

.slow_d93c {
    margin-top: 1rem;
}

.dynamic_e07e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.dynamic_e07e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.dynamic_e07e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.complex_1c3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-fa09 {
    margin: 2rem 0;
}

.shadow-large-406a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.brown-9663 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tag-04af {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.card_large_7850 {
    margin: 2rem 0;
}

.static_9d11 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.static_9d11 .main-99a6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.first_b9ef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .first_b9ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro_2083 {
    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);
}

.picture_easy_60f5 {
    color: var(--text-white);
    font-weight: 600;
}

.header-paper-8a28 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.row-f3b8 {
    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);
}

.row-f3b8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.grid_static_9c71 {
    padding: var(--section-padding);
}

.overlay_cdd6 {
    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;
}

.overlay_cdd6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tall-ca79 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tall-ca79 .over_467e {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-ca79 .texture_middle_c67a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.secondary_yellow_c905 {
    flex: 1;
}

.hero_focused_7ec1 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content_medium_2f15 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content_medium_2f15 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.content_medium_2f15 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.modal_warm_7d53 {
    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);
}

.modal_warm_7d53 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_warm_7d53 strong {
    color: var(--warning-color);
}

/* Slots Section */
.status-554e {
    padding: var(--section-padding);
}

.basic-6c70 {
    margin: 2rem 0;
}

/* Table Games Section */
.table-ac2c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_0a40 {
    margin: 2rem 0;
}

.message-bottom-2132 {
    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);
}

.message-bottom-2132:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.message-bottom-2132 .message-00e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message-bottom-2132 .frame_red_e3d3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.carousel-liquid-3687 {
    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);
}

.carousel-liquid-3687 .border-gold-8f61 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.steel_65f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-235b {
    margin: 2rem 0;
}

.tiny_1635 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough_4931 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-paper-70d0 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dynamic-0fc3 {
    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);
}

.dynamic-0fc3:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.dynamic-0fc3.fn-active-6c99 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy_3f92 {
    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);
}

.module_slow_4adf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module_slow_4adf strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.current_5674 {
    padding: var(--section-padding);
}

.stone_c7f9 {
    margin: 2rem 0;
}

.content-center-3b85 {
    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);
}

.content-center-3b85:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .content-center-3b85 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.image-upper-8d3c {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.description-f1b3 {
    flex: 1;
}

.content-b2f6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-c302 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.element_stale_002b {
    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;
}

.wrapper_huge_5bfc {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-fb8b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.menu-7a4b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image_copper_47b9 {
    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;
}

.image_copper_47b9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active_184a {
    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);
}

.filter-88a0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.filter-88a0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.light-fd24 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paper-98a6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .paper-98a6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paper-98a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_413d {
    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;
}

.article_413d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pagination-action-b90e {
    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;
}

.breadcrumb-upper-12ae {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.secondary_pink_4f37 {
    font-size: 2rem;
}

.alert_upper_42ab {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.tall-0f8e {
    flex: 1;
}

.text_basic_632b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.hovered_5b78 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dynamic_5994 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outer_a8b7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.solid_ea30 {
    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;
}

.steel_6bac {
    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;
}

.steel_6bac:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.solid_f531 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-3535 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-ce8c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gradient-ce8c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-6210 {
    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);
}

.outline_d1ab {
    color: var(--text-white);
    font-weight: 600;
}

.grid_6d88 {
    color: var(--accent-color);
    font-weight: 600;
}

.card-8ad9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.card-8ad9 strong {
    color: var(--accent-color);
}

/* Security Section */
.frame-gas-b408 {
    padding: var(--section-padding);
}

/* Benefits Section */
.highlight_e18d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.tall_431f {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.thick-e9cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-30a5 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.sort-4efc {
    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) {
    .sort-4efc {
        flex-direction: column;
        gap: 1rem;
    }
}

.sort-4efc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.sort-4efc .surface_focused_7577 {
    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;
}

.sort-4efc .hero-8683 {
    flex: 1;
}

.sort-4efc .header_solid_3556 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.sort-4efc .hidden-211e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.mask-42df {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask-42df .lite_a235 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mask-42df .huge-f73a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-42df .huge-f73a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mask-42df .huge-f73a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.frame_yellow_1031 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.old_3754 {
    padding: var(--section-padding);
}

.prev-3ad7 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .prev-3ad7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.overlay-wood-40f8 {
    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);
}

.overlay-wood-40f8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.overlay-wood-40f8 .hidden-aa17 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-wood-40f8 .advanced-2cfb {
    flex: 1;
}

.overlay-wood-40f8 .background-2f2d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-wood-40f8 .rough_cad2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.outer-86cb {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-86cb .heading-hot-6c43 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer-86cb .banner_liquid_d389 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.outer-86cb .banner_liquid_d389 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);
}

.outer-86cb .banner_liquid_d389 li:last-child {
    border-bottom: none;
}

.outer-86cb .banner_liquid_d389 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;
}

.outer-86cb .banner_liquid_d389 li strong {
    color: var(--text-white);
}

.menu_37a6 {
    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);
}

.menu_37a6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.menu_37a6 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.surface_bright_1a40 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-narrow-d1f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .header-narrow-d1f0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.progress_hard_14ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress_hard_14ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.icon-south-77b8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_brown_267e {
    font-size: 2rem;
}

.dynamic-a232 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.alert_dd73 {
    flex: 1;
}

.fluid-e5f4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fluid-e5f4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fluid-e5f4 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.bright-2bf2 {
    margin-top: 3rem;
}

.column-fixed-6685 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.light_e2da {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.east_5d9a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.east_5d9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.east_5d9a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.east_5d9a li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.short-17a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-4687 {
    margin: 2rem 0;
}

.shadow-inner-1034 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shadow-inner-1034 .main-99a6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.grid_purple_dbe1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_purple_dbe1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption-ef52 {
    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);
}

.caption-ef52:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wrapper-fast-1257 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.box-narrow-1396 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.north_f454 {
    padding: var(--section-padding);
}

.slider-2257 {
    margin: 2rem 0;
}

.short_fe37 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .short_fe37 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .short_fe37 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-e855 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.status-e855:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tabs_5a52 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.row_pro_3b05 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.list-6083 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.list-6083.fluid_420b {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.title-6229 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.medium-1518 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.slider_c5df {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tall-9e5e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.element-f2af {
    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);
}

.element-f2af p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element-f2af strong {
    color: var(--accent-color);
}

/* Update Log Section */
.photo-7bf7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_8378 {
    margin: 2rem 0;
}

.video-dynamic-f4b3 {
    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) {
    .video-dynamic-f4b3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.video-dynamic-f4b3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.video-dynamic-f4b3::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);
}

.dropdown_007b {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.paragraph_236f {
    flex: 1;
}

.hero-white-efc9 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dim-114a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dim-114a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-2fdb {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_steel_b4a4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay_d696 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .overlay_d696 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-f986 {
    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);
}

.in-e966 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-6743 {
    flex: 1;
}

.widget-bright-84ed {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.thumbnail_cd64 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.card_c75c {
    margin-top: 2rem;
    text-align: center;
}

.carousel-2d75 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.carousel-2d75 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.gradient-hard-de43 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient-hard-de43 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_wood_3530 {
    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);
}

.sort_wood_3530:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_wood_3530 .cool-eb7f {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_wood_3530 .gold-9f94 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.sort_wood_3530 .heading_1202 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.sort_wood_3530 .chip_f01b {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.frame-fa4f {
    padding: var(--section-padding);
}

.dim-62bb .block-advanced-f722 {
    flex: 1;
}

/* Promo Calendar Section */
.hover-eafa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_9078 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_9078 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-58aa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-action-6fa8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.block_e505 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status_f4f5 {
    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);
}

.blue-d7fb {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.chip_liquid_b9f2 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.red-aa46 {
    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);
}

.red-aa46 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.red-aa46 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.tertiary-7284 {
    padding: var(--section-padding);
}

.component_rough_d74a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .component_rough_d74a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.south_2367 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.orange_8b88 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in_980b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in_980b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.component_lower_d59d {
    margin-top: 3rem;
}

.component_lower_d59d .column-fixed-6685 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.component_lower_d59d .light_e2da {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component_lower_d59d .east_5d9a {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.component_lower_d59d .east_5d9a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.component_lower_d59d .east_5d9a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.component_lower_d59d .east_5d9a li strong {
    color: var(--warning-color);
}

.main_bronze_7300 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.main_bronze_7300 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.east-ceea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_steel_2b1f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .layout_steel_2b1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block-e636 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-e636 .main-99a6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.preview-3d1d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message_075a {
    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);
}

.message_075a:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.search_55c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-f7d4 {
    flex: 1;
}

.dark_64da {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.header_db9f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.photo_old_9686 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gas-1a14 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cold_e78b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .cold_e78b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.title-plasma-1443 {
    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);
}

.title-plasma-1443:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.preview_d95a {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.logo-in-7fa8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.popup_f462 {
    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);
}

.block-full-ca79 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.block-full-ca79 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.silver-c7d0 { 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; }
.basic_fa8d, .mask_steel_4afa { max-width:100%; height:auto; }

.green_e821, .breadcrumb_cold_1cc6, .cold_40a7 { white-space:normal; }

.preview_771f,
.secondary_c623,
.soft-316f,
.gradient-hard-de43,
.nav_11bc,
.clean-0de8 {
  flex-wrap:wrap;
}

[class*="grid"],
.cold_e78b,
.short_fe37,
.tabs-bb22 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.column-over-85e4 img,
.secondary_c623 img,
.sidebar_e102 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.middle-5023, .left_3d12,
.picture_static_c5fb, .shadow_mini_96c7 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.header-inner-08ca { width:100%; overflow-x:auto; }
.header-inner-08ca table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.thumbnail_718c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .thumbnail_718c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.card_a678 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.backdrop_883c,
.inner-9d99,
.notice-f0f9,
.aside-aeec,
.yellow_c25a,
.cold_e78b,
.short_fe37,
.tabs-bb22,
.rough_a755,
.stone_c7f9,
.thumbnail_718c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .backdrop_883c,
  .inner-9d99,
  .notice-f0f9,
  .aside-aeec,
  .yellow_c25a,
  .cold_e78b,
  .short_fe37,
  .tabs-bb22,
  .rough_a755,
  .stone_c7f9,
  .thumbnail_718c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.frame_paper_24d1,
.secondary_99ed,
.title-plasma-1443,
.video-green-0367,
.status-e855,
.input_96f1,
.content-center-3b85,
.card_a678 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.media-57ed,
.widget_bf74,
.list_2ceb {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.media-57ed > *,
.widget_bf74 > *,
.list_2ceb > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: acfe */
.promo-block-m0 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
