/* {$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;
}

.action_f8ce {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.status-2e26 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .status-2e26 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .status-2e26 {
        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 */
.top-4995 {
    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);
}

.wood-8624 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .wood-8624 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .form-fc21 {
        grid-column: 1;
    }
    
    .hot_1d0d {
        grid-column: 2;
    }
    
    .layout_65f6 {
        grid-column: 3;
    }
}

.form-fc21 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.form-fc21:hover img {
    transform: scale(1.05);
}

/* Navigation */
.pagination_96dc {
    display: none;
}

@media (min-width: 1024px) {
    .pagination_96dc {
        display: block;
    }
}

/* Grouped Navigation */
.stone-c0dd {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.surface-orange-3d94 {
    position: relative;
}

.gas_a81a {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.surface-orange-3d94 .media-7a20 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.media-7a20 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.dirty-a5bd {
    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;
}

.dirty-a5bd:hover,
.dirty-a5bd.fn-active-ddf8 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.info-b26a {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .info-b26a {
        display: flex;
    }
}

/* Mobile Register Button */
.hot_1d0d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hot_1d0d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.lite_d2cb {
    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;
}

.lite_d2cb::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 */
.layout_65f6 {
    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) {
    .layout_65f6 {
        display: none;
    }
}

.layout_65f6 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.layout_65f6.fn-active-ddf8 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.layout_65f6.fn-active-ddf8 span:nth-child(2) {
    opacity: 0;
}

.layout_65f6.fn-active-ddf8 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dim-87fc {
    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;
}

.dim-87fc.fn-active-ddf8 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.mask-rough-7f8e {
    overflow: hidden;
}

.middle-6c2c {
    list-style: none;
    padding: 0.75rem 0;
}

.menu-ccda {
    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;
}

.menu-ccda:hover,
.menu-ccda.fn-active-ddf8 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.menu-ccda.huge_d5d3 {
    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;
}

.menu-ccda.huge_d5d3::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 */
.message_glass_a9d9 {
    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;
}

.brown_bddc {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.brown_bddc:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.plasma_3cab {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.plasma_3cab:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.dropdown_active_26cf {
    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;
}

.dropdown_active_26cf:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.widget_621e {
    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;
}

.easy-4124 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.easy-4124:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern-9d87 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.pattern-9d87:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.gallery-down-e7a3 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.gallery-down-e7a3: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);
}

.item_cold_5e47 {
    font-size: 1em;
    font-weight: 700;
}

.banner_a176 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.gold-b403 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.gold-b403::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;
}

.module_bdba {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .module_bdba {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.badge-green-35d1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.main-stale-e7bb {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.full-9bde {
    margin-bottom: 2rem;
}

.tall_50f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tall_50f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-brown-a6d8 {
    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);
}

.grid-15c7 {
    font-size: 1.5rem;
}

.caption_full_a483 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.out-c0fb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_down_e855 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.container_down_e855:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.progress-43c5 {
    text-align: center;
    margin-bottom: 3rem;
}

.card_21b8 {
    margin-bottom: 1rem;
}

.glass_25dd {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.aside_7232 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .aside_7232 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .aside_7232.smooth_9df5 {
        direction: rtl;
    }
    
    .aside_7232.smooth_9df5 > * {
        direction: ltr;
    }
}

.box_gas_f969 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.box_gas_f969:first-child {
    margin-top: 0;
}

.hero_up_c68b {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.background_4ac8 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.background_4ac8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.upper-0c65 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .upper-0c65 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium_cdb6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop_3322 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.in-0549 {
    list-style: none;
}

.in-0549 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.in-0549 li:last-child {
    border-bottom: none;
}

/* Games Features */
.thumbnail_thick_9e69 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.form_480b {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.left_1fec {
    font-size: 2rem;
    flex-shrink: 0;
}

.tall-834a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.hidden_cb19 {
    margin: 2rem 0;
}

.hidden_d910 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.overlay_old_4b6a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.top-279e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.smooth-ca3a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.breadcrumb-middle-47a8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-middle-47a8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-short-13c5 {
    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);
}

.accordion-short-13c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.surface_e11a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.element-north-7d94 {
    font-size: 1.5rem;
}

.mask_5359 {
    color: var(--accent-color);
    margin: 0;
}

.component-5259 {
    list-style: none;
}

.component-5259 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.component-5259 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.carousel_full_c2ee {
    margin: 2rem 0;
}

.pagination_afc8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pattern-green-3994 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pattern-green-3994 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-brown-9e33 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 208, 132, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.dirty_e949 {
    font-size: 1.25rem;
}

.title-48da {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.tooltip-dark-947e,
.shadow-focused-4dba {
    text-align: center;
    margin: 2rem 0;
}

.preview-focused-4cdb,
.module_ee43 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.element-fast-4b8b {
    margin: 2rem 0;
    text-align: center;
}

.pattern-small-3206 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pattern-small-3206::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;
}

.motion-ee9c {
    position: relative;
    z-index: 1;
}

.plasma_dfa4 {
    margin-bottom: 1rem;
}

.focused-6f23 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.texture-20df {
    margin-bottom: 3rem;
}

.background_motion_14d4 {
    margin-top: 3rem;
}

.hero_hovered_31ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero_hovered_31ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero_hovered_31ac .banner-brown-a6d8 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dropdown_lower_09d2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pattern-69f4 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.copper-c54e {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.message_lite_1575 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .message_lite_1575 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_lite_1575 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.gold_7bac {
    margin-bottom: 1rem;
}

.surface_inner_822e img {
    margin-bottom: 1rem;
}

.info-1cc6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo_gold_4ccb {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.complex_0839 {
    list-style: none;
}

.complex_0839 li {
    margin-bottom: 0.5rem;
}

.complex_0839 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.complex_0839 a:hover {
    color: var(--accent-color);
}

.label-pink-b3df {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-d658 {
    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);
}

.detail-d658:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.outline_3cbe {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.outline_3cbe p {
    margin-bottom: 0.25rem;
}

.info-narrow-ec68 {
    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) {
    .info-narrow-ec68 {
        flex-direction: row;
    }
}

.surface_light_a771 {
    text-align: center;
}

@media (min-width: 768px) {
    .surface_light_a771 {
        text-align: left;
    }
}

.surface_light_a771 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.soft_7a3d {
    font-size: 0.75rem !important;
}

.modal-cool-0516 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.media_fixed_f50f {
    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);
    }
}

.large-9338 {
    animation: fadeInUp 0.6s ease-out;
}

.logo-3873 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.shade-stale-809e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade-stale-809e {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.box_0104 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_0104 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_center_08f4 {
    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);
}

.panel_center_08f4 .left_1fec {
    font-size: 1.25rem;
}

.panel_center_08f4 .bottom_e311 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.selected-e92e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .selected-e92e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-1669 {
    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);
}

.notice-1669:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left-eae3 {
    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);
}

.hard_2345 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dropdown_wood_898b {
    color: var(--text-gray);
    line-height: 1.6;
}

.clean-f9ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.advanced-e92e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.advanced-e92e .tall-834a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced-e92e .active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.middle_3377 {
    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);
}

.grid_7cda {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.grid_7cda img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.grid_7cda img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.caption_4b92 {
    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);
}

.blue_9d75 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mask_b6ac {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mask_b6ac label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask_b6ac 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);
}

.mask_b6ac input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask_b6ac input::placeholder {
    color: var(--text-muted);
}

.carousel_405f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-4b1a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.banner-4b1a input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.row_dark_13b6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.row_dark_13b6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.pattern-green-3994 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-green-3994 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner-brown-9e33 {
    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);
}

