/* {$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;
}

.table-17fd {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.section-west-1c62 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-west-1c62 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-west-1c62 {
        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 */
.filter-748c {
    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);
}

.fixed_07ad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .fixed_07ad {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dirty_ccd3 {
        grid-column: 1;
    }
    
    .popup-hard-ecbf {
        grid-column: 2;
    }
    
    .orange-cdad {
        grid-column: 3;
    }
}

.dirty_ccd3 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dirty_ccd3:hover img {
    transform: scale(1.05);
}

/* Navigation */
.progress-44a7 {
    display: none;
}

@media (min-width: 1024px) {
    .progress-44a7 {
        display: block;
    }
}

/* Grouped Navigation */
.sort_2051 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.link-0732 {
    position: relative;
}

.gold-9d65 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.link-0732 .wide-8b3f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.wide-8b3f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.button-ce26 {
    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;
}

.button-ce26:hover,
.button-ce26.fn-active-3e3e {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.item_e10f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .item_e10f {
        display: flex;
    }
}

/* Mobile Register Button */
.popup-hard-ecbf {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .popup-hard-ecbf {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.hidden-6651 {
    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;
}

.hidden-6651::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 */
.orange-cdad {
    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) {
    .orange-cdad {
        display: none;
    }
}

.orange-cdad span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.orange-cdad.fn-active-3e3e span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.orange-cdad.fn-active-3e3e span:nth-child(2) {
    opacity: 0;
}

.orange-cdad.fn-active-3e3e span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.filter_193f {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.filter_193f.fn-active-3e3e {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.notification_11d9 {
    overflow: hidden;
}

.tooltip-da14 {
    list-style: none;
    padding: 0.75rem 0;
}

.thumbnail-upper-4e64 {
    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;
}

.thumbnail-upper-4e64:hover,
.thumbnail-upper-4e64.fn-active-3e3e {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.thumbnail-upper-4e64.plasma_6984 {
    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;
}

.thumbnail-upper-4e64.plasma_6984::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 */
.avatar-cd65 {
    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;
}

.iron-40c3 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.iron-40c3:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.card_b4bb {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.card_b4bb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.texture-south-1494 {
    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;
}

.texture-south-1494:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.complex_373f {
    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;
}

.mask-cf7c {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.mask-cf7c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.down_0221 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.down_0221:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form_c047 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.form_c047: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-bc00 {
    font-size: 1em;
    font-weight: 700;
}

.simple_15fb {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.primary-d835 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.primary-d835::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;
}

.sidebar_rough_51be {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .sidebar_rough_51be {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.south-1118 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.stone_498c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.wood_db4e {
    margin-bottom: 2rem;
}

.photo-bfb9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .photo-bfb9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_6535 {
    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);
}

.background_east_9138 {
    font-size: 1.5rem;
}

.sidebar-1c67 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.logo_d32a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-3ee0 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.content-3ee0:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.backdrop_d169 {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-7c2d {
    margin-bottom: 1rem;
}

.background_dirty_902c {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.column_smooth_a8e1 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .column_smooth_a8e1 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .column_smooth_a8e1.focus_wood_d9aa {
        direction: rtl;
    }
    
    .column_smooth_a8e1.focus_wood_d9aa > * {
        direction: ltr;
    }
}

.hard-bf41 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.hard-bf41:first-child {
    margin-top: 0;
}

.alert_new_0236 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.label-6be5 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.label-6be5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.section-013a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-013a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-6550 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup_down_e305 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_c571 {
    list-style: none;
}

.active_c571 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_c571 li:last-child {
    border-bottom: none;
}

/* Games Features */
.copper-93de {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.frame_large_2f95 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.modal_fef1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active_e8d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.basic_f2ec {
    margin: 2rem 0;
}

.narrow-4dc7 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.brown-1a06 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.first_e11d {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.filter_clean_113b {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.shadow-a2e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-a2e1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_bf13 {
    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);
}

.active_bf13:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.accordion-c6d1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.label-2aea {
    font-size: 1.5rem;
}

.notification-0c1d {
    color: var(--accent-color);
    margin: 0;
}

.surface-hot-8751 {
    list-style: none;
}

.surface-hot-8751 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.surface-hot-8751 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.popup_43d5 {
    margin: 2rem 0;
}

.active_white_3ed9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hover-short-51b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .hover-short-51b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite_0e34 {
    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);
}

.gradient-prev-1cd4 {
    font-size: 1.25rem;
}

.footer_b9d7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.current_98b0,
.header_rough_e079 {
    text-align: center;
    margin: 2rem 0;
}

.tertiary_21c8,
.text-37af {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.cool_a287 {
    margin: 2rem 0;
    text-align: center;
}

.notification-last-576d {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notification-last-576d::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;
}

.element_gas_6df8 {
    position: relative;
    z-index: 1;
}

.video-out-0008 {
    margin-bottom: 1rem;
}

.input_fresh_68f7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tertiary-8fd2 {
    margin-bottom: 3rem;
}

.cool_85a4 {
    margin-top: 3rem;
}

.tertiary-84d6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tertiary-84d6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tertiary-84d6 .hover_6535 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-ff8c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tag-in-bdd4 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.middle_8f2d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.dropdown-advanced-27e2 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .dropdown-advanced-27e2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dropdown-advanced-27e2 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.easy-a703 {
    margin-bottom: 1rem;
}

.white-e8fc img {
    margin-bottom: 1rem;
}

.lite_31b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-out-d79f {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.widget_48e7 {
    list-style: none;
}

.widget_48e7 li {
    margin-bottom: 0.5rem;
}

.widget_48e7 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.widget_48e7 a:hover {
    color: var(--accent-color);
}

.wide_712c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.menu-pro-7beb {
    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);
}

.menu-pro-7beb:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.active_liquid_97e7 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.active_liquid_97e7 p {
    margin-bottom: 0.25rem;
}

.notification-0fe6 {
    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) {
    .notification-0fe6 {
        flex-direction: row;
    }
}

.container-lite-0ef8 {
    text-align: center;
}

@media (min-width: 768px) {
    .container-lite-0ef8 {
        text-align: left;
    }
}

.container-lite-0ef8 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hidden_bright_c7fb {
    font-size: 0.75rem !important;
}

.accent_green_6989 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination_dark_b790 {
    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);
    }
}

.center-4207 {
    animation: fadeInUp 0.6s ease-out;
}

.menu_592f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.pink-62f1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pink-62f1 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.modal-old-b2e8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .modal-old-b2e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_addd {
    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);
}

.overlay_addd .modal_fef1 {
    font-size: 1.25rem;
}

.overlay_addd .complex-21e0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.focus-5b6c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-5b6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_e4b9 {
    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_e4b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar-2b69 {
    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);
}

.media_fast_8f36 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.box-6e7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-pro-711f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-hot-4fbe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero-hot-4fbe .active_e8d8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-hot-4fbe .selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
}

.center-13dc {
    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);
}

.rough-3ee7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.rough-3ee7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.rough-3ee7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.gas-bedc {
    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);
}

.advanced_34c6 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shadow-lite-24a5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shadow-lite-24a5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shadow-lite-24a5 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);
}

.shadow-lite-24a5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.shadow-lite-24a5 input::placeholder {
    color: var(--text-muted);
}

.section-18e2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.texture_a143 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.texture_a143 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.footer_0da7 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer_0da7:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.hover-short-51b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-short-51b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite_0e34 {
    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);
}

.lite_0e34 .gradient-prev-1cd4 {
    font-size: 1.25rem;
}

.lite_0e34 .footer_b9d7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.north-4b6c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-e674 {
    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);
}

.banner-e674 .modal_fef1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-e674 .active_e8d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-e674 .selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_9c29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.middle_0e10 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.middle_0e10 .dynamic_ba09 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.middle_0e10 .large_3bc1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.background-7c8d {
    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);
}

