/* {$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;
}

.secondary_4765 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.description-green-a873 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .description-green-a873 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .description-green-a873 {
        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 */
.mini-ec91 {
    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);
}

.pressed_6827 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .pressed_6827 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .warm-3a41 {
        grid-column: 1;
    }
    
    .notification_8289 {
        grid-column: 2;
    }
    
    .icon_purple_c9fa {
        grid-column: 3;
    }
}

.warm-3a41 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.warm-3a41:hover img {
    transform: scale(1.05);
}

/* Navigation */
.wrapper_bbdb {
    display: none;
}

@media (min-width: 1024px) {
    .wrapper_bbdb {
        display: block;
    }
}

/* Grouped Navigation */
.cool_604c {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.frame_full_295e {
    position: relative;
}

.picture_8882 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.frame_full_295e .block-d860 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.block-d860 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.grid_0628 {
    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;
}

.grid_0628:hover,
.grid_0628.fn-active-8054 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.out-cb93 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .out-cb93 {
        display: flex;
    }
}

/* Mobile Register Button */
.notification_8289 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .notification_8289 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.smooth-d5fd {
    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;
}

.smooth-d5fd::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 */
.icon_purple_c9fa {
    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) {
    .icon_purple_c9fa {
        display: none;
    }
}

.icon_purple_c9fa span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.icon_purple_c9fa.fn-active-8054 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.icon_purple_c9fa.fn-active-8054 span:nth-child(2) {
    opacity: 0;
}

.icon_purple_c9fa.fn-active-8054 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.tooltip_light_00ce {
    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;
}

.tooltip_light_00ce.fn-active-8054 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.container-hard-09f0 {
    overflow: hidden;
}

.primary_a2a0 {
    list-style: none;
    padding: 0.75rem 0;
}

.tertiary-2629 {
    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;
}

.tertiary-2629:hover,
.tertiary-2629.fn-active-8054 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tertiary-2629.panel_slow_c5cc {
    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;
}

.tertiary-2629.panel_slow_c5cc::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 */
.narrow_95ac {
    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;
}

.gas_8417 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.gas_8417:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.basic_75a8 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.basic_75a8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_hard_44c3 {
    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;
}

.section_hard_44c3:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.status-ace0 {
    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;
}

.hover-green-c40e {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.hover-green-c40e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.text-under-1ee3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.text-under-1ee3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.gradient_10ee {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.gradient_10ee: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);
}

.module-6ee3 {
    font-size: 1em;
    font-weight: 700;
}

.cold_16ac {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.nav_gas_065d {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.nav_gas_065d::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;
}

.accordion_north_4f7c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .accordion_north_4f7c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gradient-9573 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pressed-3c9c {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.paper-daf2 {
    margin-bottom: 2rem;
}

.layout-e0ed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .layout-e0ed {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-dfdc {
    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);
}

.list_b7da {
    font-size: 1.5rem;
}

.module-motion-9f77 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wood_3304 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-black-304c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.message-black-304c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.grid_040c {
    text-align: center;
    margin-bottom: 3rem;
}

.progress-fast-f7e4 {
    margin-bottom: 1rem;
}

.pro_84b9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.south_8553 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .south_8553 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .south_8553.tall_021f {
        direction: rtl;
    }
    
    .south_8553.tall_021f > * {
        direction: ltr;
    }
}

.box_purple_ba12 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.box_purple_ba12:first-child {
    margin-top: 0;
}

.texture_65b2 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.banner-purple-1b56 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.banner-purple-1b56:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.red_6415 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .red_6415 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_ca8a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.primary_glass_e73e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.advanced_3ffe {
    list-style: none;
}

.advanced_3ffe li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advanced_3ffe li:last-child {
    border-bottom: none;
}

/* Games Features */
.slider_1705 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.last_28c6 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.purple-ef51 {
    font-size: 2rem;
    flex-shrink: 0;
}

.current-cd2a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.hovered_597f {
    margin: 2rem 0;
}

.focused_f792 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.heading-46cc {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.gradient-9a40 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.white_0ba7 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.soft_0356 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft_0356 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft-83e2 {
    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);
}

.soft-83e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary-upper-b0c5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gold_59b3 {
    font-size: 1.5rem;
}

.hover-ae61 {
    color: var(--accent-color);
    margin: 0;
}

.blue_adda {
    list-style: none;
}

.blue_adda li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.blue_adda li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.accent-cfe5 {
    margin: 2rem 0;
}

.article-e49b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.header-easy-f1f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-easy-f1f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-outer-9810 {
    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);
}

.thick_ae1a {
    font-size: 1.25rem;
}

.hard_0a0b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.description_ad1c,
.white_57bc {
    text-align: center;
    margin: 2rem 0;
}

