/* {$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;
}

.component-paper-a3cc {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.block_clean_4911 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .block_clean_4911 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .block_clean_4911 {
        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 */
.tiny-8f1b {
    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);
}

.up-f708 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .up-f708 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .fixed-2295 {
        grid-column: 1;
    }
    
    .container_up_a63f {
        grid-column: 2;
    }
    
    .full_ff88 {
        grid-column: 3;
    }
}

.fixed-2295 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.fixed-2295:hover img {
    transform: scale(1.05);
}

/* Navigation */
.status_3a72 {
    display: none;
}

@media (min-width: 1024px) {
    .status_3a72 {
        display: block;
    }
}

/* Grouped Navigation */
.notice_selected_0233 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.slider-silver-14ae {
    position: relative;
}

.hidden_dark_312f {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.slider-silver-14ae .huge_834c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.huge_834c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.secondary-out-9994 {
    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;
}

.secondary-out-9994:hover,
.secondary-out-9994.fn-active-f9b7 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.tiny_bc03 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tiny_bc03 {
        display: flex;
    }
}

/* Mobile Register Button */
.container_up_a63f {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .container_up_a63f {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.large_e6f2 {
    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;
}

.large_e6f2::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 */
.full_ff88 {
    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) {
    .full_ff88 {
        display: none;
    }
}

.full_ff88 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.full_ff88.fn-active-f9b7 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.full_ff88.fn-active-f9b7 span:nth-child(2) {
    opacity: 0;
}

.full_ff88.fn-active-f9b7 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.lite_fea9 {
    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;
}

.lite_fea9.fn-active-f9b7 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.new_038b {
    overflow: hidden;
}

.filter_6565 {
    list-style: none;
    padding: 0.75rem 0;
}

.accordion-0a3f {
    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;
}

.accordion-0a3f:hover,
.accordion-0a3f.fn-active-f9b7 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.accordion-0a3f.light-8c0a {
    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;
}

.accordion-0a3f.light-8c0a::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 */
.description_2ad0 {
    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;
}

.east_4afb {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.east_4afb:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.border_smooth_63ad {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.border_smooth_63ad:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.detail-4a1c {
    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;
}

.detail-4a1c:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.dirty-6bd1 {
    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;
}

.border-0444 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.border-0444:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.inner-af57 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.inner-af57:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.image_out_bfbf {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.image_out_bfbf: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);
}

.yellow_7aef {
    font-size: 1em;
    font-weight: 700;
}

.silver-16b6 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.layout-6f88 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.layout-6f88::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;
}

.row-3ed7 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .row-3ed7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.green_42b4 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.filter-9502 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hard-8722 {
    margin-bottom: 2rem;
}

.bright-679b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .bright-679b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-4ab9 {
    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);
}

.gold-655c {
    font-size: 1.5rem;
}

.caption-next-7724 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.accordion_up_9b19 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.west-f0d4 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.west-f0d4:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.frame_fast_c095 {
    text-align: center;
    margin-bottom: 3rem;
}

.first_13aa {
    margin-bottom: 1rem;
}

.module_d0d8 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tag-mini-6278 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tag-mini-6278 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tag-mini-6278.gallery-left-9ce5 {
        direction: rtl;
    }
    
    .tag-mini-6278.gallery-left-9ce5 > * {
        direction: ltr;
    }
}

.shadow-new-42b5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.shadow-new-42b5:first-child {
    margin-top: 0;
}