.smooth_ee89 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .smooth_ee89 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-7d04 {
    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);
}

.narrow-7d04:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_8967 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dropdown_f523 {
    flex: 1;
}

.header_last_b8ab {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.block-steel-0879 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail_white_62f8 {
    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);
}

.detail_white_62f8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.badge_clean_fa45 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_clean_fa45 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze-8e1e {
    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);
}

.bronze-8e1e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_orange_9410 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module-b3b4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-564d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media_4455 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.status_6369 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video_7422 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_5748 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_5748 .feature_gold_49f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_5748 .gradient-05fe {
    color: var(--text-gray);
    line-height: 1.6;
}

.down-d352 {
    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);
}

.stone-67e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-copper-e46d {
    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);
}

.summary-copper-e46d .modal_fef1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-copper-e46d .active_e8d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-copper-e46d .selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_pressed_d814 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_pressed_d814 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-south-7287 {
    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);
}

.row-south-7287:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.gallery-92a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-92a6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-easy-8502 {
    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-easy-8502:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold_93bf {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort-574c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brown-1a06 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.advanced-c2c1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.badge-0144 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_b618 {
    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);
}

.cold_b618:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.warm-2d73 {
    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);
}

.preview_0ed3 {
    flex: 1;
}

.tag-steel-3f3a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.link-dim-8afd {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.menu_paper_5121 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-cde8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_7a4d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_7a4d .dynamic_ba09 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper_7a4d .large_3bc1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_rough_e079 {
    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);
}

.last-ab00 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last-ab00 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.orange_310a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .orange_310a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover-huge-f48f {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover-huge-f48f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north_13e7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-3918 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview_gas_72e0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.carousel-33b9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.caption_a30c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb-warm-2f52 {
    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);
}

