/* {$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;
}

.message_lower_fe0e {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.status-b471 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .status-b471 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .status-b471 {
        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 */
.nav-3d6b {
    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);
}

.easy_4094 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .easy_4094 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .red_31ef {
        grid-column: 1;
    }
    
    .aside-5535 {
        grid-column: 2;
    }
    
    .right-de48 {
        grid-column: 3;
    }
}

.red_31ef img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.red_31ef:hover img {
    transform: scale(1.05);
}

/* Navigation */
.footer-42d8 {
    display: none;
}

@media (min-width: 1024px) {
    .footer-42d8 {
        display: block;
    }
}

/* Grouped Navigation */
.section-tall-2b50 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.progress-fixed-2fb8 {
    position: relative;
}

.hero-2b2d {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.progress-fixed-2fb8 .popup_acbf {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.popup_acbf {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.top_1734 {
    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;
}

.top_1734:hover,
.top_1734.fn-active-598e {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.complex-92b7 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .complex-92b7 {
        display: flex;
    }
}

/* Mobile Register Button */
.aside-5535 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .aside-5535 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.notice-2926 {
    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;
}

.notice-2926::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 */
.right-de48 {
    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) {
    .right-de48 {
        display: none;
    }
}

.right-de48 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.right-de48.fn-active-598e span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.right-de48.fn-active-598e span:nth-child(2) {
    opacity: 0;
}

.right-de48.fn-active-598e span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.component-bottom-d7e1 {
    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;
}

.component-bottom-d7e1.fn-active-598e {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.notice_e505 {
    overflow: hidden;
}

.primary-484d {
    list-style: none;
    padding: 0.75rem 0;
}

.breadcrumb-cool-f544 {
    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;
}

.breadcrumb-cool-f544:hover,
.breadcrumb-cool-f544.fn-active-598e {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.breadcrumb-cool-f544.detail_short_741a {
    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;
}

.breadcrumb-cool-f544.detail_short_741a::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 */
.row_west_2a28 {
    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;
}

.primary_8b35 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.primary_8b35:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.carousel-small-56c7 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.carousel-small-56c7:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.bright-bc06 {
    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;
}

.bright-bc06:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.info_last_93c3 {
    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;
}

.down_f8a3 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.down_f8a3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fixed_0ff9 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.fixed_0ff9:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.secondary_stone_ad77 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.secondary_stone_ad77: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);
}

.accent-motion-fb93 {
    font-size: 1em;
    font-weight: 700;
}

.sidebar_6db7 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.module_bottom_bddf {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.module_bottom_bddf::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;
}

.lite_fd8f {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .lite_fd8f {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.focused-2e34 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.green_60d9 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hidden-6a03 {
    margin-bottom: 2rem;
}

.frame_fluid_bcf2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .frame_fluid_bcf2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-bottom-915b {
    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);
}

.tag-d270 {
    font-size: 1.5rem;
}

.slider_west_d487 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.advanced-7b55 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paragraph-77c5 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.paragraph-77c5:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.pro-5e24 {
    text-align: center;
    margin-bottom: 3rem;
}

.alert-c6ee {
    margin-bottom: 1rem;
}

.out_9bd2 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.mini-06e2 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mini-06e2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .mini-06e2.feature_2b56 {
        direction: rtl;
    }
    
    .mini-06e2.feature_2b56 > * {
        direction: ltr;
    }
}

.label-last-bf74 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.label-last-bf74:first-child {
    margin-top: 0;
}

.container-399c {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.over_a2bf {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.over_a2bf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.avatar-dirty-5cd5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-dirty-5cd5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-fast-2451 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label-52e4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.block_f49d {
    list-style: none;
}

.block_f49d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block_f49d li:last-child {
    border-bottom: none;
}

/* Games Features */
.stone-9364 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.panel-a34f {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.surface-easy-4e2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.photo-e95f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.popup_f5ba {
    margin: 2rem 0;
}

.fast-87a0 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.container-cold-5449 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.pressed_4390 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.tag_liquid_1e6f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.element-solid-07ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .element-solid-07ba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_white_7de4 {
    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);
}

.button_white_7de4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.light_2d96 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.label-hard-f9ea {
    font-size: 1.5rem;
}

.cool-abc6 {
    color: var(--accent-color);
    margin: 0;
}

.easy-e187 {
    list-style: none;
}

.easy-e187 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.easy-e187 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.bright-76c0 {
    margin: 2rem 0;
}

.dynamic_d285 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.surface_advanced_7b44 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .surface_advanced_7b44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-56df {
    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);
}

.selected-c3aa {
    font-size: 1.25rem;
}

.form-focused-31b3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.top_3fd0,
.banner-glass-8da8 {
    text-align: center;
    margin: 2rem 0;
}

.active_f718,
.hero_ea7e {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.dark_d170 {
    margin: 2rem 0;
    text-align: center;
}

.tall_a248 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tall_a248::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;
}

.panel_fixed_03f6 {
    position: relative;
    z-index: 1;
}

.warm_e998 {
    margin-bottom: 1rem;
}

.alert_cool_4dc7 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.aside_9f8d {
    margin-bottom: 3rem;
}

.copper-8795 {
    margin-top: 3rem;
}

.gas_6d8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gas_6d8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas_6d8e .wrapper-bottom-915b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.liquid-147e {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar-inner-4897 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.module_red_77c0 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.module_fab9 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .module_fab9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_fab9 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.popup-copper-14ed {
    margin-bottom: 1rem;
}

.prev-f200 img {
    margin-bottom: 1rem;
}

.south_c841 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-huge-4de5 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.outline_1b38 {
    list-style: none;
}

.outline_1b38 li {
    margin-bottom: 0.5rem;
}

.outline_1b38 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.outline_1b38 a:hover {
    color: var(--accent-color);
}

.heading-3739 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.item-bronze-5e4c {
    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);
}

.item-bronze-5e4c:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.chip_solid_035d {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.chip_solid_035d p {
    margin-bottom: 0.25rem;
}

.fluid_6839 {
    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) {
    .fluid_6839 {
        flex-direction: row;
    }
}

.summary-left-006e {
    text-align: center;
}

@media (min-width: 768px) {
    .summary-left-006e {
        text-align: left;
    }
}

.summary-left-006e p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery_stale_c23e {
    font-size: 0.75rem !important;
}

.row_green_0888 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.paragraph-2320 {
    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);
    }
}

.lite-48d6 {
    animation: fadeInUp 0.6s ease-out;
}

.hover-steel-8198 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.menu_mini_da8c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu_mini_da8c {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.logo_5b4e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo_5b4e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-dark-b03d {
    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);
}

.article-dark-b03d .surface-easy-4e2d {
    font-size: 1.25rem;
}

.article-dark-b03d .iron-f217 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.gallery-2fdb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gallery-2fdb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-547c {
    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);
}

.bottom-547c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last_178b {
    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);
}

.widget_yellow_da44 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.component_out_17d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.steel-4c04 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_prev_3184 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hero_prev_3184 .photo-e95f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_prev_3184 .avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_cool_0074 {
    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);
}