.tooltip-38da {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.short_b98d {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.short_b98d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.title_16b3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_16b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.simple_3b4d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tall_68dc {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.prev-c539 {
    list-style: none;
}

.prev-c539 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prev-c539 li:last-child {
    border-bottom: none;
}

/* Games Features */
.text_over_b721 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.outline_right_ba2a {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.main_70c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-c75e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.brown-96a2 {
    margin: 2rem 0;
}

.article-948c {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.footer_over_7af7 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.under_16c7 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.paragraph_left_416f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.component_071c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_071c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-action-d082 {
    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);
}

.sidebar-action-d082:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.aside_6101 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer_2db4 {
    font-size: 1.5rem;
}

.modal_e254 {
    color: var(--accent-color);
    margin: 0;
}

.pattern_e573 {
    list-style: none;
}

.pattern_e573 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pattern_e573 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.thick-4586 {
    margin: 2rem 0;
}

.dropdown_1a7b {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stale_1982 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stale_1982 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_fluid_dba8 {
    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);
}

.tabs_27fe {
    font-size: 1.25rem;
}

.heading-plasma-5119 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.hot_0ce8,
.action-1869 {
    text-align: center;
    margin: 2rem 0;
}

.surface-f100,
.advanced-389c {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.grid_5f26 {
    margin: 2rem 0;
    text-align: center;
}

.breadcrumb_east_7eac {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb_east_7eac::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;
}

.focus-yellow-e5a5 {
    position: relative;
    z-index: 1;
}

.tabs-0f84 {
    margin-bottom: 1rem;
}

.caption_west_cc73 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.component_0aef {
    margin-bottom: 3rem;
}

.hover_ac60 {
    margin-top: 3rem;
}

.footer_be8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer_be8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_be8e .active-4ab9 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.section_0298 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article-30dd {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.over-1baa {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.active-01d8 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .active-01d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-01d8 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.smooth_dfae {
    margin-bottom: 1rem;
}

.tertiary_6c15 img {
    margin-bottom: 1rem;
}

.button-center-8af7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture_a6ac {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.picture_fed0 {
    list-style: none;
}

.picture_fed0 li {
    margin-bottom: 0.5rem;
}

.picture_fed0 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.picture_fed0 a:hover {
    color: var(--accent-color);
}

.dynamic_019f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hovered_d922 {
    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);
}

.hovered_d922:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.inner_bb93 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.inner_bb93 p {
    margin-bottom: 0.25rem;
}

.tooltip_south_3fe1 {
    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) {
    .tooltip_south_3fe1 {
        flex-direction: row;
    }
}

.overlay_853c {
    text-align: center;
}

@media (min-width: 768px) {
    .overlay_853c {
        text-align: left;
    }
}

.overlay_853c p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.border_8357 {
    font-size: 0.75rem !important;
}

.disabled-0691 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hard-36b3 {
    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);
    }
}

.alert_down_f964 {
    animation: fadeInUp 0.6s ease-out;
}

.component_5cd9 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.light-38ba {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-38ba {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.backdrop_active_daf5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop_active_daf5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-brown-76f1 {
    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);
}

.hidden-brown-76f1 .main_70c1 {
    font-size: 1.25rem;
}

.hidden-brown-76f1 .fresh-4302 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.label_7db0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .label_7db0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_0335 {
    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);
}

.panel_0335:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.badge-hot-e904 {
    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);
}

.dynamic-fe3d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gas-14c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.border-790f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active-9ccf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.active-9ccf .focus-c75e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active-9ccf .texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper_mini_58ed {
    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);
}

.glass_a10e {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.glass_a10e img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.glass_a10e img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.gallery-slow-3173 {
    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);
}

.breadcrumb-solid-c7f7 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gradient-8ad5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gradient-8ad5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gradient-8ad5 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);
}

.gradient-8ad5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gradient-8ad5 input::placeholder {
    color: var(--text-muted);
}

.fluid_7e22 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.table_light_d966 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.table_light_d966 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.upper_39f0 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.upper_39f0:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.stale_1982 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_1982 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_fluid_dba8 {
    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);
}

.accordion_fluid_dba8 .tabs_27fe {
    font-size: 1.25rem;
}

.accordion_fluid_dba8 .heading-plasma-5119 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.surface-lite-7ecc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-ae34 {
    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);
}

.hovered-ae34 .main_70c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-ae34 .focus-c75e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hovered-ae34 .texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_light_825b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_78f7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tiny_78f7 .alert-2785 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tiny_78f7 .box_pro_71fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_3aa0 {
    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);
}

.out_83be {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .out_83be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-abc0 {
    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);
}

.carousel-abc0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column-e95c {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.wrapper_6451 {
    flex: 1;
}

.green-6397 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.static_b8dc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.prev-5d48 {
    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);
}

.prev-5d48:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.old-d2f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .old-d2f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bronze-dd6a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bronze-dd6a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner_pink_6d5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail_green_1cbc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gradient-23f5 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dynamic_4f7c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notification-cebb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary-76e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview_cold_31f4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.preview_cold_31f4 .gold-331f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_cold_31f4 .container_c1a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice-30d0 {
    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);
}

.bottom-6429 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-hot-1868 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption-hot-1868 .main_70c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-hot-1868 .focus-c75e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.caption-hot-1868 .texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.breadcrumb_6fb8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_6fb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_middle_39bb {
    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);
}

.notice_middle_39bb:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.button-out-22e6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-out-22e6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.status_gas_4e6e {
    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);
}

.status_gas_4e6e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static-6ec8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_4e72 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer_over_7af7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.primary_bronze_227a {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.detail_9902 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_d8f9 {
    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);
}

.feature_d8f9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_full_b8ae {
    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);
}

.shade-medium-56a3 {
    flex: 1;
}

.popup-3cab {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.dirty_b5c0 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pink-1cc7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-2954 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_fixed_819c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_fixed_819c .alert-2785 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_fixed_819c .box_pro_71fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.action-1869 {
    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);
}

.dynamic_b14d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dynamic_b14d {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.wood-431c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wood-431c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_e50d {
    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);
}

.yellow_e50d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-focused-a361 {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-ef9e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.paper-766b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.logo_0507 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.container_pro_cebd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_gas_a9b3 {
    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);
}