.narrow_3276 {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-cb6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bright-8702 {
    color: var(--text-gray);
    line-height: 1.6;
}

.stone-67e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-copper-e46d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.summary-copper-e46d .active_e8d8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary-copper-e46d .selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title-9c2f {
    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);
}

.solid-2260 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .solid-2260 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solid-2260 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-45e3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.fast-45e3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.icon_595c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.picture-clean-2b07 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.banner_7f9e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.logo-a8c6 {
    padding: 1.5rem;
}

.panel_gold_1f6b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nav_e28a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_e28a 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;
}

.nav_e28a li:last-child {
    border-bottom: none;
}

.nav_e28a li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.hover_north_861d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_north_861d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-simple-ddab {
    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);
}

.modal-simple-ddab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-west-2354 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action-4b44 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.section-21da {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.active-d34a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline-basic-3365 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_hard_495f {
    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);
}

.mini-11cb {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-2c9d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade_up_d329 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-black-1703 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dark-3e7b {
    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);
}

.dark_07f3 {
    text-align: center;
}

.tabs-16e1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.in_1090 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shadow-tall-bb19 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery_5402 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_5402 .active_e8d8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.gallery_5402 .selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty_0bcf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dirty_0bcf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dirty_0bcf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button_orange_6a61 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.button_orange_6a61:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.form-b77c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_9581 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active_e8d8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.left-5355 {
    padding: 1.5rem;
}

.selected_6900 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pagination_7352 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination_7352 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;
}

.pagination_7352 li:last-child {
    border-bottom: none;
}

.pagination_7352 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.heading_7a9c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.surface_inner_1c0e {
    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);
}

.surface_inner_1c0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small_9f95 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar_146c {
    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);
}

.sidebar-2b69 {
    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;
}

.media_fast_8f36 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-6e7e {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-6a48 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail_5d2c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.highlight_full_664d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.title_hard_9e1a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.box_bcf7 {
    display: flex;
    gap: 1rem;
}

.box_bcf7 .tertiary-fe7f {
    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;
}

.tooltip_6349 {
    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);
}

.accordion_167a {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.red_067e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red_067e 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;
}

.red_067e li:last-child {
    border-bottom: none;
}

.red_067e li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.under_c14d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .under_c14d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .under_c14d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-b158 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient-b158:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-thick-f493 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas-49bb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature_gold_49f8 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.aside-8271 {
    font-size: 1rem;
}

.purple-c208 {
    padding: 1.5rem;
}

.gradient-05fe {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.secondary-hard-a40c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.secondary-hard-a40c .dark_07f3 {
    text-align: center;
}

.secondary-hard-a40c .in_1090 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.secondary-hard-a40c .modal-tiny-8c23 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.frame_9283 {
    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);
}

.frame_9283:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.motion-906d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-906d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_e215 {
    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);
}

.heading_e215:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_f071 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-b62e {
    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);
}

.west_32f6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outer-5d83 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.table-bronze-86e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-2ee8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.current_399f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button-black-7e45 {
    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);
}

.description_4efd {
    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;
}

.description_4efd.section_361a {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.description_4efd.button_complex_4652 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.description_4efd.tag_a014 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.description_4efd.element-85a3 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.description_4efd.active-48ee {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.active-c132 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.solid_22c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-tiny-9df0 {
    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);
}

.wide_32b0 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.next_9c29 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next_9c29 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;
}

.next_9c29 li:last-child {
    border-bottom: none;
}

.next_9c29 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.banner-1b24 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-1b24 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-1b24 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.thumbnail_copper_873c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.thumbnail_copper_873c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_copper_873c.cool_e81d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .thumbnail_copper_873c.cool_e81d {
        grid-column: span 3;
    }
}

.static_053c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.thumbnail_copper_873c.cool_e81d .static_053c {
    background: rgba(6, 182, 212, 0.1);
}

.column-thick-24b1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.widget-yellow-d64b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.thumbnail_copper_873c.cool_e81d .widget-yellow-d64b {
    color: var(--info-color);
}

.photo_2c1a {
    padding: 1.5rem;
    text-align: center;
}

.plasma-459e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.thumbnail_copper_873c.cool_e81d .plasma-459e {
    color: var(--info-color);
}

.clean-3324 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.module-e103 {
    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 */
.right-fc48 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .right-fc48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_wood_4b58 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.secondary_wood_4b58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-7086 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner-e674 {
    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);
}

.gradient-prev-1cd4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-yellow-be34 {
    flex: 1;
}

.active_white_3ed9 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-middle-bcdb {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_f373 {
    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);
}

.caption_d7ea {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.wide-ec54 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pagination_dark_b790 {
    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);
}

.purple_6f25 {
  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);
}

.purple_6f25 .dark_07f3 {
    text-align: center;
}

.purple_6f25 .tabs-16e1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.purple_6f25 .in_1090 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice_current_c513 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress_left_5945 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden-new-6521 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.header_lower_f495 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag_c796 {
    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);
}

