/* {$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;
}

.layout-b03c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.container-bronze-4d9d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-bronze-4d9d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-bronze-4d9d {
        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 */
.tooltip_15a0 {
    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);
}

.thumbnail-aa0d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .thumbnail-aa0d {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .badge_simple_4f7a {
        grid-column: 1;
    }
    
    .preview-fast-3bd1 {
        grid-column: 2;
    }
    
    .texture_6bef {
        grid-column: 3;
    }
}

.badge_simple_4f7a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.badge_simple_4f7a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.description_f368 {
    display: none;
}

@media (min-width: 1024px) {
    .description_f368 {
        display: block;
    }
}

/* Grouped Navigation */
.highlight_ccbf {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.caption_hovered_6144 {
    position: relative;
}

.header-south-23ac {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.caption_hovered_6144 .frame_2c77 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.frame_2c77 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.thick_4c17 {
    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;
}

.thick_4c17:hover,
.thick_4c17.fn-active-4943 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.sort_0230 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .sort_0230 {
        display: flex;
    }
}

/* Mobile Register Button */
.preview-fast-3bd1 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .preview-fast-3bd1 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.last-7b82 {
    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;
}

.last-7b82::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 */
.texture_6bef {
    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) {
    .texture_6bef {
        display: none;
    }
}

.texture_6bef span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.texture_6bef.fn-active-4943 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.texture_6bef.fn-active-4943 span:nth-child(2) {
    opacity: 0;
}

.texture_6bef.fn-active-4943 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.footer-motion-4a94 {
    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;
}

.footer-motion-4a94.fn-active-4943 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.preview_first_70cb {
    overflow: hidden;
}

.hover-orange-80db {
    list-style: none;
    padding: 0.75rem 0;
}

.silver_261d {
    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;
}

.silver_261d:hover,
.silver_261d.fn-active-4943 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.silver_261d.notification_solid_ae03 {
    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;
}

.silver_261d.notification_solid_ae03::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 */
.purple_8929 {
    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;
}

.wood_de60 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.wood_de60:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.section-6aa0 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.section-6aa0:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.current-d75a {
    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;
}

.current-d75a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.accent_first_24a1 {
    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;
}

.dirty-dec5 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.dirty-dec5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.full_e74a {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.full_e74a:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.badge-tiny-a6f1 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.badge-tiny-a6f1: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);
}

.glass-a274 {
    font-size: 1em;
    font-weight: 700;
}

.aside_yellow_b935 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.image-71bd {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.image-71bd::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;
}

.tag-56b0 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tag-56b0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.backdrop-warm-8886 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.widget-gas-ab16 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.motion_fc49 {
    margin-bottom: 2rem;
}

.yellow-48e5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .yellow-48e5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focused-c643 {
    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);
}

.panel-0904 {
    font-size: 1.5rem;
}

.selected_7efd {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.plasma-0e8c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.old_1129 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.old_1129:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.sort-medium-1dad {
    text-align: center;
    margin-bottom: 3rem;
}

.stale-4eb3 {
    margin-bottom: 1rem;
}

.wood-8dd3 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.iron_ca79 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .iron_ca79 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .iron_ca79.feature-ed53 {
        direction: rtl;
    }
    
    .iron_ca79.feature-ed53 > * {
        direction: ltr;
    }
}

.center_df50 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.center_df50:first-child {
    margin-top: 0;
}

.hard-2332 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal-under-1d4c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.modal-under-1d4c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.backdrop-34cb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-34cb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-glass-4e06 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.chip-679c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.bright_be33 {
    list-style: none;
}

.bright_be33 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bright_be33 li:last-child {
    border-bottom: none;
}

/* Games Features */
.in-c4f6 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.frame-4b03 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.layout_e9ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-fast-5055 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.status_683a {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.stone_5ea2 {
    margin: 2rem 0;
}

.prev-8574 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.bottom_f96a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.description-62a5 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.wrapper-842e {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.shadow-fce6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-fce6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short_97e5 {
    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);
}

.short_97e5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-tiny-6230 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.element-203f {
    font-size: 1.5rem;
}

.notification_old_ba79 {
    color: var(--accent-color);
    margin: 0;
}

.card-253b {
    list-style: none;
}

.card-253b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.card-253b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.caption_yellow_32e1 {
    margin: 2rem 0;
}

.detail-713e {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.container-34ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .container-34ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_6777 {
    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);
}

.card-04c8 {
    font-size: 1.25rem;
}

.surface-49e2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.description-middle-ebf4,
.basic_9a41 {
    text-align: center;
    margin: 2rem 0;
}

.left-eb5f,
.medium_3971 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.fast-82b3 {
    margin: 2rem 0;
    text-align: center;
}

.wood_b4cb {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wood_b4cb::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;
}

.secondary_b6d7 {
    position: relative;
    z-index: 1;
}

.hot-7abe {
    margin-bottom: 1rem;
}

.outline-8bc9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.orange-d48e {
    margin-bottom: 3rem;
}

.mask_simple_758c {
    margin-top: 3rem;
}

.background_under_6339 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .background_under_6339 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.background_under_6339 .focused-c643 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.red-3961 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.middle_b4d9 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.gold-09a3 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.texture-north-39d5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .texture-north-39d5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .texture-north-39d5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dynamic-edef {
    margin-bottom: 1rem;
}

.alert-full-299e img {
    margin-bottom: 1rem;
}

.highlight_action_39c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.caption-fast-a6ab {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.old-f924 {
    list-style: none;
}

.old-f924 li {
    margin-bottom: 0.5rem;
}

.old-f924 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.old-f924 a:hover {
    color: var(--accent-color);
}

.block_fixed_fd3c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.outer_9e30 {
    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);
}

.outer_9e30:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.inner_32dc {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.inner_32dc p {
    margin-bottom: 0.25rem;
}

.icon_e6a7 {
    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) {
    .icon_e6a7 {
        flex-direction: row;
    }
}

.form_b3a9 {
    text-align: center;
}

@media (min-width: 768px) {
    .form_b3a9 {
        text-align: left;
    }
}

.form_b3a9 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mini_a891 {
    font-size: 0.75rem !important;
}

.copper-1b78 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notice_black_a8f5 {
    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);
    }
}