.top_cd66,
.white_194a {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.tabs_6f1b {
    margin: 2rem 0;
    text-align: center;
}

.top-b3bb {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-b3bb::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;
}

.header_4703 {
    position: relative;
    z-index: 1;
}

.dropdown_2749 {
    margin-bottom: 1rem;
}

.solid_2172 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accent-d7a7 {
    margin-bottom: 3rem;
}

.copper_30df {
    margin-top: 3rem;
}

.dropdown-small-5c49 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dropdown-small-5c49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-small-5c49 .tabs-dfdc {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.pagination_1263 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-901e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.selected-4ff0 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.message_2914 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .message_2914 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_2914 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.primary-static-d375 {
    margin-bottom: 1rem;
}

.rough-e445 img {
    margin-bottom: 1rem;
}

.in-4992 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_f011 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.new-8366 {
    list-style: none;
}

.new-8366 li {
    margin-bottom: 0.5rem;
}

.new-8366 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.new-8366 a:hover {
    color: var(--accent-color);
}

.table_steel_08b8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-2f05 {
    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);
}

.image-2f05:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.article_plasma_edbe {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.article_plasma_edbe p {
    margin-bottom: 0.25rem;
}

.copper-e57e {
    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) {
    .copper-e57e {
        flex-direction: row;
    }
}

.rough-ec4b {
    text-align: center;
}

@media (min-width: 768px) {
    .rough-ec4b {
        text-align: left;
    }
}

.rough-ec4b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.medium-dc98 {
    font-size: 0.75rem !important;
}

.surface-8f58 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.iron-6fb2 {
    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);
    }
}

.logo-ed2a {
    animation: fadeInUp 0.6s ease-out;
}

.feature-5c90 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.pattern-5e92 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-5e92 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.action_bc62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action_bc62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_ef3b {
    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);
}

.advanced_ef3b .purple-ef51 {
    font-size: 1.25rem;
}

.advanced_ef3b .badge_1eb7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.background_bottom_9f18 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .background_bottom_9f18 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tall_9be3 {
    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);
}

.tall_9be3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper-5a9f {
    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);
}

.wood-9bf2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.banner_out_30c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_lower_a701 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.left-527d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.left-527d .current-cd2a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.left-527d .feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-66aa {
    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);
}

.gradient-mini-fd27 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.gradient-mini-fd27 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gradient-mini-fd27 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.tiny_ac6b {
    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);
}

.sort_9b61 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.outline-4b49 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.outline-4b49 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.outline-4b49 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);
}

.outline-4b49 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.outline-4b49 input::placeholder {
    color: var(--text-muted);
}

.nav-e657 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-bronze-f074 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.header-bronze-f074 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.footer_4d5c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer_4d5c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.header-easy-f1f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-easy-f1f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside-outer-9810 {
    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);
}

.aside-outer-9810 .thick_ae1a {
    font-size: 1.25rem;
}

.aside-outer-9810 .hard_0a0b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.huge_5877 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-d830 {
    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);
}

.gallery-d830 .purple-ef51 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-d830 .current-cd2a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-d830 .feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.full-46f7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow_narrow_fedd {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.shadow_narrow_fedd .popup_c5cf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shadow_narrow_fedd .form_6b7d {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-up-228a {
    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);
}

.pattern_solid_c435 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pattern_solid_c435 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_yellow_a394 {
    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);
}

.row_yellow_a394:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-560b {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.warm-8109 {
    flex: 1;
}

.hovered-45e3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_3b1e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail-9b01 {
    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);
}

.thumbnail-9b01:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.list_hard_c98c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_hard_c98c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_iron_6955 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sort_iron_6955:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-wide-f325 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-c3a8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.image_d840 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accent-east-9dd5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.frame_c2d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic-1832 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-narrow-f16f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-narrow-f16f .mask_739f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-narrow-f16f .form-af5b {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-3be0 {
    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);
}

.tertiary_up_cb61 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_49a9 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary_49a9 .purple-ef51 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_49a9 .current-cd2a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_49a9 .feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_e680 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_e680 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_6fe7 {
    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);
}

.item_6fe7:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.slider-4e46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-4e46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium_ced9 {
    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);
}

.medium_ced9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.card_7a98 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro-186b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.heading-46cc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.plasma_3166 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.secondary-silver-1a5d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed-5f35 {
    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);
}

.pressed-5f35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-5287 {
    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);
}

.dirty-60da {
    flex: 1;
}

.content_blue_7399 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.dirty_bc34 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.short_0e70 {
    color: var(--text-gray);
    line-height: 1.6;
}