.motion_bfe5 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.motion_bfe5 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.motion_bfe5 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.layout-ce62 {
    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);
}

.frame-cd67 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner_45e7 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner_45e7 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.banner_45e7 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);
}

.banner_45e7 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.banner_45e7 input::placeholder {
    color: var(--text-muted);
}

.gold_317b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-center-8f3d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.input-center-8f3d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.silver_2c1b {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.silver_2c1b:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.surface_advanced_7b44 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_advanced_7b44 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block-56df {
    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);
}

.block-56df .selected-c3aa {
    font-size: 1.25rem;
}

.block-56df .form-focused-31b3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.notification-selected-3d21 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white_db58 {
    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);
}

.white_db58 .surface-easy-4e2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.white_db58 .photo-e95f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.white_db58 .avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.media-791e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-fba0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border-fba0 .feature-17e7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border-fba0 .block-79d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-ce4a {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-757d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow-757d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.backdrop_4327 {
    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);
}

.backdrop_4327:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-74a9 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.black-95c1 {
    flex: 1;
}

.slider_dynamic_0b33 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card_85b5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail_4e86 {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.detail_4e86:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.main-small-8bd2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-small-8bd2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-old-4948 {
    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);
}

.gradient-old-4948:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.detail-2bb2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_paper_6c6c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.carousel_active_605d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tooltip-hovered-f138 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.highlight_a5fa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info_d0d3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_left_1ff2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_left_1ff2 .pattern-79d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_left_1ff2 .list-b50b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tertiary-rough-15a3 {
    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);
}

.fast-dc55 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-center-63d3 {
    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);
}

.media-center-63d3 .surface-easy-4e2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-center-63d3 .photo-e95f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-center-63d3 .avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.container_3859 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_3859 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu_copper_01f3 {
    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);
}

.menu_copper_01f3:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.progress_fresh_814c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress_fresh_814c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.large-1016 {
    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);
}

.large-1016:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.easy_e6c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-00ed {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.container-cold-5449 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.accent-slow-c448 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.module-f594 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_c62e {
    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);
}

.fixed_c62e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-c7fb {
    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);
}

.element_ccff {
    flex: 1;
}

.tertiary-black-f9d3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.liquid-aca3 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.message_north_6d65 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh_5ccb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.progress_2744 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress_2744 .feature-17e7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.progress_2744 .block-79d3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-glass-8da8 {
    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);
}

.filter_static_d698 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_static_d698 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.green-1642 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-1642 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-plasma-6ee6 {
    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);
}

.filter-plasma-6ee6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.copper_d005 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button_rough_77f9 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slow_129f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gradient-6ed3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wood-7f89 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid-e8ad {
    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);
}