.dark-ae19 {
    animation: fadeInUp 0.6s ease-out;
}

.border-b8e9 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.description_2b73 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .description_2b73 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.aside_b02c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_b02c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_1878 {
    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);
}

.silver_1878 .layout_e9ff {
    font-size: 1.25rem;
}

.silver_1878 .text_9c44 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.accordion-2eda {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .accordion-2eda {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_2a5e {
    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);
}

.stale_2a5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass-3575 {
    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);
}

.container_outer_1f5f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.shade_c0e2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paper-c0df {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading-de3a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading-de3a .slider-fast-5055 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading-de3a .status_683a {
    color: var(--text-gray);
    line-height: 1.6;
}

.last-0c00 {
    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);
}

.narrow-d959 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.narrow-d959 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.narrow-d959 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.middle-77f5 {
    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);
}

.icon_north_81bc {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tertiary_c97b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tertiary_c97b label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary_c97b 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);
}

.tertiary_c97b input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tertiary_c97b input::placeholder {
    color: var(--text-muted);
}

.tooltip_orange_c058 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.full-db92 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.full-db92 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.smooth-a339 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.smooth-a339:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.container-34ec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-34ec {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active_6777 {
    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);
}

.active_6777 .card-04c8 {
    font-size: 1.25rem;
}

.active_6777 .surface-49e2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.highlight_yellow_2d0a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_95b7 {
    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);
}

.text_95b7 .layout_e9ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.text_95b7 .slider-fast-5055 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.text_95b7 .status_683a {
    color: var(--text-gray);
    line-height: 1.6;
}

.title-west-ae5c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_pink_85cb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph_pink_85cb .link_f92a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_pink_85cb .image_d9b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-9b0f {
    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);
}

.west_63fc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .west_63fc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-b7b0 {
    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);
}

.gradient-b7b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mini-96f6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gallery_aa1f {
    flex: 1;
}

.text_fast_ab86 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.lower_b162 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text_gas_a5f5 {
    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);
}

.text_gas_a5f5:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.texture_left_8b28 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_left_8b28 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading_dirty_8b0a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.heading_dirty_8b0a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pressed-6977 {
    font-size: 2rem;
    flex-shrink: 0;
}

.video-east-b8b7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tabs-lite-f562 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.primary_8943 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort_7bd2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-607e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table_db6f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table_db6f .tooltip_liquid_0dd3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_db6f .notification_249b {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_light_c60d {
    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);
}

.sidebar-f4c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-7007 {
    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);
}

.pink-7007 .layout_e9ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink-7007 .slider-fast-5055 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pink-7007 .status_683a {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_bottom_0286 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_bottom_0286 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_cd97 {
    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);
}

.container_cd97:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.module_b4fb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_b4fb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article_e8ee {
    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);
}

.article_e8ee:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.rough_fd1c {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro_62fd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bottom_f96a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.heading-8c21 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.breadcrumb-huge-e7f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_gold_a948 {
    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);
}

.photo_gold_a948:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-a0ee {
    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);
}

.progress_0f77 {
    flex: 1;
}

.breadcrumb-purple-5852 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.carousel-soft-1b11 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tabs-selected-44ca {
    color: var(--text-gray);
    line-height: 1.6;
}

.purple_f789 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.main_upper_f7bb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_upper_f7bb .link_f92a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main_upper_f7bb .image_d9b2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic_9a41 {
    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);
}

.detail-hot-5cd4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-hot-5cd4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.gallery-pressed-b318 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-pressed-b318 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_5549 {
    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);
}

.grid_5549:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_iron_4679 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_east_eb69 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chip-190f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.disabled-last-ec8e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.smooth_f527 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.rough_e812 {
    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);
}