.green_e0e9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.surface-776c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-776c .popup_c5cf {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.surface-776c .form_6b7d {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_57bc {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_a615 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_a615 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.info_pro_6388 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_pro_6388 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_slow_a122 {
    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);
}

.tooltip_slow_a122:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary-last-b538 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus_870d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-hard-0e69 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.frame_d69e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fresh-fb0b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_south_eee4 {
    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);
}

.caption-yellow-608c {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm_3af2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter-d741 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary_up_cb61 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_49a9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tertiary_49a9 .current-cd2a {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary_49a9 .feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image-pro-2024 {
    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);
}

.gallery-5776 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-5776 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-5776 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-f2b2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notice-f2b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-8519 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.notice_798d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pressed_1767 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.down-9059 {
    padding: 1.5rem;
}

.icon-d985 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plasma-4018 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma-4018 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;
}

.plasma-4018 li:last-child {
    border-bottom: none;
}

.plasma-4018 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.footer_fresh_0a55 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_fresh_0a55 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-5a00 {
    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);
}

.new-5a00:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-middle-cf56 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed-e818 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-e6f8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.left-0f36 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.article_center_22c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-4cb2 {
    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);
}

.prev_dcf5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-87e3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.glass-db81 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-9253 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.popup_3d41 {
    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);
}

.overlay-5c4b {
    text-align: center;
}

.static-89bb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo-next-42b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.pressed-758d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_802e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message_802e .current-cd2a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.message_802e .feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-old-26d5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pagination-old-26d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pagination-old-26d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_plasma_c75b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dropdown_plasma_c75b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification-1ba0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.stale-7d66 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.current-cd2a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.info-easy-9302 {
    padding: 1.5rem;
}

.feature_55a4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wood-e037 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wood-e037 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;
}

.wood-e037 li:last-child {
    border-bottom: none;
}

.wood-e037 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.tiny-a903 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hover_acb4 {
    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_acb4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stale-c86f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-45c1 {
    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);
}

.upper-5a9f {
    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;
}

.wood-9bf2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner_out_30c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pattern-fluid-c6bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-963b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask_slow_30b6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.selected-c026 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fluid-7a46 {
    display: flex;
    gap: 1rem;
}

.fluid-7a46 .accordion-focused-0d34 {
    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;
}

.item-e4c8 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.thick_0aa0 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.west_0e03 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.west_0e03 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;
}

.west_0e03 li:last-child {
    border-bottom: none;
}

.west_0e03 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.west_b5de {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .west_b5de {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west_b5de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel_old_110a {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel_old_110a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_upper_9381 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.widget-gold-5645 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.mask_739f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.picture-under-df23 {
    font-size: 1rem;
}

.out-b55f {
    padding: 1.5rem;
}

.form-af5b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.overlay-5ea3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.overlay-5ea3 .overlay-5c4b {
    text-align: center;
}

.overlay-5ea3 .photo-next-42b1 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.overlay-5ea3 .solid_eed4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tall_e515 {
    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);
}

.tall_e515:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.backdrop_cba1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_cba1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-b1fd {
    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);
}

.basic-b1fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button_ede8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_c609 {
    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);
}

.title_d291 {
    font-size: 2rem;
    flex-shrink: 0;
}

.block-466f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-advanced-1bee {
    color: var(--text-gray);
    line-height: 1.6;
}

.solid_cd3e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.box_down_76b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge_fluid_c410 {
    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);
}

.status-d78d {
    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;
}

.status-d78d.hovered_06cb {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.status-d78d.complex-edbd {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.status-d78d.dropdown_fixed_4055 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.status-d78d.hero_2617 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.status-d78d.outer_6045 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.label_412a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item_west_7e80 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description-brown-affc {
    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);
}

.north_4650 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.full-46f7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-46f7 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;
}

.full-46f7 li:last-child {
    border-bottom: none;
}

.full-46f7 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.panel_pressed_3143 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel_pressed_3143 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panel_pressed_3143 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-0eb5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tertiary-0eb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary-0eb5.wrapper-6c0c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tertiary-0eb5.wrapper-6c0c {
        grid-column: span 3;
    }
}

.carousel_3145 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tertiary-0eb5.wrapper-6c0c .carousel_3145 {
    background: rgba(6, 182, 212, 0.1);
}

.rough_3302 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hidden-052b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tertiary-0eb5.wrapper-6c0c .hidden-052b {
    color: var(--info-color);
}

.badge-951c {
    padding: 1.5rem;
    text-align: center;
}

.notification-0b9e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tertiary-0eb5.wrapper-6c0c .notification-0b9e {
    color: var(--info-color);
}

.article_bfaf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bright-07a2 {
    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 */
.panel_1ec3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_1ec3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white_6c82 {
    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);
}

.white_6c82:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph-slow-0b65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-d830 {
    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);
}