.highlight-upper-2869 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-1d68 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-3027 {
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom-6429 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-hot-1868 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.caption-hot-1868 .focus-c75e {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.caption-hot-1868 .texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.modal-last-4265 {
    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);
}

.element-fb47 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-fb47 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-fb47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_outer_c4fb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient_outer_c4fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary_c060 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.box-b5f7 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gas_a8a9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.chip-9eb9 {
    padding: 1.5rem;
}

.surface_b7a3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-9f75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-9f75 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;
}

.menu-9f75 li:last-child {
    border-bottom: none;
}

.menu-9f75 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.widget-old-995d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget-old-995d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar_soft_abeb {
    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);
}

.avatar_soft_abeb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail_gold_c64a {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-2e5e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.carousel_a89f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.dropdown-74f0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider_0cb6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_f199 {
    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);
}

.photo_a48f {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-liquid-52f8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.item-ab9c {
    color: var(--text-gray);
    line-height: 1.6;
}

.section_f503 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer_narrow_c4ae {
    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);
}

.hero_6c4c {
    text-align: center;
}

.popup-mini-7c51 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-pro-2b79 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon-d308 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-f12e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-f12e .focus-c75e {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-f12e .texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-f0af {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detail-f0af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail-f0af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.green_2324 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.green_2324:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper_96a4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.carousel-current-0bc9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.focus-c75e {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.pressed_bc3f {
    padding: 1.5rem;
}

.texture-20f5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.center-d8f5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.center-d8f5 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;
}

.center-d8f5 li:last-child {
    border-bottom: none;
}

.center-d8f5 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.top_e070 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.cool_5a3d {
    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);
}

.cool_5a3d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.backdrop-narrow-9704 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_stale_3043 {
    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);
}

.badge-hot-e904 {
    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;
}

.dynamic-fe3d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gas-14c6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-2131 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-b473 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hover_cdf4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-1749 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.aside-9b0e {
    display: flex;
    gap: 1rem;
}

.aside-9b0e .frame-basic-5ff8 {
    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;
}

.link-right-a53a {
    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);
}

.top_0f85 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status_7f8f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status_7f8f 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;
}

.status_7f8f li:last-child {
    border-bottom: none;
}

.status_7f8f li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.layout_bc6f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .layout_bc6f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .layout_bc6f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-simple-0f2d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.row-simple-0f2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.light_e36c {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.grid_under_893a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gold-331f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.block_71a7 {
    font-size: 1rem;
}

.bottom-f065 {
    padding: 1.5rem;
}

.container_c1a7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.fresh_fa27 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.fresh_fa27 .hero_6c4c {
    text-align: center;
}

.fresh_fa27 .info-pro-2b79 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.fresh_fa27 .card_complex_cd2e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.motion-bf5a {
    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);
}

.motion-bf5a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.widget_south_fe8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_south_fe8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new_4b15 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new_4b15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accordion_full_e5ef {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.liquid_8227 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.gallery-slow-7fa4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-e45f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action_3331 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button_f4c1 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.center-9c29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav_cool_8792 {
    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);
}

.frame_hot_22db {
    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;
}

.frame_hot_22db.notice_d58b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.frame_hot_22db.top_93aa {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.frame_hot_22db.hero_dynamic_90dd {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.frame_hot_22db.summary-fixed-2dcf {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.frame_hot_22db.under-c93e {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.steel-7bbf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.widget_8963 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-df94 {
    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);
}

.iron-bf81 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.image_light_825b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image_light_825b 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;
}

.image_light_825b li:last-child {
    border-bottom: none;
}

.image_light_825b li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.input_6222 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .input_6222 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_6222 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress-red-2ea7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.progress-red-2ea7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.progress-red-2ea7.orange-b7cd {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .progress-red-2ea7.orange-b7cd {
        grid-column: span 3;
    }
}

.small-306c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.progress-red-2ea7.orange-b7cd .small-306c {
    background: rgba(6, 182, 212, 0.1);
}

.sidebar-5629 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.icon-8311 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.progress-red-2ea7.orange-b7cd .icon-8311 {
    color: var(--info-color);
}

.detail_d1b7 {
    padding: 1.5rem;
    text-align: center;
}

.fixed_f61a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.progress-red-2ea7.orange-b7cd .fixed_f61a {
    color: var(--info-color);
}

.hidden-35fb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sidebar_741e {
    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 */
.breadcrumb_rough_4f2a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_rough_4f2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.element-wide-a228 {
    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);
}

.element-wide-a228:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow_bd0b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hovered-ae34 {
    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);
}

.tabs_27fe {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-9349 {
    flex: 1;
}

.dropdown_1a7b {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_aa51 {
    color: var(--text-gray);
    line-height: 1.6;
}

.popup_medium_8ba7 {
    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);
}

.search_medium_b519 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.form_current_3422 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hard-36b3 {
    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);
}

.texture_0c85 {
  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);
}

.texture_0c85 .hero_6c4c {
    text-align: center;
}

.texture_0c85 .popup-mini-7c51 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.texture_0c85 .info-pro-2b79 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text_bottom_706e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture-2f1f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.widget-ac42 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video_7c5a {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_db96 {
    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);
}