.tabs_9fb6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle_17b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-d1f9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-f4c5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink-7007 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pink-7007 .slider-fast-5055 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink-7007 .status_683a {
    color: var(--text-gray);
    line-height: 1.6;
}

.preview-e437 {
    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);
}

.last_3f8c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .last_3f8c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .last_3f8c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-out-e38c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sidebar-out-e38c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent-fluid-26f5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.complex_b8d4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary-3920 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.row-bottom-a0f2 {
    padding: 1.5rem;
}

.summary_e6c3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.grid_9efb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid_9efb 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;
}

.grid_9efb li:last-child {
    border-bottom: none;
}

.grid_9efb li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.last_4502 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_4502 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout_1980 {
    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);
}

.layout_1980:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_d8af {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination-left-4cd4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.new_4e7b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.element_586e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.photo-2d93 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-center-13b9 {
    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);
}

.next_bf88 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow-ead6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.surface_pressed_4429 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element_d0ce {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row-static-3f14 {
    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);
}

.sidebar_fast_258c {
    text-align: center;
}

.mask-solid-d9d0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay_left_1b62 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block-4104 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box_hard_581a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_hard_581a .slider-fast-5055 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box_hard_581a .status_683a {
    color: var(--text-gray);
    line-height: 1.6;
}

.large-7f81 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .large-7f81 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .large-7f81 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_f905 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tall_f905:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lite_5831 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden_hard_5b49 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.slider-fast-5055 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.filter_2c01 {
    padding: 1.5rem;
}

.status_683a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badge_7990 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_7990 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;
}

.badge_7990 li:last-child {
    border-bottom: none;
}

.badge_7990 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.sort-advanced-87ff {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.title-slow-49f9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title-slow-49f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-old-6e0c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-604d {
    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);
}

.glass-3575 {
    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;
}

.container_outer_1f5f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.shade_c0e2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled_715f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-cdca {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled-7ad9 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input_bottom_f997 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.summary_9f97 {
    display: flex;
    gap: 1rem;
}

.summary_9f97 .text_new_6b7c {
    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;
}

.section_bronze_400f {
    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);
}

.hard-eb23 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.photo_dark_affb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_dark_affb 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;
}

.photo_dark_affb li:last-child {
    border-bottom: none;
}

.photo_dark_affb li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.secondary_6118 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .secondary_6118 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .secondary_6118 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.steel_37d3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.steel_37d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_full_2815 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.item_49ca {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tooltip_liquid_0dd3 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.summary_8f1d {
    font-size: 1rem;
}

.element-small-18d9 {
    padding: 1.5rem;
}

.notification_249b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.paragraph-pro-4d38 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.paragraph-pro-4d38 .sidebar_fast_258c {
    text-align: center;
}

.paragraph-pro-4d38 .overlay_left_1b62 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.paragraph-pro-4d38 .tertiary_3a20 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.in_a69f {
    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);
}

.in_a69f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.filter_north_4f83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_north_4f83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-tall-6adf {
    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);
}

.feature-tall-6adf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner_e727 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_64fc {
    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);
}

.black_9f9b {
    font-size: 2rem;
    flex-shrink: 0;
}

.short_8e11 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary-4ef6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-0fec {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.table_medium_722f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed-d592 {
    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);
}

.grid-47f9 {
    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;
}

.grid-47f9.pink-789d {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.grid-47f9.block_first_4d46 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.grid-47f9.dynamic-b639 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.grid-47f9.large_9bba {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.grid-47f9.accent_bottom_3211 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.stale-e30d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.aside-top-d102 {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_d92d {
    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);
}

.accordion-ddc3 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.title-west-ae5c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title-west-ae5c 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;
}

.title-west-ae5c li:last-child {
    border-bottom: none;
}

.title-west-ae5c li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.thumbnail-f1e8 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thumbnail-f1e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail-f1e8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-355d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.picture-355d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.picture-355d.wood_ca04 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .picture-355d.wood_ca04 {
        grid-column: span 3;
    }
}

.tabs_dark_d39e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.picture-355d.wood_ca04 .tabs_dark_d39e {
    background: rgba(6, 182, 212, 0.1);
}

.inner-c0ad {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.north-4467 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.picture-355d.wood_ca04 .north-4467 {
    color: var(--info-color);
}

.secondary-b809 {
    padding: 1.5rem;
    text-align: center;
}

.backdrop-1def {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.picture-355d.wood_ca04 .backdrop-1def {
    color: var(--info-color);
}

.filter_dynamic_388d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.panel_b15c {
    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 */
.item-986c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-986c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-advanced-1b4b {
    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);
}

.box-advanced-1b4b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.short-f40c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_95b7 {
    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);
}

.card-04c8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.video_fast_add5 {
    flex: 1;
}

.detail-713e {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.icon_2e1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-12cc {
    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);
}

.link_5a68 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.backdrop-fddf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notice_black_a8f5 {
    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);
}

.description_glass_a490 {
  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);
}

.description_glass_a490 .sidebar_fast_258c {
    text-align: center;
}