.thick_ae1a {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-simple-b368 {
    flex: 1;
}

.article-e49b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.huge_914a {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle-8094 {
    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);
}

.sort-21b8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.progress-38e1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.iron-6fb2 {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stone-528e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone-528e .overlay-5c4b {
    text-align: center;
}

.stone-528e .static-89bb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.stone-528e .photo-next-42b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gas-9716 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status-a97f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture-995c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice-fbdf {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom_0303 {
    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);
}

.small_e891 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification-3dcf {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-3804 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .plasma-3804 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma-3804 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-463e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pattern-463e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter_west_6d54 {
    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);
}

.glass-dc0b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.popup-under-ee1e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cold-2b7a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cold-2b7a.slider_93b2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.cold-2b7a.gas-2833 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.cold-2b7a.left_33b9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.info_bfbd {
    padding: 1.5rem;
    text-align: center;
}

.overlay_8691 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail-0b19 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.thumbnail-0b19 .notification-wide-b395 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.input_2d98 {
    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);
}

.input_2d98:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.background_363c {
  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);
}

.hover-d561 {
    text-align: center;
}

.hover-d561 .static-89bb {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hover-d561 .photo-next-42b1 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.gold_0b1f { text-align: center; }
.complex_9b91 { text-align: left; }
.tall-1f99 { text-align: right; }

.small-d046 { margin-bottom: 0; }
.pink-1641 { margin-bottom: 0.5rem; }
.tall_4d7e { margin-bottom: 1rem; }
.outline_brown_301c { margin-bottom: 1.5rem; }
.solid_3aee { margin-bottom: 2rem; }

.complex_9f04 { margin-top: 0; }
.mask_lite_5023 { margin-top: 0.5rem; }
.summary_c3e7 { margin-top: 1rem; }
.wrapper-solid-a29d { margin-top: 1.5rem; }
.media-out-b6f0 { margin-top: 2rem; }

.fn-hidden-8054 { display: none; }
.fn-visible-8054 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .nav_gas_065d {
        padding: 6rem 0 3rem;
    }
    
    .accordion_north_4f7c {
        text-align: center;
    }
    
    .south_8553 {
        text-align: center;
    }
    
    .layout-e0ed {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .mini-ec91,
    .tooltip_light_00ce,
    .top-b3bb,
    .selected-4ff0 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .nav_gas_065d {
        background: none;
    }
}

/* Providers Section */
.under-bd3f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.new-56c0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .new-56c0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new-56c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_in_8658 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.aside_in_8658:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.wrapper_614c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pro-b2bd {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.outline_easy_c3d8 {
    list-style: none;
    padding: 0;
}

.outline_easy_c3d8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.outline_easy_c3d8 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.full-40f2 {
    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);
}

.full-40f2 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.video_center_b965 {
    padding: var(--section-padding);
}

.filter_first_6da4 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_first_6da4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.under-26f1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.under-26f1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.new-80ea {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.content_0e29 {
    display: flex;
    flex-direction: column;
}

.lower-b33a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.heading-223c {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.aside-ba38 {
    color: var(--accent-color);
}

.photo-fresh-c111 {
    font-size: 1.25rem;
}

.texture-b6d0 {
    margin-bottom: 1rem;
}

.texture-b6d0 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.link-under-c276 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.layout_silver_baf9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.overlay-5c4b {
    text-align: center;
}

.static-89bb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.photo-next-42b1 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.focused-d76f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cold-2659 {
    margin: 2rem 0;
}

.tooltip-west-d025 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tooltip-west-d025 .purple-ef51 {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-57c5 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.east-2f2d {
    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;
}

.east-2f2d:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout-d7ae {
    font-size: 2rem;
}

.message-67fb {
    display: flex;
    flex-direction: column;
}

.container-5106 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.disabled-84df {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.wide-d705 {
    padding: var(--section-padding);
}

.pagination_hovered_0989 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .pagination_hovered_0989 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pagination_hovered_0989 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brown_8f68 {
    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);
}

.brown_8f68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.brown_8f68 .static-89bb {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.brown_8f68 .photo-next-42b1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.brown_8f68 .hard-58cc {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.west_e4c5 {
    margin-top: 4rem;
}

.easy-4920 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.article-dim-bee1 {
    overflow-x: auto;
}

.dynamic-fa63 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dynamic-fa63 thead {
    background: var(--accent-color);
}

.dynamic-fa63 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.dynamic-fa63 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-fa63 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.dynamic-fa63 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.mask_wide_6d92 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-warm-53aa {
    max-width: 900px;
    margin: 0 auto;
}

.module_cool_3680 {
    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);
}

.module_cool_3680:hover {
    border-color: var(--accent-color);
}

.tiny_eeb6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.tiny_eeb6 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.media_fb71 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.module_cool_3680.fn-active-8054 .media_fb71 {
    transform: rotate(45deg);
}

.frame_solid_1e16 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.module_cool_3680.fn-active-8054 .frame_solid_1e16 {
    max-height: 1000px;
}

.frame_solid_1e16 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.bright-930d {
    padding: var(--section-padding);
}

.gradient-mini-fd27 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.filter-last-61c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon-hard-0dc2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-hard-0dc2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light_3215 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down_4510 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.overlay_dirty_95a0 {
    font-size: 2rem;
}

.title-c1e3 {
    color: var(--text-white);
    margin: 0;
}

.purple_5dee {
    list-style: none;
    padding: 0;
}

.purple_5dee li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.purple_5dee li:last-child {
    border-bottom: none;
}

.hidden_1007 {
    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);
}

.hidden_1007 p {
    color: var(--success-color);
    margin: 0;
}

.focus-prev-732f {
    margin-top: 3rem;
}

.thick_0aa0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.white_c666 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white_c666 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.iron-4703 {
    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);
}

.section_wide_b9bb {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.iron-4703 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.list_gold_8b00 {
    padding: var(--section-padding);
}

.paragraph_outer_9e03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_outer_9e03 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.full-5bf4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.full-5bf4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.grid-north-e173 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.list_da6e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.active_dc7e {
    flex: 1;
}

.modal_fast_7282 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.active-current-f45c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.small-8c6f {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-ce5a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-ce5a:last-child {
    border-bottom: none;
}

/* Comparison Section */
.pattern-static-1398 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.wrapper_east_d9fd {
    padding: var(--section-padding);
}

.in-bcac {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.accordion_yellow_a930 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_yellow_a930 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool_908e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_0391, .basic_6e8c, .chip_82c3 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.chip_82c3 {
    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 */
.tertiary_next_30e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.feature-75d0 {
    margin: 2rem 0;
}

.summary-first-e9fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge_708c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.silver-3307 {
    list-style: none;
    padding: 0;
}

.silver-3307 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;
}

.silver-3307 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.silver-3307 li:last-child {
    border-bottom: none;
}

.alert-7994 {
    text-align: center;
    margin-top: 2rem;
}

.image_0423 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.chip-stone-6523 {
    padding: var(--section-padding);
}

.filter_motion_0bbc {
    margin: 2rem 0;
}

.item-steel-42d8 {
    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) {
    .item-steel-42d8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.item-steel-42d8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero_47ab {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.top_569c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.thumbnail_huge_9d19 {
    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;
}

.element-stone-c44a {
    flex: 1;
}

.main_bronze_aca2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.warm_6605 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.warm-e040 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.footer_8381 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .footer_8381 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fluid-a4f3 {
    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);
}

.fluid-a4f3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fluid-a4f3 .static-89bb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fluid-a4f3 .photo-next-42b1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.old_2fec {
    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);
}

.progress-0cb4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.progress-0cb4 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.search_full_1a65 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .search_full_1a65 {
        grid-template-columns: 1fr 1fr;
    }
}

.cool_1076 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-0b9b {
    margin-bottom: 1.5rem;
}

.shade-0b9b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.shade-0b9b input,
.shade-0b9b 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;
}

.shade-0b9b input:focus,
.shade-0b9b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.popup-11ba {
    width: 100%;
    margin-top: 1rem;
}

.sort_yellow_fb4c {
    display: flex;
    align-items: center;
}

.footer_2830 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb-e30b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.background_tall_0e77 {
    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;
}

.active-blue-fcbf {
    color: var(--text-gray);
}

.dark-8f53 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.caption-164f {
    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);
}

.caption-164f p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.thick-b074 {
    margin-top: 3rem;
}

.component_8ef6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.tall_73cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-2ca2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.tertiary_pink_5fe3 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary_pink_5fe3:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.grid-action-738c {
    padding: var(--section-padding);
}

.frame-3e5e {
    margin: 2rem 0;
}

.orange-c376 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.picture-motion-863a {
    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;
}

.picture-motion-863a:hover, .picture-motion-863a.fn-active-8054 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.nav_old_c90d {
    display: none;
}

.nav_old_c90d.fn-active-8054 {
    display: block;
}

.active_64f8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-in-f75c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.avatar-a93a h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.avatar-a93a ul {
    list-style: none;
    padding: 0;
}

.avatar-a93a ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.avatar-a93a ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.center_849d {
    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 */
.gallery_08c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-yellow-d32e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary_2379 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-in-da38 {
    color: var(--accent-color);
    margin: 0;
}

.solid_56a1 {
    display: flex;
    gap: 1.5rem;
}

.solid_bed4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.texture_11af {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.title_f7a4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.title_f7a4.over-d4bb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.title_f7a4.hero-3a1f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.title_f7a4.pink_39fb {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.warm-0eda {
    margin-top: 2rem;
}

.picture_8d32 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hard_c756 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hard_c756 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fixed-13bb {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.top_50d9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.content_bd48 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.overlay_dynamic_13d1 {
    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 */
.basic-21a6 {
    padding: var(--section-padding);
}

.progress-wide-8eda {
    margin: 2rem 0;
}

.alert_smooth_51a2 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.steel-afe3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.message_f5e4 {
    list-style: none;
    padding: 0;
}

.message_f5e4 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;
}

.message_f5e4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.message_f5e4 li:last-child {
    border-bottom: none;
}

.down-8d93 {
    margin: 2rem 0;
}

.notification_74dd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hover_dac0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hover_dac0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slow-0464 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.top_b1f0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-f862 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.dropdown_e633 {
    margin-top: 2rem;
}

.hovered-45e3 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.title_d628 {
    list-style: none;
    padding: 0;
}

.prev_a7a7 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.prev_a7a7 a {
    color: var(--accent-color);
    text-decoration: none;
}

.prev_a7a7 a:hover {
    text-decoration: underline;
}

.info_1598 {
    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 */
.detail_selected_eda2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_1c9f {
    margin: 2rem 0;
}

.first_f59c {
    margin-bottom: 3rem;
}

.first_f59c .huge_708c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.iron_58f2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.slow-99b2 {
    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);
}

.slow-99b2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.mask_1f62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mask_1f62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-b004 {
    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 */
.column_outer_319c {
    padding: var(--section-padding);
}

.picture-next-1833 {
    margin: 2rem 0;
}

.orange_6bcc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.message_ce49 {
    overflow-x: auto;
    margin: 2rem 0;
}

.copper-feca {
    background: rgba(6, 182, 212, 0.1) !important;
}

.photo_up_a108 {
    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;
}

.bottom_7d5b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.pro_297d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pro_297d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wrapper_dd0b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_dd0b .purple-ef51 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.wrapper_dd0b .current-cd2a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.red_4b27 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.search-short-6126 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.action_77b1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action_77b1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.right-4b29 {
    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;
}

.right-4b29:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.column_last_e906 {
    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);
}

.search-dim-d4de {
    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;
}

.steel-e253 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button-hot-fe97 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.avatar-8fdb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.primary_purple_1f1d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.small_4e73 {
    color: var(--text-white);
    font-weight: 600;
}

.tag-02b9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav-3935 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-3935 .accordion-focused-0d34 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.aside-4c5c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside-4c5c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_5b0a {
    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);
}

.hover_5b0a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hover_5b0a .static-89bb {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover_5b0a .photo-next-42b1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.feature_plasma_3f91 {
    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);
}

.label_c68a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.label_c68a strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.fresh-fb0b {
    margin: 2rem 0;
}

.layout_south_eee4 {
    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);
}

.layout_south_eee4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.caption-yellow-608c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nav-6c3c {
    flex: 1;
}

.warm_3af2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.filter-d741 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.tertiary_up_cb61 {
    margin: 2rem 0;
}

.tertiary_49a9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_49a9 .current-cd2a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.tertiary_49a9 .feature_55a4 {
    color: var(--text-gray);
    margin: 0;
}

.image-pro-2024 {
    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);
}

.image-pro-2024 .top_cd66 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.red_4b27 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.pattern-5287 {
    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;
}

.dirty-60da {
    flex: 1;
}

.dirty_bc34 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.short_0e70 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.upper-5a9f {
    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;
}

.article-complex-84d4 {
    flex: 1;
}

.wood-9bf2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.banner_out_30c9 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.mask_slow_30b6 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.selected-c026 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.fluid-7a46 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.fluid-7a46 .accordion-focused-0d34 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.item-e4c8 {
    margin-top: 2rem;
}

.item-e4c8 .thick_0aa0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.red_4f14 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_3d41 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .popup_3d41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup_3d41 .overlay-5c4b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed-758d {
    margin: 2rem 0;
}

.message_802e {
    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 */
.pattern_iron_2d8d {
    padding: var(--section-padding);
}

.info-easy-9302 {
    margin-top: 1rem;
}

.wood-e037 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.wood-e037 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.wood-e037 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.banner-302a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag_smooth_a813 {
    margin: 2rem 0;
}

.preview-ec8b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.hidden-fresh-f551 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.shadow-next-81c2 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.pagination-2a42 {
    margin: 2rem 0;
}

.soft-9425 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.soft-9425 .huge_708c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface_complex_c24f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .surface_complex_c24f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail_iron_b4ba {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.picture_solid_6aba {
    color: var(--text-white);
    font-weight: 600;
}

.modal-fluid-d9e5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.table-9cd8 {
    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);
}

.table-9cd8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.input-out-b457 {
    padding: var(--section-padding);
}

.feature_6ae0 {
    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;
}

.feature_6ae0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.border-fed4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border-fed4 .section_wide_b9bb {
    font-size: 2rem;
    flex-shrink: 0;
}

.border-fed4 .inner_417e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image-large-5cc0 {
    flex: 1;
}

.carousel_6b5d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bronze_ac12 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze_ac12 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bronze_ac12 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.widget-lower-fd0a {
    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);
}

.widget-lower-fd0a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-lower-fd0a strong {
    color: var(--warning-color);
}

/* Slots Section */
.badge_6e9d {
    padding: var(--section-padding);
}

.frame_c2d3 {
    margin: 2rem 0;
}

/* Table Games Section */
.outline_dirty_c95c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-1832 {
    margin: 2rem 0;
}

.active-narrow-f16f {
    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);
}

.active-narrow-f16f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active-narrow-f16f .mask_739f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-narrow-f16f .form-af5b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.thumbnail-3be0 {
    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);
}

.thumbnail-3be0 .top_cd66 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.rough-0860 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hover_hard_0cdf {
    margin: 2rem 0;
}

.stale-0889 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron-3e1e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.video_3d14 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.blue_72e4 {
    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);
}

.blue_72e4:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.blue_72e4.fn-active-8054 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.down_78e6 {
    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);
}