.form-dynamic-23f3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tooltip-hot-82ee {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-0ae9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .outline-0ae9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline-0ae9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accent_659f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accent_659f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.last-dcc4 {
    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);
}

.advanced-168d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.widget_white_7a24 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.text-e91d {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-e91d.layout-750e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.text-e91d.text_862a {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.text-e91d.hover_ae8f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.pattern-2240 {
    padding: 1.5rem;
    text-align: center;
}

.carousel-3cce {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text_441c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.text_441c .primary-ee16 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.header_76f2 {
    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);
}

.header_76f2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dropdown_plasma_18c3 {
  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);
}

.thumbnail-f9bc {
    text-align: center;
}

.thumbnail-f9bc .popup-mini-7c51 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.thumbnail-f9bc .info-pro-2b79 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.paper_d489 { text-align: center; }
.heading_d557 { text-align: left; }
.tooltip_1a14 { text-align: right; }

.copper-6bf8 { margin-bottom: 0; }
.fresh-a7cb { margin-bottom: 0.5rem; }
.secondary-8f3d { margin-bottom: 1rem; }
.slow_9e46 { margin-bottom: 1.5rem; }
.alert_warm_8083 { margin-bottom: 2rem; }

.hover_dirty_d66c { margin-top: 0; }
.video-848f { margin-top: 0.5rem; }
.notification_a96b { margin-top: 1rem; }
.photo_f31c { margin-top: 1.5rem; }
.active_f6cd { margin-top: 2rem; }

.fn-hidden-f9b7 { display: none; }
.fn-visible-f9b7 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .layout-6f88 {
        padding: 6rem 0 3rem;
    }
    
    .row-3ed7 {
        text-align: center;
    }
    
    .tag-mini-6278 {
        text-align: center;
    }
    
    .bright-679b {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .tiny-8f1b,
    .lite_fea9,
    .breadcrumb_east_7eac,
    .over-1baa {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .layout-6f88 {
        background: none;
    }
}

/* Providers Section */
.texture_upper_ddaf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_slow_0184 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_slow_0184 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .form_slow_0184 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tiny-a248 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tiny-a248:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pattern_dark_d99f {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notification_hovered_c753 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.input-short-3eed {
    list-style: none;
    padding: 0;
}

.input-short-3eed li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.input-short-3eed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.component_basic_74e4 {
    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);
}

.component_basic_74e4 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.background_a118 {
    padding: var(--section-padding);
}

.short_49c7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short_49c7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focused-0ec6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focused-0ec6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fresh_fb76 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.header-7588 {
    display: flex;
    flex-direction: column;
}

.old_f47b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.row-clean-95e3 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accordion_2dfe {
    color: var(--accent-color);
}

.video-a0e0 {
    font-size: 1.25rem;
}

.hidden-white-11a4 {
    margin-bottom: 1rem;
}

.hidden-white-11a4 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.main-medium-ffec {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.notice-simple-c023 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.hero_6c4c {
    text-align: center;
}

.popup-mini-7c51 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-pro-2b79 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.outline-pressed-e2c4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom_6d38 {
    margin: 2rem 0;
}

.logo_south_a51c {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.logo_south_a51c .main_70c1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary-pro-55f8 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form_17ed {
    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;
}

.form_17ed:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.rough-109c {
    font-size: 2rem;
}

.fluid-e270 {
    display: flex;
    flex-direction: column;
}

.disabled_bccb {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.section-gas-f227 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.aside_small_75ad {
    padding: var(--section-padding);
}

.top_019c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .top_019c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .top_019c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev-cd3c {
    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);
}

.prev-cd3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.prev-cd3c .popup-mini-7c51 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.prev-cd3c .info-pro-2b79 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.prev-cd3c .gradient-3afd {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.down-1f26 {
    margin-top: 4rem;
}

.column_upper_c120 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.column-fba0 {
    overflow-x: auto;
}

.dim-8ea5 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dim-8ea5 thead {
    background: var(--accent-color);
}

.dim-8ea5 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.dim-8ea5 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.dim-8ea5 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.dim-8ea5 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.in_1585 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_6390 {
    max-width: 900px;
    margin: 0 auto;
}

.notification-8d29 {
    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);
}

.notification-8d29:hover {
    border-color: var(--accent-color);
}

.pagination-d76c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.pagination-d76c h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.background-up-03d6 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.notification-8d29.fn-active-f9b7 .background-up-03d6 {
    transform: rotate(45deg);
}

.outer_ea4b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.notification-8d29.fn-active-f9b7 .outer_ea4b {
    max-height: 1000px;
}

.outer_ea4b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.preview-paper-9292 {
    padding: var(--section-padding);
}

.glass_a10e {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.gallery-steel-0029 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_gold_ecb9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_gold_ecb9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.item_yellow_18d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip-down-ddde {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.south-bfbc {
    font-size: 2rem;
}

.card_4e6b {
    color: var(--text-white);
    margin: 0;
}

.progress-in-0b38 {
    list-style: none;
    padding: 0;
}

.progress-in-0b38 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-in-0b38 li:last-child {
    border-bottom: none;
}

.accordion-thick-c6d5 {
    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);
}

.accordion-thick-c6d5 p {
    color: var(--success-color);
    margin: 0;
}

.column-1f15 {
    margin-top: 3rem;
}

.top_0f85 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.black-6e38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black-6e38 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chip_9f67 {
    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);
}

.background-1634 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chip_9f67 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.background_1999 {
    padding: var(--section-padding);
}

.alert_up_d412 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_up_d412 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-orange-c9cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article-orange-c9cd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.aside-last-a1d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.description_022f {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.inner_2be7 {
    flex: 1;
}

.feature-5649 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.shadow_gas_30be {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.tiny_d36c {
    color: var(--text-gray);
    line-height: 1.6;
}

.wide_763c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wide_763c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.description_c0dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.bright_e860 {
    padding: var(--section-padding);
}

.current-8cf2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.slider-gold-fcd7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-gold-fcd7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-63d0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green_bbc0, .tabs-white-50b4, .section-0526 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.section-0526 {
    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 */
.huge-ae2c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-0ad9 {
    margin: 2rem 0;
}

.pagination-10a5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow_5ad9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.layout-thick-d590 {
    list-style: none;
    padding: 0;
}

.layout-thick-d590 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;
}

.layout-thick-d590 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.layout-thick-d590 li:last-child {
    border-bottom: none;
}

.summary-medium-ce92 {
    text-align: center;
    margin-top: 2rem;
}

.panel-left-b08a {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.section_right_a70c {
    padding: var(--section-padding);
}

.gradient_4fa5 {
    margin: 2rem 0;
}

.orange-1af5 {
    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) {
    .orange-1af5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.orange-1af5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.item-brown-1f44 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.button_hovered_8ebb {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.yellow-fe47 {
    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;
}

.detail-b13c {
    flex: 1;
}

.gradient_next_29f2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.box_basic_f27f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.warm_f39a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.full_cd6e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .full_cd6e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.center-4ad2 {
    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);
}

.center-4ad2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.center-4ad2 .popup-mini-7c51 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.center-4ad2 .info-pro-2b79 {
    color: var(--text-gray);
    font-size: 1rem;
}

.block-06b1 {
    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);
}

.pattern-small-c690 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.pattern-small-c690 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.selected-dd19 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .selected-dd19 {
        grid-template-columns: 1fr 1fr;
    }
}

.tall-aaef {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-stale-332d {
    margin-bottom: 1.5rem;
}

.outline-stale-332d label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.outline-stale-332d input,
.outline-stale-332d 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;
}

.outline-stale-332d input:focus,
.outline-stale-332d select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.primary_cool_48eb {
    width: 100%;
    margin-top: 1rem;
}

.cool-c051 {
    display: flex;
    align-items: center;
}

.full-fe41 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.box-short-4ec5 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.progress_west_0ac4 {
    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;
}

.top-7d66 {
    color: var(--text-gray);
}

.next-1a04 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.heading_selected_18bb {
    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);
}

.heading_selected_18bb p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.slider_copper_53f0 {
    margin-top: 3rem;
}

.outer_a016 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.mask_right_2002 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-768f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.chip-de53 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chip-de53:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.mask-lower-c209 {
    padding: var(--section-padding);
}

.badge_red_ffc6 {
    margin: 2rem 0;
}

.grid_3807 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form_fe39 {
    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;
}

.form_fe39:hover, .form_fe39.fn-active-f9b7 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.item_lite_1a12 {
    display: none;
}

.item_lite_1a12.fn-active-f9b7 {
    display: block;
}

.smooth-1ac8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-fluid-3a89 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.action_4cbf h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.action_4cbf ul {
    list-style: none;
    padding: 0;
}

.action_4cbf ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.action_4cbf ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.aside_c532 {
    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 */
.tabs_hovered_47ca {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_hard_1751 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone-28cc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.row-green-d463 {
    color: var(--accent-color);
    margin: 0;
}

.paragraph-61b1 {
    display: flex;
    gap: 1.5rem;
}

.tertiary_bright_65f6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.bright-6242 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.button-dim-b69f {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.button-dim-b69f.frame_8a06 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.button-dim-b69f.notification_0fca {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.button-dim-b69f.form-dynamic-cc71 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.modal_clean_2d38 {
    margin-top: 2rem;
}

.detail-6010 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.modal-stale-e422 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .modal-stale-e422 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas_67ec {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.tiny-db59 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.content-5f81 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.next-bdb2 {
    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 */
.layout_middle_18b9 {
    padding: var(--section-padding);
}

.narrow_7df7 {
    margin: 2rem 0;
}

.icon_inner_7fd0 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.element_prev_59ba {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.preview-over-5400 {
    list-style: none;
    padding: 0;
}

.preview-over-5400 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;
}

.preview-over-5400 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.preview-over-5400 li:last-child {
    border-bottom: none;
}

.input-a43e {
    margin: 2rem 0;
}

.tabs_59c1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.input-solid-48ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .input-solid-48ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main_light_ac37 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item_d9bd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.layout_adcf {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.medium_1457 {
    margin-top: 2rem;
}

.green-6397 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.layout-1269 {
    list-style: none;
    padding: 0;
}

.tabs-fresh-e061 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.tabs-fresh-e061 a {
    color: var(--accent-color);
    text-decoration: none;
}

.tabs-fresh-e061 a:hover {
    text-decoration: underline;
}

.north_a1d7 {
    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 */
.link-wide-6cb6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_simple_7c11 {
    margin: 2rem 0;
}

.simple-9465 {
    margin-bottom: 3rem;
}

.simple-9465 .shadow_5ad9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form_slow_dc4f {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.breadcrumb-soft-4d08 {
    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);
}

.breadcrumb-soft-4d08:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.copper_ec67 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .copper_ec67 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slow-36a8 {
    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 */
.current-d97f {
    padding: var(--section-padding);
}

.clean-1117 {
    margin: 2rem 0;
}

.pagination-north-b67e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border-green-538e {
    overflow-x: auto;
    margin: 2rem 0;
}

.prev_84f0 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.shadow-plasma-b114 {
    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;
}

.silver-5064 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.image_e29a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .image_e29a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large-4d34 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large-4d34 .main_70c1 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.large-4d34 .focus-c75e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert_3fa0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.chip-be60 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-motion-0b29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-motion-0b29 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-north-7a47 {
    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;
}

.message-north-7a47:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.badge-dark-0c09 {
    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);
}

.table_pink_57bd {
    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;
}

.title_c788 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shade_prev_67ed {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.table_eb38 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.out-e8ef {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info_plasma_d7ed {
    color: var(--text-white);
    font-weight: 600;
}

.link_green_b37b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.disabled-prev-2760 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disabled-prev-2760 .frame-basic-5ff8 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.wrapper-1617 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .wrapper-1617 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-cool-4095 {
    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);
}

.tooltip-cool-4095:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tooltip-cool-4095 .popup-mini-7c51 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tooltip-cool-4095 .info-pro-2b79 {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph-6920 {
    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);
}

.main-steel-5b13 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.main-steel-5b13 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.container_pro_cebd {
    margin: 2rem 0;
}

.summary_gas_a9b3 {
    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);
}

.summary_gas_a9b3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.highlight-upper-2869 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dynamic-dda3 {
    flex: 1;
}

.tabs-1d68 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.card-3027 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.bottom-6429 {
    margin: 2rem 0;
}

.caption-hot-1868 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.caption-hot-1868 .focus-c75e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.caption-hot-1868 .texture-20f5 {
    color: var(--text-gray);
    margin: 0;
}

.modal-last-4265 {
    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);
}

.modal-last-4265 .surface-f100 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.alert_3fa0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.notification_full_b8ae {
    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;
}

.shade-medium-56a3 {
    flex: 1;
}

.dirty_b5c0 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.pink-1cc7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.badge-hot-e904 {
    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;
}

.section-glass-35ba {
    flex: 1;
}

.dynamic-fe3d {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gas-14c6 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.hover_cdf4 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.detail-1749 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.aside-9b0e {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.aside-9b0e .frame-basic-5ff8 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.link-right-a53a {
    margin-top: 2rem;
}

.link-right-a53a .top_0f85 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.feature_37f3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_narrow_c4ae {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_narrow_c4ae {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_narrow_c4ae .hero_6c4c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-d308 {
    margin: 2rem 0;
}

.aside-f12e {
    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 */
.nav_hovered_3241 {
    padding: var(--section-padding);
}

.pressed_bc3f {
    margin-top: 1rem;
}

.center-d8f5 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.center-d8f5 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.center-d8f5 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.slider-east-7458 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-current-9c33 {
    margin: 2rem 0;
}

.item-27c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.section-3ea5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hard_3bf2 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.content-full-c638 {
    margin: 2rem 0;
}

.detail-huge-5669 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.detail-huge-5669 .shadow_5ad9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active-purple-850b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .active-purple-850b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lower_5093 {
    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);
}

.component_b1dd {
    color: var(--text-white);
    font-weight: 600;
}

.frame_hovered_f829 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.sort-48fc {
    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);
}

.sort-48fc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.section_f182 {
    padding: var(--section-padding);
}

.tag_dbdf {
    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;
}

.tag_dbdf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.thick_c0b0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.thick_c0b0 .background-1634 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick_c0b0 .basic-8913 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.wrapper-right-0f8d {
    flex: 1;
}

.tabs-37c9 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-0ade {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-0ade li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.gallery-0ade li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.accordion-large-c02e {
    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);
}

.accordion-large-c02e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion-large-c02e strong {
    color: var(--warning-color);
}

/* Slots Section */
.new_2716 {
    padding: var(--section-padding);
}

.notification-cebb {
    margin: 2rem 0;
}

/* Table Games Section */
.simple-7c37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-76e1 {
    margin: 2rem 0;
}

.preview_cold_31f4 {
    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);
}

.preview_cold_31f4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.preview_cold_31f4 .gold-331f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview_cold_31f4 .container_c1a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.notice-30d0 {
    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);
}

.notice-30d0 .surface-f100 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.content-bae6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-prev-ff03 {
    margin: 2rem 0;
}

.info_prev_a6cc {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box-thick-f9f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tiny_4ccf {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.component_large_54f4 {
    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);
}

.component_large_54f4:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.component_large_54f4.fn-active-f9b7 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.background-bright-10f0 {
    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);
}

.element-cool-606a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element-cool-606a strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.primary-lower-4f39 {
    padding: var(--section-padding);
}

.advanced-7a11 {
    margin: 2rem 0;
}

.dark-9a71 {
    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);
}

.dark-9a71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .dark-9a71 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.container_a3b1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.south_e851 {
    flex: 1;
}

.text-395f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.preview-48e8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.popup_323f {
    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;
}

.photo_static_d289 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stone-9af1 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.menu_hard_cb3f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.steel-94f0 {
    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;
}

.steel-94f0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.input-64cc {
    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);
}

.module_2053 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.module_2053 strong {
    color: var(--accent-color);
}

/* New Games Section */
.shade-ab8b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_narrow_9bf7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hidden_narrow_9bf7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hidden_narrow_9bf7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_4387 {
    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;
}

.icon_4387:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.feature-84c8 {
    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;
}

.hidden_2e14 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.notification-9744 {
    font-size: 2rem;
}

.tag_orange_e2dd {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.form-e6a4 {
    flex: 1;
}

.cool_372e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.basic-986c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bronze-138f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.active-4784 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.text-pressed-d266 {
    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;
}

.fresh-b5ac {
    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;
}

.fresh-b5ac:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mask_pressed_7f7e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper-4b00 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pink_f540 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .pink_f540 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title_7d7c {
    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);
}

.carousel_4264 {
    color: var(--text-white);
    font-weight: 600;
}

.paragraph-9e76 {
    color: var(--accent-color);
    font-weight: 600;
}

.texture-2eae {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.texture-2eae strong {
    color: var(--accent-color);
}

/* Security Section */
.medium_8cd7 {
    padding: var(--section-padding);
}

/* Benefits Section */
.nav_mini_86ef {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.lower-b67a {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.lower-5b98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-b313 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.panel_out_7f06 {
    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) {
    .panel_out_7f06 {
        flex-direction: column;
        gap: 1rem;
    }
}

.panel_out_7f06:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.panel_out_7f06 .badge-hot-e904 {
    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;
}

.panel_out_7f06 .section-glass-35ba {
    flex: 1;
}

.panel_out_7f06 .dynamic-fe3d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.panel_out_7f06 .gas-14c6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.motion-81b6 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-81b6 .dropdown_1a7b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.motion-81b6 .surface-lite-7ecc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motion-81b6 .surface-lite-7ecc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.motion-81b6 .surface-lite-7ecc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.status-cold-fa70 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.liquid_5a83 {
    padding: var(--section-padding);
}

.advanced-e27c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .advanced-e27c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prev_24d3 {
    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);
}

.prev_24d3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.prev_24d3 .prev-5022 {
    font-size: 2rem;
    flex-shrink: 0;
}

.prev_24d3 .silver-622c {
    flex: 1;
}

.prev_24d3 .alert-2785 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.prev_24d3 .box-new-9746 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.pro-408f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro-408f .tertiary-209e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro-408f .selected-a901 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.pro-408f .selected-a901 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);
}

.pro-408f .selected-a901 li:last-child {
    border-bottom: none;
}

.pro-408f .selected-a901 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;
}

.pro-408f .selected-a901 li strong {
    color: var(--text-white);
}

.card_pink_eb85 {
    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);
}

.card_pink_eb85 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.card_pink_eb85 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.photo-e690 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.huge-7213 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .huge-7213 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.item-tiny-d094 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.item-tiny-d094:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-e25f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description-purple-e9e0 {
    font-size: 2rem;
}

.popup_c0c2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.paragraph_35d4 {
    flex: 1;
}

.preview_upper_067a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview_upper_067a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.preview_upper_067a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.right_c478 {
    margin-top: 3rem;
}

.icon_inner_7fd0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.element_prev_59ba {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview-over-5400 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-over-5400 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.preview-over-5400 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.preview-over-5400 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.east-af34 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion_59fa {
    margin: 2rem 0;
}

.menu-5838 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.menu-5838 .shadow_5ad9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.stale-ba15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stale-ba15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.medium-8f25 {
    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);
}

.medium-8f25:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.primary-f6a1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.label-cac6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.title-thick-25e0 {
    padding: var(--section-padding);
}

.badge_8aa3 {
    margin: 2rem 0;
}

.sort_e84b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .sort_e84b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sort_e84b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow_b8b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow_b8b2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fast-c31a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.frame-dirty-864f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.card-9751 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-9751.link_e412 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tooltip_55ea {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.in_b5e3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.small_17ca {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-glass-a8ab {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.column_c689 {
    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);
}

.column_c689 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.column_c689 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.picture-bc1c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-4395 {
    margin: 2rem 0;
}

.top_e9cf {
    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) {
    .top_e9cf {
        flex-direction: column;
        gap: 1rem;
    }
}

.top_e9cf:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.top_e9cf::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);
}

.mask-ac1d {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.light_aa6f {
    flex: 1;
}

.border-f9e1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.link-270f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-270f li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.over-3103 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.logo_feb0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.liquid-8188 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .liquid-8188 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal-4682 {
    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);
}

.filter-stone-e7af {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pagination_2fe4 {
    flex: 1;
}

.hard-b3d6 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.disabled_adb6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.clean_6a88 {
    margin-top: 2rem;
    text-align: center;
}

.shade_750a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_750a strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.widget_south_fe8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_south_fe8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new_4b15 {
    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);
}

.new_4b15:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.new_4b15 .thumbnail_gold_c64a {
    font-size: 2rem;
    flex-shrink: 0;
}

.new_4b15 .active-2e5e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.new_4b15 .carousel_a89f {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.new_4b15 .dropdown-74f0 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.first-631d {
    padding: var(--section-padding);
}

.liquid_8227 .footer-hard-327f {
    flex: 1;
}

/* Promo Calendar Section */
.tooltip_hard_4b86 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination_6d1a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination_6d1a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_c8b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-5f66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.mini_6dea {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breadcrumb_steel_ba4a {
    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);
}

.plasma_2895 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.dirty-fa78 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.thumbnail_9c47 {
    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);
}

.thumbnail_9c47 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.thumbnail_9c47 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hero_next_7977 {
    padding: var(--section-padding);
}

.image-focused-a002 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .image-focused-a002 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-selected-b931 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_a937 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-d201 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-d201 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty_b5bb {
    margin-top: 3rem;
}

.dirty_b5bb .icon_inner_7fd0 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dirty_b5bb .element_prev_59ba {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dirty_b5bb .preview-over-5400 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dirty_b5bb .preview-over-5400 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dirty_b5bb .preview-over-5400 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dirty_b5bb .preview-over-5400 li strong {
    color: var(--warning-color);
}

.progress-north-8168 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.progress-north-8168 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.content_fd48 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column_orange_b1af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_orange_b1af {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label-235e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.label-235e .shadow_5ad9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.image_5fba {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-fff0 {
    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);
}

.badge-fff0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo-2cec {
    font-size: 2rem;
    flex-shrink: 0;
}

.first-c876 {
    flex: 1;
}

.breadcrumb_10ef {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.carousel_40cb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.table_f234 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.summary-paper-da21 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.box-3479 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .box-3479 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_mini_8215 {
    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);
}

.table_mini_8215:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature-2207 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stale-21e1 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pattern-small-c690 {
    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);
}

.background-a692 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.background-a692 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.block_clean_4911 { 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; }
.west-f0d4, .short_b98d { max-width:100%; height:auto; }

.description_2ad0, .detail-4a1c, .dirty-6bd1 { white-space:normal; }

.row-3ed7,
.tag-mini-6278,
.breadcrumb_rough_4f2a,
.widget_south_fe8f,
.bottom-6429,
.outline-0ae9 {
  flex-wrap:wrap;
}

[class*="grid"],
.box-3479,
.sort_e84b,
.footer_be8e {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.layout-6f88 img,
.tag-mini-6278 img,
.accordion_up_9b19 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.green_42b4, .filter-9502,
.first_13aa, .module_d0d8 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.column-fba0 { width:100%; overflow-x:auto; }
.column-fba0 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.form_slow_0184 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .form_slow_0184 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.tiny-a248 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.top_019c,
.frame_71f2,
.full-a640,
.accordion-east-e788,
.full_cd6e,
.box-3479,
.sort_e84b,
.footer_be8e,
.dropdown_plasma_18c3,
.advanced-7a11,
.form_slow_0184 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .top_019c,
  .frame_71f2,
  .full-a640,
  .accordion-east-e788,
  .full_cd6e,
  .box-3479,
  .sort_e84b,
  .footer_be8e,
  .dropdown_plasma_18c3,
  .advanced-7a11,
  .form_slow_0184 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.prev-cd3c,
.center-4ad2,
.table_mini_8215,
.active-4ab9,
.shadow_b8b2,
.thumbnail-f9bc,
.dark-9a71,
.tiny-a248 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.input-medium-2151,
.paper_0dcd,
.pagination_f2d3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.input-medium-2151 > *,
.paper_0dcd > *,
.pagination_f2d3 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 3379 */
.shadow-element-b2 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