.progress_focused_d26c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-smooth-1b6a {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-east-479e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-east-479e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-east-479e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.complex_a941 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.complex_a941:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget-9752 {
    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);
}

.accent_cbf4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.grid_cool_86bf {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.down-d8e3 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.down-d8e3.footer_lite_94fb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.down-d8e3.notification-4675 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.down-d8e3.silver_f46b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.popup-steel-1c33 {
    padding: 1.5rem;
    text-align: center;
}

.frame_blue_13bd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.motion_4861 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.motion_4861 .border_10c0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.box-c592 {
    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);
}

.box-c592:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.middle_1406 {
  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);
}

.logo-43bf {
    text-align: center;
}

.logo-43bf .tabs-16e1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.logo-43bf .in_1090 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.icon-purple-f113 { text-align: center; }
.hidden_fluid_6b52 { text-align: left; }
.dropdown_warm_a501 { text-align: right; }

.feature-8539 { margin-bottom: 0; }
.breadcrumb_brown_3e29 { margin-bottom: 0.5rem; }
.primary-thick-5fba { margin-bottom: 1rem; }
.overlay-orange-ba61 { margin-bottom: 1.5rem; }
.content_f9f7 { margin-bottom: 2rem; }

.paper-5c81 { margin-top: 0; }
.glass-b084 { margin-top: 0.5rem; }
.active-9bc6 { margin-top: 1rem; }
.disabled-f72b { margin-top: 1.5rem; }
.thick_9e0d { margin-top: 2rem; }

.fn-hidden-3e3e { display: none; }
.fn-visible-3e3e { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .primary-d835 {
        padding: 6rem 0 3rem;
    }
    
    .sidebar_rough_51be {
        text-align: center;
    }
    
    .column_smooth_a8e1 {
        text-align: center;
    }
    
    .photo-bfb9 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .filter-748c,
    .filter_193f,
    .notification-last-576d,
    .middle_8f2d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .primary-d835 {
        background: none;
    }
}

/* Providers Section */
.item_195b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.component-easy-ecbf {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component-easy-ecbf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-easy-ecbf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-f8ae {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.prev-f8ae:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero-6a37 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.warm_74c8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.over_b7a6 {
    list-style: none;
    padding: 0;
}

.over_b7a6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.over_b7a6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.under-8a9f {
    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);
}

.under-8a9f p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.advanced_77a0 {
    padding: var(--section-padding);
}

.disabled-dd57 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-dd57 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table_red_0363 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.table_red_0363:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.avatar_simple_e238 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hovered_b0c8 {
    display: flex;
    flex-direction: column;
}

.media_dynamic_0821 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.video-c5b1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.next-4678 {
    color: var(--accent-color);
}

.sidebar_2c73 {
    font-size: 1.25rem;
}

.hard_a746 {
    margin-bottom: 1rem;
}

.hard_a746 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.title_right_df69 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.label_cd42 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.dark_07f3 {
    text-align: center;
}

.tabs-16e1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.in_1090 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.gradient_orange_2cfa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary-green-26c3 {
    margin: 2rem 0;
}

.info-lower-6f1a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-lower-6f1a .modal_fef1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-dd11 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stone-b7ce {
    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;
}

.stone-b7ce:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold-5aa1 {
    font-size: 2rem;
}

.panel-west-eeda {
    display: flex;
    flex-direction: column;
}

.info_liquid_f518 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.box_fixed_7d2f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.hidden-3a66 {
    padding: var(--section-padding);
}

.tag-brown-6847 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tag-brown-6847 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-brown-6847 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon_motion_f044 {
    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);
}

.icon_motion_f044:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon_motion_f044 .tabs-16e1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.icon_motion_f044 .in_1090 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.icon_motion_f044 .brown-a9aa {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.cold_a91b {
    margin-top: 4rem;
}

.overlay_19e3 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.picture_31b8 {
    overflow-x: auto;
}

.paragraph_new_0949 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.paragraph_new_0949 thead {
    background: var(--accent-color);
}

.paragraph_new_0949 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.paragraph_new_0949 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_new_0949 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.paragraph_new_0949 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.progress-south-7b69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header-f900 {
    max-width: 900px;
    margin: 0 auto;
}

.sort_5741 {
    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);
}

.sort_5741:hover {
    border-color: var(--accent-color);
}

.caption_fluid_43e9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.caption_fluid_43e9 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.outline_south_3121 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.sort_5741.fn-active-3e3e .outline_south_3121 {
    transform: rotate(45deg);
}

.action-6254 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.sort_5741.fn-active-3e3e .action-6254 {
    max-height: 1000px;
}

.action-6254 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.video_steel_aaf7 {
    padding: var(--section-padding);
}

.rough-3ee7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.notice-top-f410 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fluid_b332 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid_b332 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notification-7328 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_gas_8155 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lite-8bd5 {
    font-size: 2rem;
}