.wrapper-3c6c {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-c57a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex-564c {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast-dc55 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-center-63d3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.media-center-63d3 .photo-e95f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media-center-63d3 .avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_hovered_d715 {
    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);
}

.clean-c1c4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .clean-c1c4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean-c1c4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_066e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.active_066e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny-2242 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.primary-south-1287 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.text-next-51bd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.mask-a559 {
    padding: 1.5rem;
}

.search-copper-8cb5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-silver-68d0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-silver-68d0 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;
}

.card-silver-68d0 li:last-child {
    border-bottom: none;
}

.card-silver-68d0 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.button-white-b7f0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-white-b7f0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.down-5310 {
    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);
}

.down-5310:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_545e {
    font-size: 2rem;
    flex-shrink: 0;
}

.clean-e2e4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video_1c55 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.breadcrumb-black-2460 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.old-37a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-07c7 {
    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);
}

.secondary_bbb7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.last_584b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.nav_9368 {
    color: var(--text-gray);
    line-height: 1.6;
}

.action-9e94 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.menu_175e {
    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);
}

.red-48d7 {
    text-align: center;
}

.media-43ab {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_basic_face {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider_complex_1544 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-first-0859 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-first-0859 .photo-e95f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-first-0859 .avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
}

.center_41f7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .center_41f7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .center_41f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.popup-2072 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.popup-2072:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.white_ada6 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.info_paper_6e68 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.photo-e95f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.active-966e {
    padding: 1.5rem;
}

.avatar_north_9f1a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.right-b057 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-b057 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;
}

.right-b057 li:last-child {
    border-bottom: none;
}

.right-b057 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.feature-gas-7763 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.logo-68ff {
    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);
}

.logo-68ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.liquid_4674 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-9412 {
    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);
}

.last_178b {
    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;
}

.widget_yellow_da44 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_out_17d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.info_tall_5a69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column_5c1a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row_slow_45cc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.upper-62c0 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.secondary_df0c {
    display: flex;
    gap: 1rem;
}

.secondary_df0c .middle_44ad {
    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;
}

.preview_6e00 {
    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);
}

.plasma-957e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.copper-5b20 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.copper-5b20 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;
}

.copper-5b20 li:last-child {
    border-bottom: none;
}

.copper-5b20 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.link-3aa3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link-3aa3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-3aa3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full-7b48 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.full-7b48:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-prev-7517 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active_35ba {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pattern-79d9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.first_98e8 {
    font-size: 1rem;
}

.liquid-6032 {
    padding: 1.5rem;
}

.list-b50b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.shade-orange-8920 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.shade-orange-8920 .red-48d7 {
    text-align: center;
}

.shade-orange-8920 .element_basic_face {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.shade-orange-8920 .slow-dd3e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.widget-active-d859 {
    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);
}

.widget-active-d859:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.outline-under-8736 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-under-8736 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_5316 {
    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);
}

.steel_5316:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-simple-f1cf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-099b {
    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);
}

.pattern-0ed0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_5f77 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text_simple_6c9a {
    color: var(--text-gray);
    line-height: 1.6;
}

.center_8e92 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.button_liquid_c1c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_83b0 {
    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);
}

.feature-right-486f {
    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;
}

.feature-right-486f.tertiary-efbe {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.feature-right-486f.alert_fc8c {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.feature-right-486f.primary_8263 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.feature-right-486f.article_black_f66a {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.feature-right-486f.popup_ba4b {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.focused_b569 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_1b96 {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm-175d {
    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);
}

.tiny_100c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.media-791e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-791e 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;
}

.media-791e li:last-child {
    border-bottom: none;
}

.media-791e li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.pink-9cfd {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pink-9cfd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pink-9cfd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lite-5204 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite-5204:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite-5204.light-04ba {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .lite-5204.light-04ba {
        grid-column: span 3;
    }
}

.disabled_hard_a649 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.lite-5204.light-04ba .disabled_hard_a649 {
    background: rgba(6, 182, 212, 0.1);
}

.iron-df68 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.progress-active-553c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.lite-5204.light-04ba .progress-active-553c {
    color: var(--info-color);
}

.text-short-7989 {
    padding: 1.5rem;
    text-align: center;
}

.hovered-7ddf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.lite-5204.light-04ba .hovered-7ddf {
    color: var(--info-color);
}

.row-a603 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.complex_8dea {
    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 */
.wrapper-cac8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .wrapper-cac8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hover_brown_d093 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hover_brown_d093:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower_8f7d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white_db58 {
    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);
}

.selected-c3aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium-12a1 {
    flex: 1;
}

.dynamic_d285 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask_mini_42a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dropdown-east-ef61 {
    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);
}

.wrapper-plasma-0a8c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.icon-new-06e5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.paragraph-2320 {
    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);
}

.widget-56e3 {
  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);
}

.widget-56e3 .red-48d7 {
    text-align: center;
}

.widget-56e3 .media-43ab {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.widget-56e3 .element_basic_face {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.bottom_3116 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outer_0a0b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-cold-2054 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form-4667 {
    color: var(--text-gray);
    line-height: 1.6;
}

.badge-old-87b7 {
    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);
}

.grid_light_bb28 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.outer_c931 {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu-lower-1df1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .menu-lower-1df1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-lower-1df1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-fluid-a2c0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-fluid-a2c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.east_6648 {
    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);
}

.detail_cd19 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tiny_cbc2 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.summary-light-361a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-light-361a.outline-over-0974 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.summary-light-361a.article_steel_425c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.summary-light-361a.surface-b980 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.full_0268 {
    padding: 1.5rem;
    text-align: center;
}

.left_c79f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.narrow_fd18 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.narrow_fd18 .texture-ab79 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.silver_bc6f {
    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);
}

.silver_bc6f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.module_yellow_556a {
  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);
}