.description_glass_a490 .mask-solid-d9d0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.description_glass_a490 .overlay_left_1b62 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.avatar_6a34 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-aa41 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow-fece {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal-inner-a3d6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb-8970 {
    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);
}

.surface-2971 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pressed-ee05 {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim_1231 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .dim_1231 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dim_1231 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_gold_3b9b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main_gold_3b9b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_selected_0ea0 {
    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);
}

.simple-7d9f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.grid-selected-6168 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.dropdown-clean-f8f1 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-clean-f8f1.row_east_cc83 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.dropdown-clean-f8f1.component-a5a0 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.dropdown-clean-f8f1.message_black_ff91 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.preview-south-d40f {
    padding: 1.5rem;
    text-align: center;
}

.button-basic-e222 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-pro-5199 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.article-pro-5199 .hidden_7794 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.message-selected-62b2 {
    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);
}

.message-selected-62b2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.active-warm-243a {
  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);
}

.down_eac9 {
    text-align: center;
}

.down_eac9 .mask-solid-d9d0 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.down_eac9 .overlay_left_1b62 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.status-6b58 { text-align: center; }
.column_fast_b4e4 { text-align: left; }
.slow_f545 { text-align: right; }

.south_6b85 { margin-bottom: 0; }
.panel-2eb3 { margin-bottom: 0.5rem; }
.clean-2389 { margin-bottom: 1rem; }
.cool-8321 { margin-bottom: 1.5rem; }
.pagination_8247 { margin-bottom: 2rem; }

.over-2250 { margin-top: 0; }
.feature-focused-1868 { margin-top: 0.5rem; }
.sidebar_tall_914f { margin-top: 1rem; }
.tooltip-0ac9 { margin-top: 1.5rem; }
.hover_inner_ee71 { margin-top: 2rem; }

.fn-hidden-4943 { display: none; }
.fn-visible-4943 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .image-71bd {
        padding: 6rem 0 3rem;
    }
    
    .tag-56b0 {
        text-align: center;
    }
    
    .iron_ca79 {
        text-align: center;
    }
    
    .yellow-48e5 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .tooltip_15a0,
    .footer-motion-4a94,
    .wood_b4cb,
    .gold-09a3 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .image-71bd {
        background: none;
    }
}

/* Providers Section */
.hover-d0e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-left-0696 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-left-0696 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-left-0696 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.layout-6eb5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout-6eb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gradient_6709 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.item_white_cde5 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.title_8bcc {
    list-style: none;
    padding: 0;
}

.title_8bcc li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.title_8bcc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.image-east-06cd {
    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);
}

.image-east-06cd p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.pagination_smooth_e01d {
    padding: var(--section-padding);
}