.banner-brown-9e33 .dirty_e949 {
    font-size: 1.25rem;
}

.banner-brown-9e33 .title-48da {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.border-c8dc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze_24bd {
    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);
}

.bronze_24bd .left_1fec {
    font-size: 2rem;
    flex-shrink: 0;
}

.bronze_24bd .tall-834a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bronze_24bd .active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.gas-3ab8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.banner_a114 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.banner_a114 .wrapper-warm-c9a6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.banner_a114 .shadow_cool_d605 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-11e0 {
    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);
}

.section-over-5801 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .section-over-5801 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_50d4 {
    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);
}

.wood_50d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description_fast_1ddf {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.south_4c12 {
    flex: 1;
}

.grid_down_7c2f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.input-right-5754 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.current-6cdf {
    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);
}

.current-6cdf:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.table-hovered-6fac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-hovered-6fac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media_narrow_eff4 {
    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);
}

.media_narrow_eff4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.secondary_798d {
    font-size: 2rem;
    flex-shrink: 0;
}

.paragraph-tiny-0c47 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.description_c174 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.mask-8e98 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.chip_pro_06e0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_bfb8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_fixed_81b7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active_fixed_81b7 .photo-8d56 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_fixed_81b7 .wrapper-9b79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-8acd {
    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);
}

.picture-d2c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-8cfe {
    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);
}

.detail-8cfe .left_1fec {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-8cfe .tall-834a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail-8cfe .active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.button_fe1f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_fe1f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_8ec8 {
    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);
}

.wood_8ec8:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.lite_c0e9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lite_c0e9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image-north-4589 {
    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);
}

.image-north-4589:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_a7a4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.column_lite_2d3c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay_old_4b6a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.article_purple_7e56 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.mask-up-8e2d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dirty_6763 {
    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);
}

.dirty_6763:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_center_2e2c {
    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);
}

.pattern-c4f6 {
    flex: 1;
}

.fast-e639 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.silver-eac4 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.out_ed66 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask_49ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_east_a6f1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_east_a6f1 .wrapper-warm-c9a6 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.photo_east_a6f1 .shadow_cool_d605 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-focused-4dba {
    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);
}