.block-de27 {
    text-align: center;
}

.block-de27 .media-43ab {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.block-de27 .element_basic_face {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.grid_1f18 { text-align: center; }
.input_8f9d { text-align: left; }
.paragraph-3cf0 { text-align: right; }

.brown_94c9 { margin-bottom: 0; }
.tabs-d733 { margin-bottom: 0.5rem; }
.button-warm-4446 { margin-bottom: 1rem; }
.form_9675 { margin-bottom: 1.5rem; }
.chip-smooth-f140 { margin-bottom: 2rem; }

.highlight_8bd7 { margin-top: 0; }
.background-pressed-a5f8 { margin-top: 0.5rem; }
.feature_black_39c3 { margin-top: 1rem; }
.table_fresh_8db6 { margin-top: 1.5rem; }
.avatar_light_ef90 { margin-top: 2rem; }

.fn-hidden-598e { display: none; }
.fn-visible-598e { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .module_bottom_bddf {
        padding: 6rem 0 3rem;
    }
    
    .lite_fd8f {
        text-align: center;
    }
    
    .mini-06e2 {
        text-align: center;
    }
    
    .frame_fluid_bcf2 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .nav-3d6b,
    .component-bottom-d7e1,
    .tall_a248,
    .module_red_77c0 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .module_bottom_bddf {
        background: none;
    }
}

/* Providers Section */
.item_warm_12b3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-silver-f3f8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter-silver-f3f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .filter-silver-f3f8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_0401 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture_0401:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.motion_88da {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.backdrop-bright-4122 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.brown-895a {
    list-style: none;
    padding: 0;
}

.brown-895a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.brown-895a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.large-5f2f {
    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);
}

.large-5f2f p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.logo-smooth-4866 {
    padding: var(--section-padding);
}

.texture-0870 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-0870 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stone_2338 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stone_2338:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.table_tiny_438f {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.slider_south_b8bd {
    display: flex;
    flex-direction: column;
}

.title_lite_41c6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.notice-glass-b715 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.photo-bronze-a5bf {
    color: var(--accent-color);
}

.tertiary_71fb {
    font-size: 1.25rem;
}

.dark_63bb {
    margin-bottom: 1rem;
}

.dark_63bb p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.narrow_e872 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.paragraph_cc61 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.red-48d7 {
    text-align: center;
}

.media-43ab {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_basic_face {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.dropdown_smooth_76a1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-02c8 {
    margin: 2rem 0;
}

.stale-357a {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.stale-357a .surface-easy-4e2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-upper-3536 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter_b877 {
    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;
}

.filter_b877:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hidden_bcc8 {
    font-size: 2rem;
}

.outline-static-bd87 {
    display: flex;
    flex-direction: column;
}

.blue_6379 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.avatar_156e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.modal_lite_0963 {
    padding: var(--section-padding);
}

.slider-paper-0423 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slider-paper-0423 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider-paper-0423 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple-b521 {
    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);
}

.simple-b521:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.simple-b521 .media-43ab {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.simple-b521 .element_basic_face {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.simple-b521 .modal_855c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.gallery_thick_5705 {
    margin-top: 4rem;
}

.south-f228 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.section_2ce8 {
    overflow-x: auto;
}

.input-7695 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.input-7695 thead {
    background: var(--accent-color);
}

.input-7695 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.input-7695 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.input-7695 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.input-7695 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.stone-eb1f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old_a8b9 {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-liquid-1f3b {
    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);
}

.carousel-liquid-1f3b:hover {
    border-color: var(--accent-color);
}

.aside_dynamic_9e25 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.aside_dynamic_9e25 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.picture_outer_310f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.carousel-liquid-1f3b.fn-active-598e .picture_outer_310f {
    transform: rotate(45deg);
}

.purple-dc76 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.carousel-liquid-1f3b.fn-active-598e .purple-dc76 {
    max-height: 1000px;
}

.purple-dc76 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.backdrop-left-6e10 {
    padding: var(--section-padding);
}

.motion_bfe5 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.hard-ad5e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east-a28b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east-a28b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern_bronze_7ede {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown-stone-ee09 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.texture-static-9a77 {
    font-size: 2rem;
}

.primary-70a4 {
    color: var(--text-white);
    margin: 0;
}

.large-396e {
    list-style: none;
    padding: 0;
}

.large-396e li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.large-396e li:last-child {
    border-bottom: none;
}

.content-803c {
    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);
}

.content-803c p {
    color: var(--success-color);
    margin: 0;
}

.backdrop-yellow-8443 {
    margin-top: 3rem;
}

.plasma-957e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.thumbnail-middle-bf67 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thumbnail-middle-bf67 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask_steel_ef3c {
    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);
}

.tag_657d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mask_steel_ef3c p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.column-d330 {
    padding: var(--section-padding);
}

.slow_3487 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slow_3487 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static_b744 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.static_b744:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fluid-2d43 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gradient_c45d {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.primary_f883 {
    flex: 1;
}

.outline_2e95 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.module-small-1e58 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.card_short_1db5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-over-59b6 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-over-59b6:last-child {
    border-bottom: none;
}

/* Comparison Section */
.thick_1438 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.sort_4900 {
    padding: var(--section-padding);
}

.image_stone_dd62 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.current-1d4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .current-1d4c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_basic_cb33 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-6b57, .disabled_0bb4, .primary_red_6f53 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.primary_red_6f53 {
    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 */
.module_b4cb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.card_9f3d {
    margin: 2rem 0;
}

.north-58b7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph_simple_3407 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.east_e902 {
    list-style: none;
    padding: 0;
}

.east_e902 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;
}

.east_e902 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.east_e902 li:last-child {
    border-bottom: none;
}

.status-slow-b097 {
    text-align: center;
    margin-top: 2rem;
}

.lower_43e7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.stone_7160 {
    padding: var(--section-padding);
}

.inner_bf7e {
    margin: 2rem 0;
}

.section-173c {
    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) {
    .section-173c {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-173c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info_full_3d0e {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.article-blue-f543 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pagination_73c4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown-pressed-4e53 {
    flex: 1;
}

.image_7358 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.fast_f90f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.current_87c0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.heading_out_2d92 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .heading_out_2d92 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.summary_last_6bc1 {
    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);
}

.summary_last_6bc1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary_last_6bc1 .media-43ab {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary_last_6bc1 .element_basic_face {
    color: var(--text-gray);
    font-size: 1rem;
}

.header_c85b {
    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);
}

.message_4643 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.message_4643 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.aside_pink_13f2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .aside_pink_13f2 {
        grid-template-columns: 1fr 1fr;
    }
}

.west-0f24 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex_adf1 {
    margin-bottom: 1.5rem;
}

.complex_adf1 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.complex_adf1 input,
.complex_adf1 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;
}

.complex_adf1 input:focus,
.complex_adf1 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.link-upper-5629 {
    width: 100%;
    margin-top: 1rem;
}

.fixed-7b2c {
    display: flex;
    align-items: center;
}

.simple-9fce {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.outline_3015 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.primary_new_8e79 {
    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;
}

.breadcrumb_complex_b2cf {
    color: var(--text-gray);
}

.panel-active-671b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.gradient_3929 {
    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);
}

.gradient_3929 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.detail-2f9d {
    margin-top: 3rem;
}

.status-blue-46cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.wide-162f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main_0de4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.form_huge_2bc6 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form_huge_2bc6:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.advanced_fd98 {
    padding: var(--section-padding);
}

.row_a73d {
    margin: 2rem 0;
}

.bronze_2ca8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.outline_in_b3b4 {
    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;
}

.outline_in_b3b4:hover, .outline_in_b3b4.fn-active-598e {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.plasma-a738 {
    display: none;
}

.plasma-a738.fn-active-598e {
    display: block;
}

.disabled-over-c5ff {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption_middle_f7cd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.carousel-e545 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.carousel-e545 ul {
    list-style: none;
    padding: 0;
}

.carousel-e545 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.carousel-e545 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.large-3018 {
    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 */
.header-purple-7680 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-1f33 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link_9d9d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.component-1d94 {
    color: var(--accent-color);
    margin: 0;
}

.modal-gold-bdfb {
    display: flex;
    gap: 1.5rem;
}

.hero-liquid-6240 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box-88c2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.input_808c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.input_808c.tooltip-3340 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.input_808c.glass_eac7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.input_808c.border_dim_10b8 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.title-fresh-7ae6 {
    margin-top: 2rem;
}

.input-bottom-cad2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.table_5a85 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .table_5a85 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter-d829 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.detail-8561 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tag_1669 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.soft-d076 {
    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 */
.hero_under_b478 {
    padding: var(--section-padding);
}

.label_dark_b784 {
    margin: 2rem 0;
}

.pattern_9610 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.button-d2ff {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.main_55f8 {
    list-style: none;
    padding: 0;
}

.main_55f8 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;
}

.main_55f8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.main_55f8 li:last-child {
    border-bottom: none;
}

.badge_glass_45e7 {
    margin: 2rem 0;
}

.solid_c287 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.image-9d08 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-9d08 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.notice-6917 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus_7718 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-7af8 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sidebar-soft-23eb {
    margin-top: 2rem;
}

.slider_dynamic_0b33 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.pink_8e6c {
    list-style: none;
    padding: 0;
}

.article-bottom-f977 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.article-bottom-f977 a {
    color: var(--accent-color);
    text-decoration: none;
}

.article-bottom-f977 a:hover {
    text-decoration: underline;
}

.left_0807 {
    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 */
.accordion_current_0169 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down-8ef2 {
    margin: 2rem 0;
}

.aside_63c8 {
    margin-bottom: 3rem;
}

.aside_63c8 .paragraph_simple_3407 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.chip_in_d85d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hidden-fluid-fec8 {
    padding: 0.75rem 1.25rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.hidden-fluid-fec8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.liquid-8806 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .liquid-8806 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel-bc90 {
    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 */
.white_86bd {
    padding: var(--section-padding);
}

.gold-8930 {
    margin: 2rem 0;
}

.badge-simple-c7e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gallery_dirty_921a {
    overflow-x: auto;
    margin: 2rem 0;
}

.cool_5853 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.dark-8275 {
    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;
}

.secondary-new-b48d {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.pink-5718 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pink-5718 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column-left-7ebc {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column-left-7ebc .surface-easy-4e2d {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.column-left-7ebc .photo-e95f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.module_3fa0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.next-dc52 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_884b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_884b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-selected-0e25 {
    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;
}

.notice-selected-0e25:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.slider-b2fd {
    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);
}

.hero-smooth-4cee {
    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;
}

.media_fe54 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.list-d535 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.description_b6d8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hover_huge_c952 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wood-cb6b {
    color: var(--text-white);
    font-weight: 600;
}

.heading-6fd8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.warm-f126 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.warm-f126 .middle_44ad {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.upper_8ada {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .upper_8ada {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-5ac3 {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hero-5ac3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero-5ac3 .media-43ab {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hero-5ac3 .element_basic_face {
    color: var(--text-gray);
    font-size: 1rem;
}

.shadow-b654 {
    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);
}

.disabled-aef0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.disabled-aef0 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.wood-7f89 {
    margin: 2rem 0;
}

.liquid-e8ad {
    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);
}

.liquid-e8ad:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wrapper-3c6c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.container-38dd {
    flex: 1;
}

.footer-c57a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.complex-564c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.fast-dc55 {
    margin: 2rem 0;
}

.media-center-63d3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media-center-63d3 .photo-e95f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.media-center-63d3 .avatar_north_9f1a {
    color: var(--text-gray);
    margin: 0;
}

.hover_hovered_d715 {
    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);
}

.hover_hovered_d715 .active_f718 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.module_3fa0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.north-c7fb {
    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;
}

.element_ccff {
    flex: 1;
}

.liquid-aca3 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.message_north_6d65 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.last_178b {
    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;
}

.fixed-4581 {
    flex: 1;
}

.widget_yellow_da44 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.component_out_17d1 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.row_slow_45cc {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.upper-62c0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.secondary_df0c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.secondary_df0c .middle_44ad {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.preview_6e00 {
    margin-top: 2rem;
}

.preview_6e00 .plasma-957e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.advanced_d061 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_175e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu_175e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_175e .red-48d7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_complex_1544 {
    margin: 2rem 0;
}

.wrapper-first-0859 {
    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 */
.paper_3271 {
    padding: var(--section-padding);
}

.active-966e {
    margin-top: 1rem;
}

.right-b057 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.right-b057 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.right-b057 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.link-57b7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-9224 {
    margin: 2rem 0;
}

.accent_ca79 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.pagination_huge_a0a4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pressed_3184 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.cold_1334 {
    margin: 2rem 0;
}

.input-old-8ecc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.input-old-8ecc .paragraph_simple_3407 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.frame-lite-e99b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .frame-lite-e99b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern-top-65ea {
    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);
}

.outer-be80 {
    color: var(--text-white);
    font-weight: 600;
}

.aside-66b7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.form-dynamic-6b81 {
    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);
}

.form-dynamic-6b81 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.hard-7817 {
    padding: var(--section-padding);
}

.background-578e {
    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;
}

.background-578e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.silver-19b5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.silver-19b5 .tag_657d {
    font-size: 2rem;
    flex-shrink: 0;
}

.silver-19b5 .pagination-stale-8024 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.status-64d9 {
    flex: 1;
}

.soft_4a43 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.box-fast-d416 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-fast-d416 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.box-fast-d416 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.thumbnail_3707 {
    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);
}

.thumbnail_3707 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_3707 strong {
    color: var(--warning-color);
}

/* Slots Section */
.small_8217 {
    padding: var(--section-padding);
}

.highlight_a5fa {
    margin: 2rem 0;
}

/* Table Games Section */
.alert_f8c2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info_d0d3 {
    margin: 2rem 0;
}

.picture_left_1ff2 {
    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);
}

.picture_left_1ff2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.picture_left_1ff2 .pattern-79d9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.picture_left_1ff2 .list-b50b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tertiary-rough-15a3 {
    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);
}

.tertiary-rough-15a3 .active_f718 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.pressed_623f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_mini_428c {
    margin: 2rem 0;
}

.video_static_2ab0 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-dynamic-6469 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-south-6865 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thumbnail_d18e {
    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);
}

.thumbnail_d18e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.thumbnail_d18e.fn-active-598e {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner_2790 {
    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);
}

.old-7e2b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.old-7e2b strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.video-slow-a2ac {
    padding: var(--section-padding);
}

.box-c8f3 {
    margin: 2rem 0;
}

.link-brown-48f7 {
    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);
}

.link-brown-48f7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .link-brown-48f7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.iron_7e28 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.copper_83fc {
    flex: 1;
}

.container_prev_8120 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter_slow_f77c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.overlay-first-97a0 {
    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;
}

.shade-2375 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-bronze-48d0 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tooltip-fluid-570e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stale-69fa {
    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;
}

.stale-69fa:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.logo-wood-aeca {
    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);
}

.picture_cool_cdbd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.picture_cool_cdbd strong {
    color: var(--accent-color);
}

/* New Games Section */
.container_bottom_280c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-b496 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .basic-b496 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .basic-b496 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north-b22d {
    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;
}

.north-b22d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.focus_tall_0c95 {
    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;
}

.hard-455b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.mask-5f71 {
    font-size: 2rem;
}

.fixed_f287 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.pink-50ae {
    flex: 1;
}

.tabs-ffc2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.gallery_upper_cb4a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.frame_down_03b2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.complex-1fd1 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.texture_medium_e812 {
    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;
}

.mask-current-d292 {
    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;
}

.mask-current-d292:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.caption_5a63 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_f515 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.inner_9d63 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .inner_9d63 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-red-7625 {
    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);
}

.iron-00ba {
    color: var(--text-white);
    font-weight: 600;
}

.sidebar-outer-b1aa {
    color: var(--accent-color);
    font-weight: 600;
}

.block-82d6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.block-82d6 strong {
    color: var(--accent-color);
}

/* Security Section */
.center-e17c {
    padding: var(--section-padding);
}

/* Benefits Section */
.text_4057 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.slider-rough-428d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.tiny_bdc1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-9901 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.overlay-e303 {
    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) {
    .overlay-e303 {
        flex-direction: column;
        gap: 1rem;
    }
}

.overlay-e303:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.overlay-e303 .last_178b {
    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;
}

.overlay-e303 .fixed-4581 {
    flex: 1;
}

.overlay-e303 .widget_yellow_da44 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.overlay-e303 .component_out_17d1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.gallery-focused-8233 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-focused-8233 .dynamic_d285 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery-focused-8233 .notification-selected-3d21 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-focused-8233 .notification-selected-3d21 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gallery-focused-8233 .notification-selected-3d21 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.copper-e87a {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.search_first_3111 {
    padding: var(--section-padding);
}

.column-cold-1c8d {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .column-cold-1c8d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption-upper-04ec {
    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);
}

.caption-upper-04ec:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.caption-upper-04ec .video-up-df70 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-upper-04ec .form-liquid-9381 {
    flex: 1;
}

.caption-upper-04ec .feature-17e7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-upper-04ec .search-green-b76e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sort_hard_e6a9 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_hard_e6a9 .module_4365 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_hard_e6a9 .pattern-ffbb {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.sort_hard_e6a9 .pattern-ffbb 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);
}

.sort_hard_e6a9 .pattern-ffbb li:last-child {
    border-bottom: none;
}

.sort_hard_e6a9 .pattern-ffbb 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;
}

.sort_hard_e6a9 .pattern-ffbb li strong {
    color: var(--text-white);
}

.text-1118 {
    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);
}

.text-1118 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.text-1118 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.green_ebac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-8476 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture-8476 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo_3db8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.photo_3db8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.dropdown_lite_3119 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard-6a31 {
    font-size: 2rem;
}

.hover-4fe2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.west_79ac {
    flex: 1;
}

.thumbnail_fluid_5080 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_fluid_5080 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.thumbnail_fluid_5080 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.description_6128 {
    margin-top: 3rem;
}

.pattern_9610 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.button-d2ff {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main_55f8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main_55f8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.main_55f8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.main_55f8 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.button-e0c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-7e7c {
    margin: 2rem 0;
}

.up-5199 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.up-5199 .paragraph_simple_3407 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-5822 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .picture-5822 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo_selected_8819 {
    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);
}

.photo_selected_8819:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.article_34b2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.over-d117 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.warm-b93a {
    padding: var(--section-padding);
}

.widget_439d {
    margin: 2rem 0;
}

.small-68ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .small-68ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small-68ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-9f2e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gallery-9f2e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.text-right-3451 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.short-0255 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.icon_fixed_b239 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.icon_fixed_b239.banner_a28e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.info-pro-1cc8 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.fluid_718d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.menu_upper_b624 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.last-72a9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.logo_small_e745 {
    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);
}

.logo_small_e745 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo_small_e745 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.right-b604 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-stale-8404 {
    margin: 2rem 0;
}

.pink-cddc {
    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) {
    .pink-cddc {
        flex-direction: column;
        gap: 1rem;
    }
}

.pink-cddc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pink-cddc::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);
}

.logo-medium-b432 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.sort-simple-df1a {
    flex: 1;
}

.cool_1aa5 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.logo_005a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo_005a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.list_small_7707 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_b4d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cool-c164 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cool-c164 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blue_982f {
    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);
}

.hero_b251 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.description_purple_d212 {
    flex: 1;
}

.overlay_1830 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.prev-4c89 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.focused-9779 {
    margin-top: 2rem;
    text-align: center;
}

.rough_173f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.rough_173f strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.outline-under-8736 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-under-8736 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_5316 {
    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);
}

.steel_5316:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.steel_5316 .pagination_545e {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel_5316 .clean-e2e4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.steel_5316 .video_1c55 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.steel_5316 .breadcrumb-black-2460 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.disabled-362f {
    padding: var(--section-padding);
}

.preview-099b .nav_48b1 {
    flex: 1;
}

/* Promo Calendar Section */
.secondary_small_9a0d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-b401 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool-b401 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-c4d1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_92cf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.pagination_gas_74d4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-1617 {
    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);
}

.summary_23ed {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph_steel_dcd0 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.white-ecf4 {
    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);
}

.white-ecf4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-ecf4 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.sort_0126 {
    padding: var(--section-padding);
}

.list_3d42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .list_3d42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.light_9209 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_d993 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption-white-4726 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption-white-4726 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_51c6 {
    margin-top: 3rem;
}

.pagination_51c6 .pattern_9610 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pagination_51c6 .button-d2ff {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination_51c6 .main_55f8 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pagination_51c6 .main_55f8 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.pagination_51c6 .main_55f8 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.pagination_51c6 .main_55f8 li strong {
    color: var(--warning-color);
}

.row_e384 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row_e384 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.panel-8270 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-a0d4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel-a0d4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-86da {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled-86da .paragraph_simple_3407 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.outline-silver-6a7a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pattern-short-a3c7 {
    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);
}

.pattern-short-a3c7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mask-center-0fea {
    font-size: 2rem;
    flex-shrink: 0;
}

.info_28b2 {
    flex: 1;
}

.info-f020 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.disabled-6960 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.column_bcb7 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.avatar_952a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accordion-north-f0e9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .accordion-north-f0e9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small_731a {
    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);
}

.small_731a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pink-02a1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.focus-right-b2e8 {
    color: var(--text-gray);
    font-size: 1rem;
}

.message_4643 {
    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);
}

.mini_d512 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.mini_d512 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.status-b471 { 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; }
.paragraph-77c5, .over_a2bf { max-width:100%; height:auto; }

.row_west_2a28, .bright-bc06, .info_last_93c3 { white-space:normal; }

.lite_fd8f,
.mini-06e2,
.wrapper-cac8,
.outline-under-8736,
.fast-dc55,
.menu-lower-1df1 {
  flex-wrap:wrap;
}

[class*="grid"],
.accordion-north-f0e9,
.small-68ce,
.gas_6d8e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.module_bottom_bddf img,
.mini-06e2 img,
.advanced-7b55 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.focused-2e34, .green_60d9,
.alert-c6ee, .out_9bd2 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.section_2ce8 { width:100%; overflow-x:auto; }
.section_2ce8 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.filter-silver-f3f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .filter-silver-f3f8 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.texture_0401 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.slider-paper-0423,
.rough-dd7c,
.caption_full_73d0,
.button-thick-2b48,
.heading_out_2d92,
.accordion-north-f0e9,
.small-68ce,
.gas_6d8e,
.module_yellow_556a,
.box-c8f3,
.filter-silver-f3f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .slider-paper-0423,
  .rough-dd7c,
  .caption_full_73d0,
  .button-thick-2b48,
  .heading_out_2d92,
  .accordion-north-f0e9,
  .small-68ce,
  .gas_6d8e,
  .module_yellow_556a,
  .box-c8f3,
  .filter-silver-f3f8 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.simple-b521,
.summary_last_6bc1,
.small_731a,
.wrapper-bottom-915b,
.gallery-9f2e,
.block-de27,
.link-brown-48f7,
.texture_0401 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.tooltip_d933,
.glass_14d6,
.easy_920d {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tooltip_d933 > *,
.glass_14d6 > *,
.easy_920d > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7ba5 */
.promo-block-n0 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