.chip-paper-baec {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip-paper-baec strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.dark_ac24 {
    padding: var(--section-padding);
}

.action_e2bc {
    margin: 2rem 0;
}

.item-3407 {
    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);
}

.item-3407:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .item-3407 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.detail-yellow-b801 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.shade_cdc6 {
    flex: 1;
}

.red-7fdc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight_a63d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.right_bf02 {
    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;
}

.breadcrumb_bc87 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.avatar-4e0b {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wood_5c9b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.middle-3928 {
    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;
}

.middle-3928:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gold-c817 {
    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);
}

.large-95c0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.large-95c0 strong {
    color: var(--accent-color);
}

/* New Games Section */
.accordion-pro-e095 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-stale-cc34 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input-stale-cc34 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input-stale-cc34 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light_ae23 {
    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;
}

.light_ae23:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box-right-e3db {
    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;
}

.right_39e7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.container_91ef {
    font-size: 2rem;
}

.orange-9f6e {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.light-7fdf {
    flex: 1;
}

.preview_9cd6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.element-2f93 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-hot-22ec {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focus-8b19 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.summary-static-cee1 {
    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;
}

.paragraph-west-54bf {
    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;
}

.paragraph-west-54bf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav_left_ebe8 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-df8d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-first-04b5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .picture-first-04b5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down_90db {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media_medium_068d {
    color: var(--text-white);
    font-weight: 600;
}

.article-active-aeb4 {
    color: var(--accent-color);
    font-weight: 600;
}

.thumbnail-first-0442 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.thumbnail-first-0442 strong {
    color: var(--accent-color);
}

/* Security Section */
.primary_4b3f {
    padding: var(--section-padding);
}

/* Benefits Section */
.chip-east-beee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.up-81aa {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.content_green_a7ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-1d99 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.shade_2c1d {
    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) {
    .shade_2c1d {
        flex-direction: column;
        gap: 1rem;
    }
}

.shade_2c1d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade_2c1d .upper-5a9f {
    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;
}

.shade_2c1d .article-complex-84d4 {
    flex: 1;
}

.shade_2c1d .wood-9bf2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.shade_2c1d .banner_out_30c9 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.item-19fb {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-19fb .article-e49b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.item-19fb .huge_5877 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-19fb .huge_5877 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.item-19fb .huge_5877 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.gas-1bd9 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.paper-648a {
    padding: var(--section-padding);
}

.table-tall-50ba {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .table-tall-50ba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-3b08 {
    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);
}

.link-3b08:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.link-3b08 .hover-hot-d4fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-3b08 .short_6368 {
    flex: 1;
}

.link-3b08 .popup_c5cf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-3b08 .tooltip_d2e7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.status_c48e {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_c48e .accordion-dfcc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.status_c48e .filter_4184 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.status_c48e .filter_4184 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);
}

.status_c48e .filter_4184 li:last-child {
    border-bottom: none;
}

.status_c48e .filter_4184 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;
}

.status_c48e .filter_4184 li strong {
    color: var(--text-white);
}

.popup-outer-20d7 {
    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);
}

.popup-outer-20d7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.popup-outer-20d7 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.slider_orange_6a09 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown_ea96 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown_ea96 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dim_cdfe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dim_cdfe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.steel-c755 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paper_9ba2 {
    font-size: 2rem;
}

.footer-silver-2f56 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.element_new_9b8d {
    flex: 1;
}

.hovered-3177 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered-3177 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered-3177 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.badge-bright-69d0 {
    margin-top: 3rem;
}

.alert_smooth_51a2 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.steel-afe3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message_f5e4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message_f5e4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.message_f5e4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.message_f5e4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.tag_d914 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lower_8927 {
    margin: 2rem 0;
}

.iron-4677 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.iron-4677 .huge_708c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-liquid-c6de {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .detail-liquid-c6de {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside-fast-52d3 {
    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);
}

.aside-fast-52d3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.inner_1073 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-3da3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.picture_active_aab6 {
    padding: var(--section-padding);
}

.complex_5d06 {
    margin: 2rem 0;
}

.texture-under-96e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .texture-under-96e0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture-under-96e0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bronze-0ee3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze-0ee3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.secondary_copper_251d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.narrow-a4d0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.tooltip_754e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tooltip_754e.panel_pressed_2291 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dropdown-top-e824 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.shade_last_a966 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.article-advanced-082a {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article_light_29e5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notice_hot_5aae {
    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);
}

.notice_hot_5aae p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice_hot_5aae strong {
    color: var(--accent-color);
}

/* Update Log Section */
.panel-9e1b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-90bb {
    margin: 2rem 0;
}

.iron_049f {
    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) {
    .iron_049f {
        flex-direction: column;
        gap: 1rem;
    }
}

.iron_049f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.iron_049f::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);
}

.sort_west_0c09 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.preview-red-1362 {
    flex: 1;
}

.input_hard_604b {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.medium-cae1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.medium-cae1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-a75d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_stale_2bc8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient_blue_a115 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gradient_blue_a115 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_0100 {
    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);
}

.alert_red_c859 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hidden_iron_1629 {
    flex: 1;
}

.black_73d1 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.pro_48f8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.purple_1e96 {
    margin-top: 2rem;
    text-align: center;
}

.medium_3bcf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.medium_3bcf strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.backdrop_cba1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_cba1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-b1fd {
    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);
}