.advanced_2b49 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced_2b49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.smooth_8da4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth_8da4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_cd33 {
    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);
}

.message_cd33:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green_bc34 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_mini_3901 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dark_8c1e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.article-short-fc9f {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hover-hovered-8031 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-1ec3 {
    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);
}

.texture-in-5bda {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex-7b30 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.solid-db2a {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-d2c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-8cfe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.detail-8cfe .tall-834a {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-8cfe .active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.bronze_3b99 {
    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);
}

.component-5ccf {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component-5ccf {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .component-5ccf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.in-7b6e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.in-7b6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out_549b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tag-left-e4b0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.backdrop_thick_bcf2 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tooltip_4687 {
    padding: 1.5rem;
}

.purple_3f82 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heading-3886 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heading-3886 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;
}

.heading-3886 li:last-child {
    border-bottom: none;
}

.heading-3886 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.logo-pressed-40c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .logo-pressed-40c1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.block_easy_47c7 {
    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);
}

.block_easy_47c7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center_eee2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_slow_874e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plasma-e02e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.fresh_0eff {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.column-9945 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide-18e8 {
    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);
}

.search_medium_19ac {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-dark-35fd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_black_7b4c {
    color: var(--text-gray);
    line-height: 1.6;
}

.gold_47da {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.mask-10f7 {
    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);
}

.shadow_aa0a {
    text-align: center;
}

.solid-2a9d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon_cool_8eed {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.purple-9118 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dynamic-27ab {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dynamic-27ab .tall-834a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic-27ab .active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_d2b4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline_d2b4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline_d2b4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shade-middle-3a0e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.shade-middle-3a0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-steel-0080 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.active_abea {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tall-834a {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.left_55e1 {
    padding: 1.5rem;
}

.active-a2fa {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.soft_86d2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soft_86d2 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;
}

.soft_86d2 li:last-child {
    border-bottom: none;
}

.soft_86d2 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.next_8c28 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.north-dd5b {
    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);
}

.north-dd5b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold-f381 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-paper-8355 {
    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);
}

.left-eae3 {
    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;
}

.hard_2345 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dropdown_wood_898b {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_ffe4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small_5ed0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel-up-ecaa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hovered_b3cc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.medium_8c52 {
    display: flex;
    gap: 1rem;
}

.medium_8c52 .header-purple-af0c {
    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;
}

.inner_7f02 {
    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);
}

.container-bright-1957 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accordion-brown-0116 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-brown-0116 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;
}

.accordion-brown-0116 li:last-child {
    border-bottom: none;
}

.accordion-brown-0116 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.out_fd6d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .out_fd6d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_fd6d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form_bf03 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.form_bf03:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_60d5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.info_tiny_0f93 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.photo-8d56 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.widget-bronze-27e9 {
    font-size: 1rem;
}

.purple_d02b {
    padding: 1.5rem;
}

.wrapper-9b79 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.cool-1aa4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cool-1aa4 .shadow_aa0a {
    text-align: center;
}

.cool-1aa4 .icon_cool_8eed {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.cool-1aa4 .filter-mini-8b56 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.info-5f09 {
    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);
}

.info-5f09:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.footer-complex-412b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-complex-412b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-fbca {
    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);
}

.carousel-fbca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top_3497 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert-fa5c {
    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);
}

.avatar-dcd1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide_ef96 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-blue-80ed {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-narrow-0bae {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.green-acf1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_bf21 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.smooth_5605 {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smooth_5605.carousel-d077 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.smooth_5605.slow-6cff {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.smooth_5605.active-ffa6 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.smooth_5605.header_94a6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.smooth_5605.popup-55ad {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.primary_218b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.overlay-bbd6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-rough-de41 {
    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);
}

.old-b22a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.gas-3ab8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gas-3ab8 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;
}

.gas-3ab8 li:last-child {
    border-bottom: none;
}

.gas-3ab8 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.module_7571 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .module_7571 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .module_7571 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_da06 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tertiary_da06:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_da06.summary-f7d6 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tertiary_da06.summary-f7d6 {
        grid-column: span 3;
    }
}

.old_0270 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tertiary_da06.summary-f7d6 .old_0270 {
    background: rgba(6, 182, 212, 0.1);
}

.list_middle_497e {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.status_up_421e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tertiary_da06.summary-f7d6 .status_up_421e {
    color: var(--info-color);
}

.down_d21b {
    padding: 1.5rem;
    text-align: center;
}

.dynamic_e730 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tertiary_da06.summary-f7d6 .dynamic_e730 {
    color: var(--info-color);
}

.icon_91b1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.preview-focused-5c3b {
    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 */
.warm-2611 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .warm-2611 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-e904 {
    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);
}

.hidden-e904:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus-bronze-93be {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze_24bd {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.dirty_e949 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro-c18e {
    flex: 1;
}

.pagination_afc8 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.outer-4afd {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny_0692 {
    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);
}

.tag-thick-5ef7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.short_66a2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.media_fixed_f50f {
    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);
}

.badge_wide_8224 {
  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);
}

.badge_wide_8224 .shadow_aa0a {
    text-align: center;
}

.badge_wide_8224 .solid-2a9d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.badge_wide_8224 .icon_cool_8eed {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.dropdown-last-4b4e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-8846 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-large-b1d3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.thumbnail_cold_4a30 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wide_6fab {
    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);
}

.prev-05c6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.purple-051b {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-gold-cce9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .label-gold-cce9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .label-gold-cce9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_9cca {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero_9cca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_824a {
    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);
}

.medium_0e52 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.link-static-3561 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tertiary-3a01 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tertiary-3a01.logo_0556 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary-3a01.accent-easy-0d52 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tertiary-3a01.box-3616 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.container_small_4591 {
    padding: 1.5rem;
    text-align: center;
}

.tabs-1d32 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.north_4d55 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.north_4d55 .lite-d2f3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.progress_e6cb {
    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);
}

.progress_e6cb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gas-7af7 {
  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);
}

.progress_0628 {
    text-align: center;
}

.progress_0628 .solid-2a9d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.progress_0628 .icon_cool_8eed {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.fresh_d739 { text-align: center; }
.box_a39e { text-align: left; }
.status-54fc { text-align: right; }

.main-rough-7d07 { margin-bottom: 0; }
.tag_b5f6 { margin-bottom: 0.5rem; }
.status-d375 { margin-bottom: 1rem; }
.tertiary-cbc7 { margin-bottom: 1.5rem; }
.fluid_a1f0 { margin-bottom: 2rem; }

.aside-21cd { margin-top: 0; }
.main_pressed_9e03 { margin-top: 0.5rem; }
.background-bronze-7e75 { margin-top: 1rem; }
.form-gas-f6c7 { margin-top: 1.5rem; }
.mini-0f83 { margin-top: 2rem; }

.fn-hidden-ddf8 { display: none; }
.fn-visible-ddf8 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .gold-b403 {
        padding: 6rem 0 3rem;
    }
    
    .module_bdba {
        text-align: center;
    }
    
    .aside_7232 {
        text-align: center;
    }
    
    .tall_50f7 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .top-4995,
    .dim-87fc,
    .pattern-small-3206,
    .copper-c54e {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .gold-b403 {
        background: none;
    }
}

/* Providers Section */
.wrapper-static-fc06 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.over_aa19 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .over_aa19 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .over_aa19 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-8a45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.modal-8a45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel-cold-f16d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-f39b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mask_lower_5988 {
    list-style: none;
    padding: 0;
}

.mask_lower_5988 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.mask_lower_5988 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.wrapper_red_0a04 {
    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);
}

.wrapper_red_0a04 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.banner-selected-b17f {
    padding: var(--section-padding);
}

.grid_47df {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid_47df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green-8c02 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.green-8c02:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge_e108 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hidden_609e {
    display: flex;
    flex-direction: column;
}

.yellow-e708 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.modal_purple_e043 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.wood_1555 {
    color: var(--accent-color);
}

.focused-b9ae {
    font-size: 1.25rem;
}

.liquid-022d {
    margin-bottom: 1rem;
}

.liquid-022d p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.list_aeea {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.label-088e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.shadow_aa0a {
    text-align: center;
}

.solid-2a9d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon_cool_8eed {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.red_a840 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_fast_c21d {
    margin: 2rem 0;
}

.smooth_030d {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.smooth_030d .left_1fec {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid-7e35 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.column-edf3 {
    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;
}

.column-edf3:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.search-986a {
    font-size: 2rem;
}

.slider_solid_4cf8 {
    display: flex;
    flex-direction: column;
}

.smooth-c4f0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.warm_30f7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.content_6d55 {
    padding: var(--section-padding);
}

.progress-complex-185f {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .progress-complex-185f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress-complex-185f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_5126 {
    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);
}

.popup_5126:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.popup_5126 .solid-2a9d {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.popup_5126 .icon_cool_8eed {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.popup_5126 .yellow-f790 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.active_092a {
    margin-top: 4rem;
}

.overlay-first-7f5b {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.in-3db1 {
    overflow-x: auto;
}

.notification_59e8 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.notification_59e8 thead {
    background: var(--accent-color);
}

.notification_59e8 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.notification_59e8 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.notification_59e8 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.notification_59e8 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.column_yellow_78fc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-smooth-4dc5 {
    max-width: 900px;
    margin: 0 auto;
}

.item-0fb9 {
    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);
}

.item-0fb9:hover {
    border-color: var(--accent-color);
}

.highlight_0721 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.highlight_0721 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.lower-b28d {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.item-0fb9.fn-active-ddf8 .lower-b28d {
    transform: rotate(45deg);
}

.focus-medium-f255 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.item-0fb9.fn-active-ddf8 .focus-medium-f255 {
    max-height: 1000px;
}

.focus-medium-f255 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.input-bronze-2f51 {
    padding: var(--section-padding);
}

.grid_7cda {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.message-3bfe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_purple_3111 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_purple_3111 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element-smooth-7eb0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-active-9a3d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-0caa {
    font-size: 2rem;
}

.focused-4e23 {
    color: var(--text-white);
    margin: 0;
}

.fluid_98cb {
    list-style: none;
    padding: 0;
}

.fluid_98cb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fluid_98cb li:last-child {
    border-bottom: none;
}

.container-ef1e {
    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);
}

.container-ef1e p {
    color: var(--success-color);
    margin: 0;
}

.warm-cffb {
    margin-top: 3rem;
}

.container-bright-1957 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.white-51c6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .white-51c6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.row-up-04f0 {
    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);
}

.center_927c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.row-up-04f0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.pattern-right-296a {
    padding: var(--section-padding);
}

.block_bd8c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_bd8c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black_bf77 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.black_bf77:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.new_7319 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video_clean_8b8e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.avatar_d170 {
    flex: 1;
}

.widget_0468 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.active-b70c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.wide-4387 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev_324c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prev_324c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.smooth_58d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.tag_left_f74d {
    padding: var(--section-padding);
}

.table_7c74 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.focus-3690 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus-3690 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_598d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_1465, .pro_a1de, .hard-f6ab {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hard-f6ab {
    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 */
.iron_4ed7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected_d5b7 {
    margin: 2rem 0;
}

.outer_6c60 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail_39d2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.next_402f {
    list-style: none;
    padding: 0;
}

.next_402f 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;
}

.next_402f li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.next_402f li:last-child {
    border-bottom: none;
}

.row-light-8cab {
    text-align: center;
    margin-top: 2rem;
}

.background_green_e1f0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.border-0ce8 {
    padding: var(--section-padding);
}

.image-62e3 {
    margin: 2rem 0;
}

.sidebar_3d62 {
    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) {
    .sidebar_3d62 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sidebar_3d62:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.texture-stone-a07d {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.icon_last_794f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.shadow-e0ec {
    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;
}

.next_9f80 {
    flex: 1;
}

.overlay-35e7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.main_fc04 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.carousel_dd5e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.dark-bca3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .dark-bca3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.layout_1605 {
    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);
}

.layout_1605:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.layout_1605 .solid-2a9d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout_1605 .icon_cool_8eed {
    color: var(--text-gray);
    font-size: 1rem;
}

.pattern-2dc8 {
    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);
}

.plasma-9ad5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.plasma-9ad5 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hover_e75c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hover_e75c {
        grid-template-columns: 1fr 1fr;
    }
}

.media_c6d2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dim_655f {
    margin-bottom: 1.5rem;
}

.dim_655f label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dim_655f input,
.dim_655f select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 1rem;
}

.dim_655f input:focus,
.dim_655f select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.red_b8ca {
    width: 100%;
    margin-top: 1rem;
}

.up_23e9 {
    display: flex;
    align-items: center;
}

.surface_gas_655e {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.text_pressed_857b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.label-small-6236 {
    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;
}

.form-pro-135d {
    color: var(--text-gray);
}

.logo_under_15f5 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.avatar_fluid_5aad {
    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);
}

.avatar_fluid_5aad p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.focus_gas_6afd {
    margin-top: 3rem;
}

.action_de10 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.shadow_e384 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_pressed_2cc6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.small-dda4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.small-dda4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.aside-d396 {
    padding: var(--section-padding);
}

.bright-fd70 {
    margin: 2rem 0;
}

.wood-3b38 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.logo-f603 {
    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;
}

.logo-f603:hover, .logo-f603.fn-active-ddf8 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.list_motion_8b89 {
    display: none;
}

.list_motion_8b89.fn-active-ddf8 {
    display: block;
}

.panel_orange_7f1d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_3f9b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column_4b6e h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.column_4b6e ul {
    list-style: none;
    padding: 0;
}

.column_4b6e ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.column_4b6e ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.notification-dark-ea6d {
    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 */
.card_plasma_18c9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-blue-e3fe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_pink_861f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.photo_713d {
    color: var(--accent-color);
    margin: 0;
}

.out_92e2 {
    display: flex;
    gap: 1.5rem;
}

.easy-be8b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.main-64de {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.fresh_61e6 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.fresh_61e6.west-73e3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.fresh_61e6.content-f4f0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.fresh_61e6.modal-c35d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.outline_44b0 {
    margin-top: 2rem;
}

.table_soft_400f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pagination_green_eb61 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pagination_green_eb61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-stale-7ac8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.content_4e29 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.small_364a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.background_narrow_34ed {
    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 */
.logo-selected-e3bb {
    padding: var(--section-padding);
}

.fresh_9ed2 {
    margin: 2rem 0;
}

.shadow-e01f {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.pagination-lite-7175 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.sidebar-5839 {
    list-style: none;
    padding: 0;
}

.sidebar-5839 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;
}

.sidebar-5839 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.sidebar-5839 li:last-child {
    border-bottom: none;
}

.shadow_752e {
    margin: 2rem 0;
}

.focus-solid-f5b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice_dirty_f67e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .notice_dirty_f67e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fresh_aa52 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cool-a13a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component-large-98aa {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.top_6731 {
    margin-top: 2rem;
}

.grid_down_7c2f {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.motion_0a70 {
    list-style: none;
    padding: 0;
}

.short-b99f {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.short-b99f a {
    color: var(--accent-color);
    text-decoration: none;
}

.short-b99f a:hover {
    text-decoration: underline;
}

.component_lite_e497 {
    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 */
.sort_207c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_03f3 {
    margin: 2rem 0;
}

.heading_6656 {
    margin-bottom: 3rem;
}

.heading_6656 .detail_39d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dim-ede2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.easy_7d73 {
    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);
}

.easy_7d73:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.down_a316 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .down_a316 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_wood_52d4 {
    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 */
.preview-west-3db5 {
    padding: var(--section-padding);
}

.warm_d8c3 {
    margin: 2rem 0;
}

.layout-188d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.alert-3938 {
    overflow-x: auto;
    margin: 2rem 0;
}

.new-10e8 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.fluid-91f7 {
    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;
}

.upper-8084 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.preview-5e4d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .preview-5e4d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_north_2730 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_north_2730 .left_1fec {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.mask_north_2730 .tall-834a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-4a7f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.menu-d1de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_thick_ea4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_thick_ea4c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel_bottom_52ae {
    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;
}

.carousel_bottom_52ae:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.focus-upper-3326 {
    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);
}

.notice-tiny-4eb6 {
    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;
}

.wide_ad44 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.right-39a8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.panel-copper-ce0f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.iron-e206 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.picture_liquid_74dd {
    color: var(--text-white);
    font-weight: 600;
}

.element_e899 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notification-ded6 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-ded6 .header-purple-af0c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.dim-a534 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dim-a534 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall-e479 {
    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);
}

.tall-e479:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tall-e479 .solid-2a9d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tall-e479 .icon_cool_8eed {
    color: var(--text-gray);
    font-size: 1rem;
}

.menu-hard-e861 {
    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);
}

.gradient_1825 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gradient_1825 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.hover-hovered-8031 {
    margin: 2rem 0;
}

.menu-1ec3 {
    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);
}

.menu-1ec3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.texture-in-5bda {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.caption_bff8 {
    flex: 1;
}

.complex-7b30 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.solid-db2a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.picture-d2c2 {
    margin: 2rem 0;
}

.detail-8cfe {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail-8cfe .tall-834a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.detail-8cfe .active-a2fa {
    color: var(--text-gray);
    margin: 0;
}

.bronze_3b99 {
    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);
}

.bronze_3b99 .preview-focused-4cdb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.active-4a7f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.shadow_center_2e2c {
    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;
}

.pattern-c4f6 {
    flex: 1;
}

.silver-eac4 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.out_ed66 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.left-eae3 {
    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;
}

.narrow_5b69 {
    flex: 1;
}

.hard_2345 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.dropdown_wood_898b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.carousel-up-ecaa {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.hovered_b3cc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.medium_8c52 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.medium_8c52 .header-purple-af0c {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.inner_7f02 {
    margin-top: 2rem;
}

.inner_7f02 .container-bright-1957 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.preview-current-b875 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-10f7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask-10f7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-10f7 .shadow_aa0a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.purple-9118 {
    margin: 2rem 0;
}

.dynamic-27ab {
    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 */
.avatar-north-e475 {
    padding: var(--section-padding);
}

.left_55e1 {
    margin-top: 1rem;
}

.soft_86d2 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.soft_86d2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.soft_86d2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.paragraph_pro_4ab3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge-tiny-f3dd {
    margin: 2rem 0;
}

.lite_d21e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.wide_5d20 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.outer_0651 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.shade_6ed5 {
    margin: 2rem 0;
}

.caption-b5b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.caption-b5b1 .detail_39d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-solid-0f89 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-solid-0f89 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.action_ddbd {
    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);
}

.last-edd5 {
    color: var(--text-white);
    font-weight: 600;
}

.background_purple_2ee7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.link_in_474f {
    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);
}

.link_in_474f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.module_active_bf2e {
    padding: var(--section-padding);
}

.module_0571 {
    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;
}

.module_0571:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.layout-narrow-9f55 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-narrow-9f55 .center_927c {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout-narrow-9f55 .dark-c79f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.search-liquid-ff45 {
    flex: 1;
}

.full_30b6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mini_2ac8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini_2ac8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mini_2ac8 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.item-4c24 {
    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);
}

.item-4c24 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.item-4c24 strong {
    color: var(--warning-color);
}

/* Slots Section */
.secondary-up-ac73 {
    padding: var(--section-padding);
}

.chip_pro_06e0 {
    margin: 2rem 0;
}

/* Table Games Section */
.rough-d88e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_bfb8 {
    margin: 2rem 0;
}

.active_fixed_81b7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active_fixed_81b7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active_fixed_81b7 .photo-8d56 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_fixed_81b7 .wrapper-9b79 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.status-8acd {
    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);
}

.status-8acd .preview-focused-4cdb {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.article-8d64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.last_0960 {
    margin: 2rem 0;
}

.south_d19b {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_fresh_e392 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.west_cf29 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.narrow-8619 {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.narrow-8619:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.narrow-8619.fn-active-ddf8 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary-basic-1a5c {
    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);
}

.static_505d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.static_505d strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.panel_in_d75e {
    padding: var(--section-padding);
}

.dirty-d662 {
    margin: 2rem 0;
}

.heading_hovered_f1bc {
    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);
}

.heading_hovered_f1bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .heading_hovered_f1bc {
        flex-direction: column;
        align-items: flex-start;
    }
}

.grid_8ac6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.avatar_d4c9 {
    flex: 1;
}

.background-f997 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pattern-top-b7ba {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.layout-stone-fd57 {
    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;
}

.slider-bright-271f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hidden-tall-5ee8 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.outer_b667 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dynamic_d7b3 {
    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;
}

.dynamic_d7b3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.table_902a {
    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);
}

.selected-ed5d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.selected-ed5d strong {
    color: var(--accent-color);
}

/* New Games Section */
.wrapper-middle-0723 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_bottom_64eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .photo_bottom_64eb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_bottom_64eb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_28ca {
    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;
}

.yellow_28ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tiny_8954 {
    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;
}

.avatar_18b4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.section-dark-45aa {
    font-size: 2rem;
}

.narrow-b723 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.fluid-0a75 {
    flex: 1;
}

.down-feda {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.element-gold-b5aa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dynamic-fc9e {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.title-4bbf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blue-27a4 {
    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;
}

.gallery-f381 {
    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;
}

.gallery-f381:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.button-fixed-77a3 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.filter_4ffe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.message-mini-327f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .message-mini-327f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-a390 {
    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);
}

.widget_wide_fced {
    color: var(--text-white);
    font-weight: 600;
}

.notice_red_cbc4 {
    color: var(--accent-color);
    font-weight: 600;
}

.complex-71bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.complex-71bf strong {
    color: var(--accent-color);
}

/* Security Section */
.yellow-a1ca {
    padding: var(--section-padding);
}

/* Benefits Section */
.fluid-da67 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.logo-2fcb {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.widget_fluid_564a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading_1ddc {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.inner-5044 {
    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) {
    .inner-5044 {
        flex-direction: column;
        gap: 1rem;
    }
}

.inner-5044:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.inner-5044 .left-eae3 {
    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;
}

.inner-5044 .narrow_5b69 {
    flex: 1;
}

.inner-5044 .hard_2345 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.inner-5044 .dropdown_wood_898b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.up_4f50 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.up_4f50 .pagination_afc8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.up_4f50 .border-c8dc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.up_4f50 .border-c8dc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.up_4f50 .border-c8dc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.secondary-92dc {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.full-793b {
    padding: var(--section-padding);
}

.mask_north_c6cd {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .mask_north_c6cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_6ecc {
    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);
}

.large_6ecc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.large_6ecc .card-bf5b {
    font-size: 2rem;
    flex-shrink: 0;
}

.large_6ecc .new-63c6 {
    flex: 1;
}

.large_6ecc .wrapper-warm-c9a6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.large_6ecc .menu_narrow_3b02 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.secondary-6345 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-6345 .nav-de27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.secondary-6345 .silver_741a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.secondary-6345 .silver_741a 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);
}

.secondary-6345 .silver_741a li:last-child {
    border-bottom: none;
}

.secondary-6345 .silver_741a 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;
}

.secondary-6345 .silver_741a li strong {
    color: var(--text-white);
}

.texture_b8b7 {
    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);
}

.texture_b8b7 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.texture_b8b7 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.outer-4c65 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large_e2d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .large_e2d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.picture_warm_4653 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.picture_warm_4653:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay-9297 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label_pressed_edb7 {
    font-size: 2rem;
}

.shadow_purple_8c9b {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.info-solid-629f {
    flex: 1;
}

.fast-c1af {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fast-c1af li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.fast-c1af li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hard-d1b2 {
    margin-top: 3rem;
}

.shadow-e01f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pagination-lite-7175 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar-5839 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-5839 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sidebar-5839 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sidebar-5839 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.notification-bfad {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wood_58a2 {
    margin: 2rem 0;
}

.paper_5180 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.paper_5180 .detail_39d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-silver-0808 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .image-silver-0808 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-0007 {
    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);
}

.menu-0007:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.right-9a96 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel_5c77 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.section-last-106e {
    padding: var(--section-padding);
}

.first_6ce3 {
    margin: 2rem 0;
}

.clean_8c6d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .clean_8c6d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean_8c6d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component_1a88 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component_1a88:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.column-a0e4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.layout_simple_5f3a {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.short-8f55 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.short-8f55.text-motion-3f99 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.new_7406 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.avatar_d8d3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.slow-bd3b {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar_a0a7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.button-e432 {
    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);
}

.button-e432 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button-e432 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.east-c0cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.upper-2939 {
    margin: 2rem 0;
}

.banner_south_75d4 {
    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) {
    .banner_south_75d4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.banner_south_75d4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.banner_south_75d4::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);
}

.thumbnail-5ebb {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.hero_upper_c741 {
    flex: 1;
}

.dropdown-out-1f75 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-a1e8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-a1e8 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-96b0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered-b69e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.last_4ed7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .last_4ed7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solid-41b9 {
    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);
}

.wood_71a2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search_cool_341d {
    flex: 1;
}

.prev_d44b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.info-718c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert-iron-14d8 {
    margin-top: 2rem;
    text-align: center;
}

.focus-fresh-2504 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus-fresh-2504 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.footer-complex-412b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer-complex-412b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-fbca {
    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);
}

.carousel-fbca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.carousel-fbca .center_eee2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel-fbca .background_slow_874e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.carousel-fbca .plasma-e02e {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.carousel-fbca .fresh_0eff {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.avatar-soft-4ab8 {
    padding: var(--section-padding);
}

.alert-fa5c .widget_clean_80fd {
    flex: 1;
}

/* Promo Calendar Section */
.out-491c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.under-5573 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under-5573 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_96a6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-stale-2518 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hover_306c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-74a8 {
    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);
}

.new-4778 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.static_ae15 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.article-a0bf {
    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);
}

.article-a0bf p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article-a0bf strong {
    color: var(--accent-color);
}

/* Requirements Section */
.cool_292a {
    padding: var(--section-padding);
}

.slider-f445 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slider-f445 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pagination_soft_eda9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_414a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outer_705a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outer_705a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.section-ed64 {
    margin-top: 3rem;
}

.section-ed64 .shadow-e01f {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.section-ed64 .pagination-lite-7175 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section-ed64 .sidebar-5839 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.section-ed64 .sidebar-5839 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.section-ed64 .sidebar-5839 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.section-ed64 .sidebar-5839 li strong {
    color: var(--warning-color);
}

.label_over_c6e5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.label_over_c6e5 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.yellow-a608 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-8af0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-8af0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next_1b8b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_1b8b .detail_39d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.wide_511e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.picture-center-4fff {
    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);
}

.picture-center-4fff:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.box-e659 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_0dc5 {
    flex: 1;
}

.liquid_39e8 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.inner-cb4f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.filter-1025 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.picture_short_020c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.widget_207f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .widget_207f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface-a9b9 {
    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);
}

.surface-a9b9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.carousel-first-0ab7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hovered-d3a2 {
    color: var(--text-gray);
    font-size: 1rem;
}

.plasma-9ad5 {
    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);
}

.grid_2661 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.grid_2661 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.status-2e26 { 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; }
.container_down_e855, .background_4ac8 { max-width:100%; height:auto; }

.message_glass_a9d9, .dropdown_active_26cf, .widget_621e { white-space:normal; }

.module_bdba,
.aside_7232,
.warm-2611,
.footer-complex-412b,
.picture-d2c2,
.label-gold-cce9 {
  flex-wrap:wrap;
}

[class*="grid"],
.widget_207f,
.clean_8c6d,
.hero_hovered_31ac {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.gold-b403 img,
.aside_7232 img,
.out-c0fb img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.badge-green-35d1, .main-stale-e7bb,
.card_21b8, .glass_25dd {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.in-3db1 { width:100%; overflow-x:auto; }
.in-3db1 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.over_aa19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .over_aa19 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.modal-8a45 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.progress-complex-185f,
.complex-4dee,
.label_pro_1f2d,
.widget-e6e6,
.dark-bca3,
.widget_207f,
.clean_8c6d,
.hero_hovered_31ac,
.gas-7af7,
.dirty-d662,
.over_aa19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .progress-complex-185f,
  .complex-4dee,
  .label_pro_1f2d,
  .widget-e6e6,
  .dark-bca3,
  .widget_207f,
  .clean_8c6d,
  .hero_hovered_31ac,
  .gas-7af7,
  .dirty-d662,
  .over_aa19 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.popup_5126,
.layout_1605,
.surface-a9b9,
.banner-brown-a6d8,
.component_1a88,
.progress_0628,
.heading_hovered_f1bc,
.modal-8a45 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.plasma-d74d,
.under_0077,
.purple-3bd5 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.plasma-d74d > *,
.under_0077 > *,
.purple-3bd5 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7c4e */
.promo-block-z0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