.liquid_e5af {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid_e5af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_a9b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_a9b2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.list-cool-d3c1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.texture_19bf {
    display: flex;
    flex-direction: column;
}

.right-372a {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.gold-3eb0 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.header_fluid_4293 {
    color: var(--accent-color);
}

.summary-7c98 {
    font-size: 1.25rem;
}

.breadcrumb_pro_c4a6 {
    margin-bottom: 1rem;
}

.breadcrumb_pro_c4a6 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.menu-liquid-aa01 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slow_d685 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.sidebar_fast_258c {
    text-align: center;
}

.mask-solid-d9d0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay_left_1b62 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.outer_4f1f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-slow-35a2 {
    margin: 2rem 0;
}

.glass-a4bb {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.glass-a4bb .layout_e9ff {
    font-size: 2rem;
    flex-shrink: 0;
}

.fresh_8b15 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.search-small-9466 {
    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;
}

.search-small-9466:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.liquid_20c4 {
    font-size: 2rem;
}

.message-8ff6 {
    display: flex;
    flex-direction: column;
}

.small_76f0 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.layout-thick-d2d0 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.gas-fdab {
    padding: var(--section-padding);
}

.upper-04c8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .upper-04c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .upper-04c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-0916 {
    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);
}

.component-0916:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.component-0916 .mask-solid-d9d0 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.component-0916 .overlay_left_1b62 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.component-0916 .alert_new_4fd0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.clean-e84c {
    margin-top: 4rem;
}

.slider_wood_acd9 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.element_down_6bb0 {
    overflow-x: auto;
}

.carousel-98fa {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.carousel-98fa thead {
    background: var(--accent-color);
}

.carousel-98fa th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.carousel-98fa td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-98fa tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.carousel-98fa tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.fixed_30c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short-74a0 {
    max-width: 900px;
    margin: 0 auto;
}

.caption-inner-b1ce {
    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);
}

.caption-inner-b1ce:hover {
    border-color: var(--accent-color);
}

.accent_bottom_0d92 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.accent_bottom_0d92 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.slider-c58c {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.caption-inner-b1ce.fn-active-4943 .slider-c58c {
    transform: rotate(45deg);
}

.backdrop_1b0e {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.caption-inner-b1ce.fn-active-4943 .backdrop_1b0e {
    max-height: 1000px;
}

.backdrop_1b0e p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.secondary-1384 {
    padding: var(--section-padding);
}

.narrow-d959 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.upper_3647 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button-c134 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-c134 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown_3223 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-9e59 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail_soft_b61a {
    font-size: 2rem;
}

.green_722a {
    color: var(--text-white);
    margin: 0;
}

.last-00bd {
    list-style: none;
    padding: 0;
}

.last-00bd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.last-00bd li:last-child {
    border-bottom: none;
}

.caption-1a75 {
    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);
}

.caption-1a75 p {
    color: var(--success-color);
    margin: 0;
}

.slider-0f1c {
    margin-top: 3rem;
}

.hard-eb23 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.overlay-3ffa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .overlay-3ffa {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brown_daf7 {
    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);
}

.slider_15c3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brown_daf7 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.module-right-e933 {
    padding: var(--section-padding);
}

.table-246a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-246a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_de04 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last_de04:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.row-rough-27bd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.left-bece {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.backdrop_ae36 {
    flex: 1;
}

.focus-wide-74d7 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.video-medium-0d8d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.black-649e {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_4a51 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass_4a51:last-child {
    border-bottom: none;
}

/* Comparison Section */
.background-64c0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.soft-690e {
    padding: var(--section-padding);
}

.hero-yellow-e27b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.soft_f436 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft_f436 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-489f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-mini-1d33, .gradient_down_2fee, .caption_da69 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.caption_da69 {
    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 */
.banner-5f9d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.prev_d835 {
    margin: 2rem 0;
}

.iron-b91e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-39ab {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.link-1ecb {
    list-style: none;
    padding: 0;
}

.link-1ecb 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;
}

.link-1ecb li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.link-1ecb li:last-child {
    border-bottom: none;
}

.cool_037c {
    text-align: center;
    margin-top: 2rem;
}

.south_f6b6 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.red-d5a1 {
    padding: var(--section-padding);
}

.motion-ad71 {
    margin: 2rem 0;
}

.accent_386f {
    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) {
    .accent_386f {
        flex-direction: column;
        align-items: flex-start;
    }
}

.accent_386f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.feature_c47b {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.shadow-54d6 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.soft_1109 {
    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;
}

.avatar-simple-13fe {
    flex: 1;
}

.wrapper_bright_166e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.grid-11e7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_a62d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.caption-selected-c68d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .caption-selected-c68d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.texture_gold_43e8 {
    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);
}

.texture_gold_43e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.texture_gold_43e8 .mask-solid-d9d0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture_gold_43e8 .overlay_left_1b62 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pagination-0683 {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_soft_2faa {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.popup_soft_2faa strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.background_02c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .background_02c8 {
        grid-template-columns: 1fr 1fr;
    }
}

.carousel-a6de {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.black-e68d {
    margin-bottom: 1.5rem;
}

.black-e68d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.black-e68d input,
.black-e68d 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;
}

.black-e68d input:focus,
.black-e68d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.backdrop_under_1bd9 {
    width: 100%;
    margin-top: 1rem;
}

.sidebar-stale-9557 {
    display: flex;
    align-items: center;
}

.heading-focused-c52c {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb-8543 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.article_inner_377c {
    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;
}

.badge_24bb {
    color: var(--text-gray);
}

.basic-0d91 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.item-4cd5 {
    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);
}

.item-4cd5 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.filter-advanced-843b {
    margin-top: 3rem;
}

.image-new-a6f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.content_f743 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-prev-e952 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.texture-9b94 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.texture-9b94:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.column_pink_5524 {
    padding: var(--section-padding);
}

.black-0da5 {
    margin: 2rem 0;
}

.footer-selected-114e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.photo_bright_9b70 {
    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;
}

.photo_bright_9b70:hover, .photo_bright_9b70.fn-active-4943 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.dim_ddec {
    display: none;
}

.dim_ddec.fn-active-4943 {
    display: block;
}

.content-north-42ee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lower_c97a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.aside-02e2 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.aside-02e2 ul {
    list-style: none;
    padding: 0;
}

.aside-02e2 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.aside-02e2 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.copper_616a {
    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 */
.highlight_in_4b2f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full_77ba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-d015 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.container_24e2 {
    color: var(--accent-color);
    margin: 0;
}

.dropdown_last_8cb6 {
    display: flex;
    gap: 1.5rem;
}

.link-upper-0004 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption-0ffe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pattern-selected-4095 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.pattern-selected-4095.sidebar-1cc4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pattern-selected-4095.photo-upper-b53a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.pattern-selected-4095.motion_e525 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.content_bottom_316a {
    margin-top: 2rem;
}

.outline-fluid-2454 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.outline_silver_90a0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .outline_silver_90a0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown-7e8c {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tertiary_green_d886 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.outer-1eb8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.active_bronze_9620 {
    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 */
.iron-6d35 {
    padding: var(--section-padding);
}

.wrapper_ec17 {
    margin: 2rem 0;
}

.purple_abfe {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.video_b0e2 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.block-copper-14f0 {
    list-style: none;
    padding: 0;
}

.block-copper-14f0 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;
}

.block-copper-14f0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.block-copper-14f0 li:last-child {
    border-bottom: none;
}

.silver-32e6 {
    margin: 2rem 0;
}

.highlight_111a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.section-c39e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .section-c39e {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary-pressed-c20d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_copper_8f20 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.chip_dark_fba9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.complex-e848 {
    margin-top: 2rem;
}

.text_fast_ab86 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.gradient_79ef {
    list-style: none;
    padding: 0;
}

.hidden_mini_b55d {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hidden_mini_b55d a {
    color: var(--accent-color);
    text-decoration: none;
}

.hidden_mini_b55d a:hover {
    text-decoration: underline;
}

.nav-north-9270 {
    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 */
.light-c196 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accent-last-3e97 {
    margin: 2rem 0;
}

.footer_large_bb80 {
    margin-bottom: 3rem;
}

.footer_large_bb80 .gallery-39ab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tag-5d38 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo-focused-f3d8 {
    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);
}

.logo-focused-f3d8:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tabs_587b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tabs_587b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary-8e17 {
    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 */
.disabled_6d2a {
    padding: var(--section-padding);
}

.down-e93a {
    margin: 2rem 0;
}

.label_inner_2967 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice-9e0a {
    overflow-x: auto;
    margin: 2rem 0;
}

.widget-prev-8019 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.notice-26d9 {
    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;
}

.accordion-9e1c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.mask-2876 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .mask-2876 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled_07df {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_07df .layout_e9ff {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.disabled_07df .slider-fast-5055 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.table_1a63 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.title-cdd0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_2184 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_2184 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort-bottom-c83c {
    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;
}

.sort-bottom-c83c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.new_22b4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination_steel_28aa {
    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;
}

.badge_850b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.short-b113 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.notice_narrow_fe3e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tall_f553 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.under_01c0 {
    color: var(--text-white);
    font-weight: 600;
}

.steel_cea8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.icon-4c92 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-4c92 .text_new_6b7c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.block-6c8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block-6c8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim-151d {
    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);
}

.dim-151d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim-151d .mask-solid-d9d0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-151d .overlay_left_1b62 {
    color: var(--text-gray);
    font-size: 1rem;
}

.progress-bda8 {
    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);
}

.image_center_76b3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.image_center_76b3 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.smooth_f527 {
    margin: 2rem 0;
}

.rough_e812 {
    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);
}

.rough_e812:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tabs_9fb6 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-cb4e {
    flex: 1;
}

.middle_17b0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.brown-d1f9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.sidebar-f4c5 {
    margin: 2rem 0;
}

.pink-7007 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink-7007 .slider-fast-5055 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.pink-7007 .status_683a {
    color: var(--text-gray);
    margin: 0;
}

.preview-e437 {
    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);
}

.preview-e437 .left-eb5f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.table_1a63 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.link-a0ee {
    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;
}

.progress_0f77 {
    flex: 1;
}

.carousel-soft-1b11 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tabs-selected-44ca {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.glass-3575 {
    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;
}

.gold-bd32 {
    flex: 1;
}

.container_outer_1f5f {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.shade_c0e2 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.disabled-7ad9 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.input_bottom_f997 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.summary_9f97 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.summary_9f97 .text_new_6b7c {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.section_bronze_400f {
    margin-top: 2rem;
}

.section_bronze_400f .hard-eb23 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.primary-soft-be9b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-static-3f14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-static-3f14 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-static-3f14 .sidebar_fast_258c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block-4104 {
    margin: 2rem 0;
}

.box_hard_581a {
    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 */
.overlay-glass-76b2 {
    padding: var(--section-padding);
}

.filter_2c01 {
    margin-top: 1rem;
}

.badge_7990 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.badge_7990 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.badge_7990 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.clean-278c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_2392 {
    margin: 2rem 0;
}

.heading-a2c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.large-9843 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.orange-cfd7 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.element-1b0b {
    margin: 2rem 0;
}

.container_aad0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.container_aad0 .gallery-39ab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold_5648 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold_5648 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tooltip-hard-d8b5 {
    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);
}

.white_df69 {
    color: var(--text-white);
    font-weight: 600;
}

.detail_03cd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.tooltip-wood-6f4c {
    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);
}

.tooltip-wood-6f4c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.cool-345d {
    padding: var(--section-padding);
}

.layout-b812 {
    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;
}

.layout-b812:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.gradient-bottom-2c66 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-bottom-2c66 .slider_15c3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-bottom-2c66 .focus_fresh_aa65 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.filter-upper-40ef {
    flex: 1;
}

.nav_90d9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.paragraph_dffe {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paragraph_dffe li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.paragraph_dffe li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.nav_f8f3 {
    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);
}

.nav_f8f3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.nav_f8f3 strong {
    color: var(--warning-color);
}

/* Slots Section */
.lower-4aff {
    padding: var(--section-padding);
}

.sort_7bd2 {
    margin: 2rem 0;
}

/* Table Games Section */
.module_over_7522 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-607e {
    margin: 2rem 0;
}

.table_db6f {
    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);
}

.table_db6f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.table_db6f .tooltip_liquid_0dd3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_db6f .notification_249b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.texture_light_c60d {
    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_light_c60d .left-eb5f {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.cold-16fd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.middle-8e0b {
    margin: 2rem 0;
}

.logo-hot-5a06 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-e0c3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel_82b6 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thumbnail_4558 {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.thumbnail_4558:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.thumbnail_4558.fn-active-4943 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph-68a0 {
    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);
}

.gold-10bc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gold-10bc strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.focused-f1d3 {
    padding: var(--section-padding);
}

.article_narrow_2eba {
    margin: 2rem 0;
}

.tabs-effb {
    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);
}

.tabs-effb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tabs-effb {
        flex-direction: column;
        align-items: flex-start;
    }
}

.heading-b0da {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.notice_42e3 {
    flex: 1;
}

.paragraph-bronze-a0c1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.widget-prev-71f4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.thumbnail_solid_e719 {
    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;
}

.stale-5c95 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notice-8aae {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.container_9976 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gallery-easy-c283 {
    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;
}

.gallery-easy-c283:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.old_9df5 {
    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);
}

.down-9234 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.down-9234 strong {
    color: var(--accent-color);
}

/* New Games Section */
.surface-f8cd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-simple-8d4c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .modal-simple-8d4c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modal-simple-8d4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide_8a9e {
    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;
}

.wide_8a9e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-white-3694 {
    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;
}

.layout_top_5eb2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.heading_7a5d {
    font-size: 2rem;
}

.module-dark-083d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.accent_next_5bd5 {
    flex: 1;
}

.lite-00f0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.notice_thick_a7d9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.outline-12b2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mask-selected-5c37 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-paper-aebb {
    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;
}

.complex-cb2a {
    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;
}

.complex-cb2a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pressed-e75c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget_orange_25d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange-18a1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .orange-18a1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_stone_9fd1 {
    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);
}

.primary-bcb8 {
    color: var(--text-white);
    font-weight: 600;
}

.old-c122 {
    color: var(--accent-color);
    font-weight: 600;
}

.layout_8fd5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.layout_8fd5 strong {
    color: var(--accent-color);
}

/* Security Section */
.under_2b7c {
    padding: var(--section-padding);
}

/* Benefits Section */
.glass_65d2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.wood-e35b {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.hero_f983 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.info-bebf {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.list-solid-a10c {
    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) {
    .list-solid-a10c {
        flex-direction: column;
        gap: 1rem;
    }
}

.list-solid-a10c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.list-solid-a10c .glass-3575 {
    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;
}

.list-solid-a10c .gold-bd32 {
    flex: 1;
}

.list-solid-a10c .container_outer_1f5f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.list-solid-a10c .shade_c0e2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hovered-f7d8 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered-f7d8 .detail-713e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hovered-f7d8 .highlight_yellow_2d0a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hovered-f7d8 .highlight_yellow_2d0a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hovered-f7d8 .highlight_yellow_2d0a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.message_7565 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.summary_3413 {
    padding: var(--section-padding);
}

.inner_e226 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .inner_e226 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_paper_4a51 {
    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);
}

.widget_paper_4a51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.widget_paper_4a51 .form-full-75a1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget_paper_4a51 .red_f8a8 {
    flex: 1;
}

.widget_paper_4a51 .link_f92a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget_paper_4a51 .narrow-184f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.upper_defc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper_defc .tall_01f1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.upper_defc .sort-4d07 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.upper_defc .sort-4d07 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);
}

.upper_defc .sort-4d07 li:last-child {
    border-bottom: none;
}

.upper_defc .sort-4d07 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;
}

.upper_defc .sort-4d07 li strong {
    color: var(--text-white);
}

.hard_c966 {
    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);
}

.hard_c966 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hard_c966 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.container_2b48 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-ae3a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .mask-ae3a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro-163d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.pro-163d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas-5ad9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.north-3edf {
    font-size: 2rem;
}

.column_current_e306 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.background_36b1 {
    flex: 1;
}

.badge_wood_0497 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_wood_0497 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.badge_wood_0497 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.element_brown_0eac {
    margin-top: 3rem;
}

.purple_abfe {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.video_b0e2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-copper-14f0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-copper-14f0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.block-copper-14f0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.block-copper-14f0 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.pattern-dde9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_dfef {
    margin: 2rem 0;
}

.middle-b42f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.middle-b42f .gallery-39ab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.content-gas-0a36 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .content-gas-0a36 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outline_south_e252 {
    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);
}

.outline_south_e252:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.dropdown-stale-87be {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.progress-dynamic-db56 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.picture_paper_eb56 {
    padding: var(--section-padding);
}

.chip-pink-35f0 {
    margin: 2rem 0;
}

.shadow-yellow-1de6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .shadow-yellow-1de6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow-yellow-1de6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary_5cd2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tertiary_5cd2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.avatar_outer_3a5e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-tiny-d667 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.border-complex-94cd {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.border-complex-94cd.label_red_26e4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.table_bc83 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.gas_e216 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.filter-dfe9 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.column_orange_e442 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.stone-6a01 {
    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);
}

.stone-6a01 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.stone-6a01 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.fixed-2de0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.iron_b79a {
    margin: 2rem 0;
}

.fresh_6e64 {
    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) {
    .fresh_6e64 {
        flex-direction: column;
        gap: 1rem;
    }
}

.fresh_6e64:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.fresh_6e64::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);
}

.caption-8b90 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.primary_2306 {
    flex: 1;
}

.overlay_small_44d6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.action-50e5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-50e5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.progress-bottom-fa0d {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slow_66e5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.black_3180 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black_3180 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge_9cc3 {
    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);
}

.sort_cold_eef5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.basic-6767 {
    flex: 1;
}

.pressed_0099 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.info_old_fa9f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.active-3d40 {
    margin-top: 2rem;
    text-align: center;
}

.button_warm_f92e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button_warm_f92e strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.filter_north_4f83 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_north_4f83 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-tall-6adf {
    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);
}

.feature-tall-6adf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.feature-tall-6adf .texture_d8af {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-tall-6adf .pagination-left-4cd4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.feature-tall-6adf .new_4e7b {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.feature-tall-6adf .element_586e {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.new-4faf {
    padding: var(--section-padding);
}

.text_64fc .item_simple_b1b5 {
    flex: 1;
}

/* Promo Calendar Section */
.form_c677 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_5276 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_5276 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden_yellow_41c9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-white-eea7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.primary_fast_0d8c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clean-d8fe {
    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);
}

.hidden_4244 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph_first_d979 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.avatar-efbb {
    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);
}

.avatar-efbb p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.avatar-efbb strong {
    color: var(--accent-color);
}

/* Requirements Section */
.solid_6257 {
    padding: var(--section-padding);
}

.overlay-basic-9f0f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .overlay-basic-9f0f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-hovered-b7c5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark_139a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.component-liquid-3e60 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-liquid-3e60 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_small_5cf1 {
    margin-top: 3rem;
}

.paragraph_small_5cf1 .purple_abfe {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.paragraph_small_5cf1 .video_b0e2 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.paragraph_small_5cf1 .block-copper-14f0 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.paragraph_small_5cf1 .block-copper-14f0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.paragraph_small_5cf1 .block-copper-14f0 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.paragraph_small_5cf1 .block-copper-14f0 li strong {
    color: var(--warning-color);
}

.video_885e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.video_885e strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.lite-de1e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide-861c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide-861c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_e87b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.column_e87b .gallery-39ab {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.detail-west-7122 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table_out_f6dc {
    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);
}

.table_out_f6dc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.under_72aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_light_737d {
    flex: 1;
}

.list-static-a508 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.pattern-top-8ada {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.green-0e52 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.blue_5d59 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.component-in-c155 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .component-in-c155 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_27b5 {
    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);
}

.progress_27b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-9856 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.focused_305d {
    color: var(--text-gray);
    font-size: 1rem;
}

.popup_soft_2faa {
    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);
}

.logo_purple_1691 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.logo_purple_1691 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.container-bronze-4d9d { 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; }
.old_1129, .modal-under-1d4c { max-width:100%; height:auto; }

.purple_8929, .current-d75a, .accent_first_24a1 { white-space:normal; }

.tag-56b0,
.iron_ca79,
.item-986c,
.filter_north_4f83,
.sidebar-f4c5,
.dim_1231 {
  flex-wrap:wrap;
}

[class*="grid"],
.component-in-c155,
.shadow-yellow-1de6,
.background_under_6339 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.image-71bd img,
.iron_ca79 img,
.plasma-0e8c img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.backdrop-warm-8886, .widget-gas-ab16,
.stale-4eb3, .wood-8dd3 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.element_down_6bb0 { width:100%; overflow-x:auto; }
.element_down_6bb0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.grid-left-0696 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .grid-left-0696 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.layout-6eb5 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.upper-04c8,
.primary-e31a,
.soft_fc8a,
.info-stale-b361,
.caption-selected-c68d,
.component-in-c155,
.shadow-yellow-1de6,
.background_under_6339,
.active-warm-243a,
.article_narrow_2eba,
.grid-left-0696 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .upper-04c8,
  .primary-e31a,
  .soft_fc8a,
  .info-stale-b361,
  .caption-selected-c68d,
  .component-in-c155,
  .shadow-yellow-1de6,
  .background_under_6339,
  .active-warm-243a,
  .article_narrow_2eba,
  .grid-left-0696 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.component-0916,
.texture_gold_43e8,
.progress_27b5,
.focused-c643,
.tertiary_5cd2,
.down_eac9,
.tabs-effb,
.layout-6eb5 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.sort-8406,
.rough-0f4d,
.block_narrow_8513 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.sort-8406 > *,
.rough-0f4d > *,
.block_narrow_8513 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: d725 */
.widget-item-e5 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.0;
}