.basic-b1fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.basic-b1fd .message-middle-cf56 {
    font-size: 2rem;
    flex-shrink: 0;
}

.basic-b1fd .fixed-e818 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.basic-b1fd .feature-e6f8 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.basic-b1fd .left-0f36 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.fixed_9191 {
    padding: var(--section-padding);
}

.tertiary_c609 .row_east_c002 {
    flex: 1;
}

/* Promo Calendar Section */
.lower-814b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-3cdf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message-3cdf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-center-9659 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel_45d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.old_24d2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hover_98bd {
    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);
}

.label-2de6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb-silver-9f09 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.texture-06bd {
    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);
}

.texture-06bd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture-06bd strong {
    color: var(--accent-color);
}

/* Requirements Section */
.clean-9cd1 {
    padding: var(--section-padding);
}

.dark_fd2a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dark_fd2a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outer_d643 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_bottom_b111 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.texture-8fe7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.texture-8fe7 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-selected-8732 {
    margin-top: 3rem;
}

.avatar-selected-8732 .alert_smooth_51a2 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.avatar-selected-8732 .steel-afe3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar-selected-8732 .message_f5e4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.avatar-selected-8732 .message_f5e4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.avatar-selected-8732 .message_f5e4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.avatar-selected-8732 .message_f5e4 li strong {
    color: var(--warning-color);
}