.border-2d98 {
    color: var(--text-white);
    margin: 0;
}

.over_d5d6 {
    list-style: none;
    padding: 0;
}

.over_d5d6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.over_d5d6 li:last-child {
    border-bottom: none;
}

.icon_black_3e9b {
    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);
}

.icon_black_3e9b p {
    color: var(--success-color);
    margin: 0;
}

.full-4e3d {
    margin-top: 3rem;
}

.accordion_167a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.stone_4cf6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stone_4cf6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bright_dbbb {
    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);
}

.notice-bottom-2e79 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bright_dbbb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.caption_d159 {
    padding: var(--section-padding);
}

.search-3944 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-3944 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-d6a7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.feature-d6a7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tabs-current-e639 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.aside-warm-cc74 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.media_dbc3 {
    flex: 1;
}

.dropdown_0b29 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.easy-af48 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.description_tall_5a26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_004b {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header_004b:last-child {
    border-bottom: none;
}

/* Comparison Section */
.tag-19f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.menu_2636 {
    padding: var(--section-padding);
}

.center_8345 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.secondary_52a6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_52a6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-6272 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-pro-a7aa, .chip_25fb, .link_narrow_7265 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.link_narrow_7265 {
    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 */
.active_d147 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_8aa8 {
    margin: 2rem 0;
}

.new-48d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list_narrow_53d6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.wood_6ce3 {
    list-style: none;
    padding: 0;
}

.wood_6ce3 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;
}

.wood_6ce3 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.wood_6ce3 li:last-child {
    border-bottom: none;
}

.form_short_b787 {
    text-align: center;
    margin-top: 2rem;
}

.info_glass_d268 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.frame_c9d2 {
    padding: var(--section-padding);
}

.row_static_da50 {
    margin: 2rem 0;
}

.blue_2544 {
    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) {
    .blue_2544 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.blue_2544:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas_4bdc {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.photo_f604 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.breadcrumb-prev-cfb8 {
    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;
}

.last-64aa {
    flex: 1;
}

.menu_c8a3 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.link_advanced_5b2d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.small_aaee {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.dark_26c3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .dark_26c3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.blue_8f33 {
    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);
}

.blue_8f33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.blue_8f33 .tabs-16e1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blue_8f33 .in_1090 {
    color: var(--text-gray);
    font-size: 1rem;
}

.stale-ddd7 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_under_546b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.icon_under_546b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.action-d686 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .action-d686 {
        grid-template-columns: 1fr 1fr;
    }
}

.link_glass_7814 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_tiny_ec99 {
    margin-bottom: 1.5rem;
}

.panel_tiny_ec99 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.panel_tiny_ec99 input,
.panel_tiny_ec99 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;
}

.panel_tiny_ec99 input:focus,
.panel_tiny_ec99 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.steel-5cef {
    width: 100%;
    margin-top: 1rem;
}

.paragraph_north_cbd5 {
    display: flex;
    align-items: center;
}

.current-34bc {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.thumbnail-west-d4c5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.middle_77b3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.sidebar-ba56 {
    color: var(--text-gray);
}

.south-1d59 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-cool-2016 {
    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);
}

.nav-cool-2016 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.pro_ebaf {
    margin-top: 3rem;
}

.image_c915 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.input-simple-1c93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_7272 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.paragraph-584c {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph-584c:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.content_complex_3779 {
    padding: var(--section-padding);
}

.widget_e55c {
    margin: 2rem 0;
}

.last_a9bc {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge-92af {
    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;
}

.badge-92af:hover, .badge-92af.fn-active-3e3e {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.surface-narrow-57cb {
    display: none;
}

.surface-narrow-57cb.fn-active-3e3e {
    display: block;
}

.list-motion-c6f1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-3109 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.easy_2f46 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.easy_2f46 ul {
    list-style: none;
    padding: 0;
}

.easy_2f46 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.easy_2f46 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.preview_inner_5f0b {
    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 */
.south_18d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_74fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-outer-5b79 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wrapper_lite_7eb1 {
    color: var(--accent-color);
    margin: 0;
}

.red-018d {
    display: flex;
    gap: 1.5rem;
}

.chip_2e6b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hover-ddad {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.iron-98a3 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.iron-98a3.panel_wood_c76f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.iron-98a3.modal-iron-373c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.iron-98a3.content-1c94 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.accordion-outer-59dd {
    margin-top: 2rem;
}

.north-4386 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar-bottom-bacd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .avatar-bottom-bacd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_next_dd6c {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.aside_lite_96cc {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bottom-2a5c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.layout-iron-392c {
    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 */
.feature-209d {
    padding: var(--section-padding);
}

.shadow-c3cc {
    margin: 2rem 0;
}

.widget_e84e {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.accordion-b806 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.hidden_8cd6 {
    list-style: none;
    padding: 0;
}

.hidden_8cd6 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;
}

.hidden_8cd6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.hidden_8cd6 li:last-child {
    border-bottom: none;
}

.thumbnail_black_a785 {
    margin: 2rem 0;
}

.hero-47c0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.small_d7a3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .small_d7a3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.block_5ff8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.glass_62ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.selected_7a5b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.easy-c78c {
    margin-top: 2rem;
}

.header_last_b8ab {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.popup-purple-bc59 {
    list-style: none;
    padding: 0;
}

.summary-9f0e {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.summary-9f0e a {
    color: var(--accent-color);
    text-decoration: none;
}

.summary-9f0e a:hover {
    text-decoration: underline;
}

.tall-765b {
    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 */
.menu_6e4f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-hot-fbdf {
    margin: 2rem 0;
}

.active_c863 {
    margin-bottom: 3rem;
}

.active_c863 .list_narrow_53d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message-4aea {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pattern-fixed-b653 {
    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);
}

.pattern-fixed-b653:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.container-out-870b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .container-out-870b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-a9b6 {
    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 */
.motion-f2fc {
    padding: var(--section-padding);
}

.pagination-in-58de {
    margin: 2rem 0;
}

.element_4e36 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.module_orange_62d6 {
    overflow-x: auto;
    margin: 2rem 0;
}

.section_hovered_404d {
    background: rgba(6, 182, 212, 0.1) !important;
}

.input-0888 {
    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-8b93 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.solid-1fc6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .solid-1fc6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-mini-3961 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-mini-3961 .modal_fef1 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.tabs-mini-3961 .active_e8d8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cool_d246 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.image-19c2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_north_6651 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_north_6651 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-iron-6de1 {
    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;
}

.image-iron-6de1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tall_39fb {
    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);
}

.pagination-prev-545a {
    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;
}

.white-438e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.iron_8ef3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.summary_complex_8909 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hero_red_29a7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-b54d {
    color: var(--text-white);
    font-weight: 600;
}

.video_slow_27c1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.in-70f1 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.in-70f1 .tertiary-fe7f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gas_024f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gas_024f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-36ec {
    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);
}

.card-36ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-36ec .tabs-16e1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.card-36ec .in_1090 {
    color: var(--text-gray);
    font-size: 1rem;
}

.footer_left_6b0d {
    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);
}

.brown_07eb {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.brown_07eb strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.caption_a30c {
    margin: 2rem 0;
}

.breadcrumb-warm-2f52 {
    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);
}

.breadcrumb-warm-2f52:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.narrow_3276 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.backdrop-e8de {
    flex: 1;
}

.text-cb6f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bright-8702 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.stone-67e0 {
    margin: 2rem 0;
}

.summary-copper-e46d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-copper-e46d .active_e8d8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.summary-copper-e46d .selected_6900 {
    color: var(--text-gray);
    margin: 0;
}

.title-9c2f {
    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);
}

.title-9c2f .tertiary_21c8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.cool_d246 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.warm-2d73 {
    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;
}

.preview_0ed3 {
    flex: 1;
}

.link-dim-8afd {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.menu_paper_5121 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.sidebar-2b69 {
    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;
}

.thumbnail_b747 {
    flex: 1;
}

.media_fast_8f36 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.box-6e7e {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.highlight_full_664d {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.title_hard_9e1a {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.box_bcf7 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.box_bcf7 .tertiary-fe7f {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tooltip_6349 {
    margin-top: 2rem;
}

.tooltip_6349 .accordion_167a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.chip_586b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark-3e7b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dark-3e7b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dark-3e7b .dark_07f3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-tall-bb19 {
    margin: 2rem 0;
}

.gallery_5402 {
    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 */
.description-2e97 {
    padding: var(--section-padding);
}

.left-5355 {
    margin-top: 1rem;
}

.pagination_7352 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pagination_7352 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pagination_7352 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.summary-c632 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle_61a8 {
    margin: 2rem 0;
}

.solid-5940 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.column-cool-bc56 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.button_f521 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.up_b5fe {
    margin: 2rem 0;
}

.pattern_a33b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pattern_a33b .list_narrow_53d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.narrow_17da {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .narrow_17da {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component-huge-c159 {
    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);
}

.soft_b5e7 {
    color: var(--text-white);
    font-weight: 600;
}

.banner-outer-4cc3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.frame-stale-4826 {
    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);
}

.frame-stale-4826 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.overlay_ffbd {
    padding: var(--section-padding);
}

.focus_wood_388d {
    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;
}

.focus_wood_388d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.wrapper_438c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper_438c .notice-bottom-2e79 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper_438c .down_6247 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.out_49a9 {
    flex: 1;
}

.caption_dac5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.message-lite-897d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-lite-897d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.message-lite-897d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.steel-dedd {
    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);
}

.steel-dedd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel-dedd strong {
    color: var(--warning-color);
}

/* Slots Section */
.dropdown-5e45 {
    padding: var(--section-padding);
}

.status_6369 {
    margin: 2rem 0;
}

/* Table Games Section */
.heading_55cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_7422 {
    margin: 2rem 0;
}

.panel_5748 {
    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);
}

.panel_5748:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.panel_5748 .feature_gold_49f8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_5748 .gradient-05fe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.down-d352 {
    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);
}

.down-d352 .tertiary_21c8 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.active-in-b5ed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-8fbd {
    margin: 2rem 0;
}

.iron-50f9 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.old-4db1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.top-404e {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside-under-1b7e {
    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);
}

.aside-under-1b7e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.aside-under-1b7e.fn-active-3e3e {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline_steel_fda7 {
    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);
}

.media-south-edaa {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media-south-edaa strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.gas_d188 {
    padding: var(--section-padding);
}

.block-bd54 {
    margin: 2rem 0;
}

.orange-d446 {
    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);
}

.orange-d446:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .orange-d446 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.selected_b7f6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.medium_d9e0 {
    flex: 1;
}

.plasma-00e1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.row-736c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.modal_silver_c353 {
    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;
}

.short_2de0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video_fixed_5aa7 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.grid_fe37 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.secondary-medium-d354 {
    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;
}

.secondary-medium-d354:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.easy-aed0 {
    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);
}

.right_e88d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.right_e88d strong {
    color: var(--accent-color);
}

/* New Games Section */
.main-gas-d1a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_b790 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .message_b790 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_b790 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east-a9c2 {
    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;
}

.east-a9c2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box_34f4 {
    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;
}

.panel-3d5b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.item-ab2b {
    font-size: 2rem;
}

.up_c57a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.mask_78fc {
    flex: 1;
}

.card-7903 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.right_eefa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.content_complex_f42d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.west_0a32 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.smooth_0f6b {
    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;
}

.banner_4e97 {
    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;
}

.banner_4e97:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.column-over-e777 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_tall_79b4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard_9476 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hard_9476 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-light-2eed {
    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);
}

.simple-94f9 {
    color: var(--text-white);
    font-weight: 600;
}

.small-b5fa {
    color: var(--accent-color);
    font-weight: 600;
}

.sidebar-6efe {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.sidebar-6efe strong {
    color: var(--accent-color);
}

/* Security Section */
.preview-narrow-a1bc {
    padding: var(--section-padding);
}

/* Benefits Section */
.white-310d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.hero-mini-8ac9 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.modal_down_49e2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview_solid_90b8 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.input-f7a2 {
    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) {
    .input-f7a2 {
        flex-direction: column;
        gap: 1rem;
    }
}

.input-f7a2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.input-f7a2 .sidebar-2b69 {
    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;
}

.input-f7a2 .thumbnail_b747 {
    flex: 1;
}

.input-f7a2 .media_fast_8f36 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.input-f7a2 .box-6e7e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.paragraph_complex_a311 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_complex_a311 .active_white_3ed9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph_complex_a311 .north-4b6c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph_complex_a311 .north-4b6c li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paragraph_complex_a311 .north-4b6c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.search_ccd2 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.gallery_stone_949f {
    padding: var(--section-padding);
}

.left-2365 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .left-2365 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_c099 {
    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);
}

.carousel_c099:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.carousel_c099 .row-dim-876b {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_c099 .dropdown-6680 {
    flex: 1;
}

.carousel_c099 .dynamic_ba09 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel_c099 .prev-c29c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.stale_ecf0 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stale_ecf0 .solid-5591 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stale_ecf0 .prev_53b1 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.stale_ecf0 .prev_53b1 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);
}

.stale_ecf0 .prev_53b1 li:last-child {
    border-bottom: none;
}

.stale_ecf0 .prev_53b1 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;
}

.stale_ecf0 .prev_53b1 li strong {
    color: var(--text-white);
}

.fast-2c4b {
    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);
}

.fast-2c4b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.fast-2c4b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.aside-47e9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full_e5b0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .full_e5b0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph-328d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.paragraph-328d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.module-1eb5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shade_brown_8aac {
    font-size: 2rem;
}

.article-ced0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.section_6c3e {
    flex: 1;
}

.out-ac68 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.out-ac68 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.out-ac68 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.banner_3d4a {
    margin-top: 3rem;
}

.widget_e84e {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.accordion-b806 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hidden_8cd6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_8cd6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.hidden_8cd6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.hidden_8cd6 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.orange_abb4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.picture-78fe {
    margin: 2rem 0;
}

.small-2f6b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.small-2f6b .list_narrow_53d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag_old_64e7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tag_old_64e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-b981 {
    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);
}

.module-b981:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.pro-76a2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card_9570 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.orange-137a {
    padding: var(--section-padding);
}

.main_stone_157a {
    margin: 2rem 0;
}

.label-static-8cf3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .label-static-8cf3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-static-8cf3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-fa8f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article-fa8f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shade_925f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.paragraph_98db {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.media-7ba7 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.media-7ba7.layout_motion_67ac {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.modal-smooth-2bcb {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.shadow_medium_eefb {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.status_0790 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.list_motion_1bc1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.banner_fresh_86a7 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.banner_fresh_86a7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner_fresh_86a7 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.middle-fcab {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.up-42ca {
    margin: 2rem 0;
}

.container-medium-8cb3 {
    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) {
    .container-medium-8cb3 {
        flex-direction: column;
        gap: 1rem;
    }
}

.container-medium-8cb3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container-medium-8cb3::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);
}

.primary-iron-2672 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.small-56a8 {
    flex: 1;
}

.tertiary-a5fd {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.image_6439 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image_6439 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_e2c5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero_pink_7300 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-yellow-848f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-yellow-848f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-a610 {
    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);
}

.main_f318 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.label-3aa2 {
    flex: 1;
}

.hidden-smooth-a053 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.east-5d9a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pagination_1107 {
    margin-top: 2rem;
    text-align: center;
}

.banner-46a6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner-46a6 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.motion-906d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-906d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_e215 {
    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);
}

.heading_e215:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.heading_e215 .input-west-2354 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_e215 .action-4b44 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.heading_e215 .section-21da {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.heading_e215 .active-d34a {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.box_d5b3 {
    padding: var(--section-padding);
}

.notification-b62e .form_6943 {
    flex: 1;
}

/* Promo Calendar Section */
.focus-current-0b2c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-7851 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-7851 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_90f1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-green-6a63 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tooltip_yellow_c442 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.label_slow_74b8 {
    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);
}

.outline_94ca {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.photo-82b8 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.red-50ce {
    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-50ce p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.red-50ce strong {
    color: var(--accent-color);
}

/* Requirements Section */
.table-06f8 {
    padding: var(--section-padding);
}

.list-3fdf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list-3fdf {
        grid-template-columns: repeat(2, 1fr);
    }
}

.purple_b388 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item_smooth_e709 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green-85c9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-85c9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-3bd3 {
    margin-top: 3rem;
}

.preview-3bd3 .widget_e84e {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.preview-3bd3 .accordion-b806 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview-3bd3 .hidden_8cd6 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.preview-3bd3 .hidden_8cd6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.preview-3bd3 .hidden_8cd6 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.preview-3bd3 .hidden_8cd6 li strong {
    color: var(--warning-color);
}

.red-34ee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.red-34ee strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.sort-fresh-d459 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-green-0909 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-green-0909 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_b894 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_b894 .list_narrow_53d6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.focus_static_6001 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.label_5a0f {
    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);
}

.label_5a0f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.filter-east-7535 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dim-ed44 {
    flex: 1;
}

.silver_496d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.tertiary_4b97 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rough-67d7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.full-63c5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.footer-complex-8271 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .footer-complex-8271 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_6089 {
    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);
}

.hero_6089:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component_0680 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight_basic_70db {
    color: var(--text-gray);
    font-size: 1rem;
}

.icon_under_546b {
    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);
}

.gold_4cc1 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gold_4cc1 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.section-west-1c62 { 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; }
.content-3ee0, .label-6be5 { max-width:100%; height:auto; }

.avatar-cd65, .texture-south-1494, .complex_373f { white-space:normal; }

.sidebar_rough_51be,
.column_smooth_a8e1,
.right-fc48,
.motion-906d,
.stone-67e0,
.tertiary-east-479e {
  flex-wrap:wrap;
}

[class*="grid"],
.footer-complex-8271,
.label-static-8cf3,
.tertiary-84d6 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.primary-d835 img,
.column_smooth_a8e1 img,
.logo_d32a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.south-1118, .stone_498c,
.preview-7c2d, .background_dirty_902c {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.picture_31b8 { width:100%; overflow-x:auto; }
.picture_31b8 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.component-easy-ecbf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .component-easy-ecbf {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.prev-f8ae {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.tag-brown-6847,
.glass_8f04,
.carousel_slow_4e92,
.chip-smooth-ed11,
.dark_26c3,
.footer-complex-8271,
.label-static-8cf3,
.tertiary-84d6,
.middle_1406,
.block-bd54,
.component-easy-ecbf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .tag-brown-6847,
  .glass_8f04,
  .carousel_slow_4e92,
  .chip-smooth-ed11,
  .dark_26c3,
  .footer-complex-8271,
  .label-static-8cf3,
  .tertiary-84d6,
  .middle_1406,
  .block-bd54,
  .component-easy-ecbf {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.icon_motion_f044,
.blue_8f33,
.hero_6089,
.hover_6535,
.article-fa8f,
.logo-43bf,
.orange-d446,
.prev-f8ae {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.section_smooth_63fd,
.image-gas-b93c,
.overlay-3909 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.section_smooth_63fd > *,
.image-gas-b93c > *,
.overlay-3909 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7145 */
.promo-block-a8 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.3;
}