.aside_1a6b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside_1a6b strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.over_29af {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_inner_ccd1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_inner_ccd1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_a6b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_a6b3 .huge_708c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.media_right_089e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paper-9435 {
    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);
}

.paper-9435:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.link_tiny_a57a {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-fa66 {
    flex: 1;
}

.active_pressed_5ac7 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.sort_fluid_3235 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gas-c0ee {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.text-4b3b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.summary-ef23 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .summary-ef23 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-e8fc {
    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);
}

.prev-e8fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.in-a884 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.main_center_c535 {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-0cb4 {
    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);
}

.inner_32cd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.inner_32cd strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.description-green-a873 { 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; }
.message-black-304c, .banner-purple-1b56 { max-width:100%; height:auto; }

.narrow_95ac, .section_hard_44c3, .status-ace0 { white-space:normal; }

.accordion_north_4f7c,
.south_8553,
.panel_1ec3,
.backdrop_cba1,
.tertiary_up_cb61,
.plasma-3804 {
  flex-wrap:wrap;
}

[class*="grid"],
.summary-ef23,
.texture-under-96e0,
.dropdown-small-5c49 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.nav_gas_065d img,
.south_8553 img,
.wood_3304 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gradient-9573, .pressed-3c9c,
.progress-fast-f7e4, .pro_84b9 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.article-dim-bee1 { width:100%; overflow-x:auto; }
.article-dim-bee1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.new-56c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .new-56c0 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.aside_in_8658 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.pagination_hovered_0989,
.item_motion_e117,
.pattern-focused-b444,
.primary_9f56,
.footer_8381,
.summary-ef23,
.texture-under-96e0,
.dropdown-small-5c49,
.background_363c,
.action_e2bc,
.new-56c0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .pagination_hovered_0989,
  .item_motion_e117,
  .pattern-focused-b444,
  .primary_9f56,
  .footer_8381,
  .summary-ef23,
  .texture-under-96e0,
  .dropdown-small-5c49,
  .background_363c,
  .action_e2bc,
  .new-56c0 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.brown_8f68,
.fluid-a4f3,
.prev-e8fc,
.tabs-dfdc,
.bronze-0ee3,
.hover-d561,
.item-3407,
.aside_in_8658 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.disabled_left_65de,
.alert_0e95,
.wrapper_ffc6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.disabled_left_65de > *,
.alert_0e95 > *,
.wrapper_ffc6 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 33c7 */
.phantom-card-n0 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
