/* {$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;
}

.item-2910 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.paper-bde5 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .paper-bde5 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .paper-bde5 {
        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 */
.focused-9006 {
    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);
}

.glass-e81e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .glass-e81e {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .cool_8f77 {
        grid-column: 1;
    }
    
    .texture-261d {
        grid-column: 2;
    }
    
    .pattern_e6ff {
        grid-column: 3;
    }
}

.cool_8f77 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.cool_8f77:hover img {
    transform: scale(1.05);
}

/* Navigation */
.sidebar_5154 {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar_5154 {
        display: block;
    }
}

/* Grouped Navigation */
.brown-0a99 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.logo_thick_784f {
    position: relative;
}

.row_fresh_0642 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.logo_thick_784f .focused_0864 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.focused_0864 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.pink-a051 {
    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;
}

.pink-a051:hover,
.pink-a051.fn-active-3436 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.list_smooth_52cc {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .list_smooth_52cc {
        display: flex;
    }
}

/* Mobile Register Button */
.texture-261d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .texture-261d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.description-0b24 {
    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;
}

.description-0b24::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 */
.pattern_e6ff {
    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) {
    .pattern_e6ff {
        display: none;
    }
}

.pattern_e6ff span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.pattern_e6ff.fn-active-3436 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.pattern_e6ff.fn-active-3436 span:nth-child(2) {
    opacity: 0;
}

.pattern_e6ff.fn-active-3436 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.huge-0a9d {
    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;
}

.huge-0a9d.fn-active-3436 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.gradient-liquid-0b9a {
    overflow: hidden;
}

.block_ca78 {
    list-style: none;
    padding: 0.75rem 0;
}

.progress_smooth_cd7e {
    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;
}

.progress_smooth_cd7e:hover,
.progress_smooth_cd7e.fn-active-3436 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.progress_smooth_cd7e.shade_14a0 {
    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;
}

.progress_smooth_cd7e.shade_14a0::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 */
.title-pink-7026 {
    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;
}

.tall_5983 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.tall_5983:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.element_first_48b4 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.element_first_48b4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.component_lower_5564 {
    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;
}

.component_lower_5564:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.old-2c89 {
    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;
}

.logo_ae02 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.logo_ae02:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.progress_lower_b312 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.progress_lower_b312:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.selected_381c {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.selected_381c: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);
}

.modal_under_2b10 {
    font-size: 1em;
    font-weight: 700;
}

.hidden_next_1ffb {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.dropdown-bronze-dcb0 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.dropdown-bronze-dcb0::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;
}

.chip_f1b2 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .chip_f1b2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.overlay_e397 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.complex-ad06 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.container-new-a910 {
    margin-bottom: 2rem;
}

.bright_c03e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .bright_c03e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_08e5 {
    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);
}

.highlight-e0f8 {
    font-size: 1.5rem;
}

.top_5fc3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.large-1a6e {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-7ce2 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.preview-7ce2:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.summary_gas_c959 {
    text-align: center;
    margin-bottom: 3rem;
}

.form-center-ca13 {
    margin-bottom: 1rem;
}

.header_mini_7f65 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.surface-pro-acb8 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .surface-pro-acb8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .surface-pro-acb8.mask-up-51ba {
        direction: rtl;
    }
    
    .surface-pro-acb8.mask-up-51ba > * {
        direction: ltr;
    }
}

.tag_plasma_4125 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tag_plasma_4125:first-child {
    margin-top: 0;
}

.video_red_5bc7 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hidden-right-eb9b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hidden-right-eb9b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.button_90f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button_90f0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-ecdb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tertiary_591d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.stale-7134 {
    list-style: none;
}

.stale-7134 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stale-7134 li:last-child {
    border-bottom: none;
}

/* Games Features */
.cold_e2d4 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.active-selected-fe25 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wrapper_red_aed4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_f20f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.main_5132 {
    margin: 2rem 0;
}

.background_0c64 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.texture_mini_81a1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.input_a847 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hovered-a2da {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.summary-c2a5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-c2a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover_2399 {
    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);
}

.hover_2399:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border-pro-415b {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bright_f797 {
    font-size: 1.5rem;
}

.logo-c83d {
    color: var(--accent-color);
    margin: 0;
}

.sort_upper_8abb {
    list-style: none;
}

.sort_upper_8abb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.sort_upper_8abb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.item_next_0799 {
    margin: 2rem 0;
}

.gradient_3e93 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.form-4c45 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-4c45 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-f31f {
    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);
}

.menu-6ce8 {
    font-size: 1.25rem;
}

.section-a2bc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.footer_edce,
.hidden_under_1862 {
    text-align: center;
    margin: 2rem 0;
}

.primary-light-3441,
.basic-8505 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.avatar-cool-b36b {
    margin: 2rem 0;
    text-align: center;
}

.backdrop-ddf9 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.backdrop-ddf9::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;
}

.info-gold-323c {
    position: relative;
    z-index: 1;
}

.sidebar-hard-86b4 {
    margin-bottom: 1rem;
}

.steel-49dd {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.secondary-top-7fb9 {
    margin-bottom: 3rem;
}

.yellow_4997 {
    margin-top: 3rem;
}

.glass_6ebc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .glass_6ebc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_6ebc .input_08e5 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_silver_817d {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gradient_basic_c8a5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.feature-lower-ec2b {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.mini_3506 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .mini_3506 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mini_3506 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.overlay_east_4f5e {
    margin-bottom: 1rem;
}

.complex_9f14 img {
    margin-bottom: 1rem;
}

.copper_7028 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny_4342 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.list_in_2a79 {
    list-style: none;
}

.list_in_2a79 li {
    margin-bottom: 0.5rem;
}

.list_in_2a79 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.list_in_2a79 a:hover {
    color: var(--accent-color);
}

.media_8fc1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.photo-3c61 {
    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);
}

.photo-3c61:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.carousel-middle-1cf8 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.carousel-middle-1cf8 p {
    margin-bottom: 0.25rem;
}

.highlight_2b33 {
    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) {
    .highlight_2b33 {
        flex-direction: row;
    }
}

.liquid_5955 {
    text-align: center;
}

@media (min-width: 768px) {
    .liquid_5955 {
        text-align: left;
    }
}

.liquid_5955 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.huge_5d75 {
    font-size: 0.75rem !important;
}

.feature-c30b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.gradient_advanced_f1a5 {
    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);
    }
}

.gradient_4070 {
    animation: fadeInUp 0.6s ease-out;
}

.last_7169 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.notification-soft-d5cb {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification-soft-d5cb {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.popup_1d4c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_1d4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_upper_7907 {
    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);
}

.accordion_upper_7907 .wrapper_red_aed4 {
    font-size: 1.25rem;
}

.accordion_upper_7907 .dim_d5db {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.south-7c5e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .south-7c5e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.north_3e6f {
    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);
}

.north_3e6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.under-793c {
    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);
}

.detail_static_f956 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.steel_a4f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.progress_60bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-3429 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.feature-3429 .shade_f20f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-3429 .alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-up-d297 {
    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);
}

.cold-34bc {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.cold-34bc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.cold-34bc img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.narrow-88a2 {
    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);
}

.notice-8d27 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.under-b7d9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.under-b7d9 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.under-b7d9 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);
}

.under-b7d9 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.under-b7d9 input::placeholder {
    color: var(--text-muted);
}

.pressed-1b31 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.container-20ae {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.container-20ae input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.texture-bc9f {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.texture-bc9f:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.form-4c45 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-4c45 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.prev-f31f {
    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);
}

.prev-f31f .menu-6ce8 {
    font-size: 1.25rem;
}

.prev-f31f .section-a2bc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.mask-6aa6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_east_f387 {
    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);
}

.background_east_f387 .wrapper_red_aed4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_east_f387 .shade_f20f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.background_east_f387 .alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_be5d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description_eec7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.description_eec7 .container_20d7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_eec7 .tabs_bright_024a {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_ffeb {
    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);
}

.active_8293 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active_8293 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_gas_7994 {
    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);
}

.content_gas_7994:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next-1e54 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gas_cd36 {
    flex: 1;
}

.description-4395 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.focus-glass-84a3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.medium_4924 {
    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);
}

.medium_4924:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.hero_6e2a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero_6e2a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_smooth_0b3c {
    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);
}

.footer_smooth_0b3c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow_2ac8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_1e9c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wrapper-easy-6e0a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.basic_98f7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.accordion_in_69f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo_9247 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center-7367 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.center-7367 .fixed_75b7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center-7367 .gradient_orange_ec19 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused_2862 {
    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);
}

.secondary_lite_e4f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_down_e9b9 {
    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);
}

.heading_down_e9b9 .wrapper_red_aed4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.heading_down_e9b9 .shade_f20f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_down_e9b9 .alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_ec5a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_ec5a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-59ef {
    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);
}

.old-59ef:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.static_2f75 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_2f75 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon-warm-895f {
    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);
}

.icon-warm-895f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.light_592b {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid_0bce {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.texture_mini_81a1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.modal-1745 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.border_4047 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-c8f0 {
    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);
}

.nav-c8f0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_gas_758e {
    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);
}

.thumbnail_light_ba3d {
    flex: 1;
}

.alert-gas-9f6a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.texture-thick-7a53 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.item-4d17 {
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_17da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tall_6795 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tall_6795 .container_20d7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tall_6795 .tabs_bright_024a {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_under_1862 {
    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);
}

.last_bb48 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .last_bb48 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.photo-short-fd6a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-short-fd6a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-7472 {
    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-7472:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item-4ac0 {
    font-size: 2rem;
    flex-shrink: 0;
}

.widget-3aae {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-acc8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.panel-orange-945d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.grid-silver-6ecf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_pink_04b4 {
    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);
}

.background_b856 {
    font-size: 2rem;
    flex-shrink: 0;
}

.warm-39d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_9af7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary_lite_e4f5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_down_e9b9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.heading_down_e9b9 .shade_f20f {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_down_e9b9 .alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination_solid_1ae4 {
    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);
}

.feature-6025 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .feature-6025 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-6025 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.image_da8b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image_da8b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro_e0c9 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.thumbnail_7e21 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bronze_cb90 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.footer-last-fc78 {
    padding: 1.5rem;
}

.current-453a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.element_east_19ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element_east_19ad 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;
}

.element_east_19ad li:last-child {
    border-bottom: none;
}

.element_east_19ad li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.texture-short-44aa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture-short-44aa {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_simple_4052 {
    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);
}

.mask_simple_4052:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_dirty_86cb {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-c004 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.button-silver-7240 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.icon-1065 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.modal_basic_6609 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-outer-527d {
    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);
}

.active_f0c4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_ff1d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.main_fast_dc88 {
    color: var(--text-gray);
    line-height: 1.6;
}

.up_f3d5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.texture_last_fc26 {
    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);
}

.dark_dcb1 {
    text-align: center;
}

.focus-last-e37b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight-ddd5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.content_top_6248 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shade-fast-c435 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-fast-c435 .shade_f20f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.shade-fast-c435 .alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-plasma-0ef7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .overlay-plasma-0ef7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay-plasma-0ef7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_26a5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.chip_26a5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block_c609 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.huge_2bf3 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.shade_f20f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.column-fbea {
    padding: 1.5rem;
}

.alert_large_7217 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.description_middle_f35a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description_middle_f35a 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;
}

.description_middle_f35a li:last-child {
    border-bottom: none;
}

.description_middle_f35a li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.red_1f54 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-pink-f73a {
    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);
}

.highlight-pink-f73a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.small-d08b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-432b {
    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);
}

.under-793c {
    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;
}

.detail_static_f956 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.steel_a4f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.prev-e090 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot_e80b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed-c7c5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table_fluid_9e8c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.alert-9cc6 {
    display: flex;
    gap: 1rem;
}

.alert-9cc6 .shade_last_4ed9 {
    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;
}

.grid-38ca {
    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);
}

.next-1fba {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.background_next_5854 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_next_5854 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;
}

.background_next_5854 li:last-child {
    border-bottom: none;
}

.background_next_5854 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.badge_copper_8eb2 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .badge_copper_8eb2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .badge_copper_8eb2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_cbd6 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.photo_cbd6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pattern-73dc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fixed_d8d0 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fixed_75b7 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.frame-under-9242 {
    font-size: 1rem;
}

.medium_68b1 {
    padding: 1.5rem;
}

.gradient_orange_ec19 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.caption_fed8 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.caption_fed8 .dark_dcb1 {
    text-align: center;
}

.caption_fed8 .highlight-ddd5 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.caption_fed8 .main-last-f995 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.main_wide_5d24 {
    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);
}

.main_wide_5d24:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.card_82d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_82d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_abf8 {
    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);
}

.simple_abf8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_lower_13a3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_cc2d {
    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);
}

.plasma_cf1f {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu_dark_fc4b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.center_1a28 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_250c {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.steel-86d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.item-black-4798 {
    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);
}

.hidden_static_542c {
    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;
}

.hidden_static_542c.wrapper_middle_e6e0 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.hidden_static_542c.content-medium-009d {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.hidden_static_542c.steel-953a {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.hidden_static_542c.tabs-dark-eaa9 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.hidden_static_542c.status_8fad {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.filter_f07e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pro-2e5b {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_07c4 {
    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);
}

.row-old-9286 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sort_be5d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort_be5d 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;
}

.sort_be5d li:last-child {
    border-bottom: none;
}

.sort_be5d li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.full-0f03 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .full-0f03 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .full-0f03 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar_copper_640c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.avatar_copper_640c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_copper_640c.outer-ccd5 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .avatar_copper_640c.outer-ccd5 {
        grid-column: span 3;
    }
}

.breadcrumb-e650 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.avatar_copper_640c.outer-ccd5 .breadcrumb-e650 {
    background: rgba(6, 182, 212, 0.1);
}

.focused_d090 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hard_f5e6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.avatar_copper_640c.outer-ccd5 .hard_f5e6 {
    color: var(--info-color);
}

.under_7d92 {
    padding: 1.5rem;
    text-align: center;
}

.tag_yellow_b6af {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.avatar_copper_640c.outer-ccd5 .tag_yellow_b6af {
    color: var(--info-color);
}

.frame-d25a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.inner-ba50 {
    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 */
.alert_steel_76c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_steel_76c3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box-935e {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.box-935e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.block-cool-7de8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.background_east_f387 {
    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);
}

.menu-6ce8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard-a85d {
    flex: 1;
}

.gradient_3e93 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop-complex-e3a2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_ce3c {
    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);
}

.input_5615 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.panel_thick_e543 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gradient_advanced_f1a5 {
    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);
}

.copper_c5ee {
  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);
}

.copper_c5ee .dark_dcb1 {
    text-align: center;
}

.copper_c5ee .focus-last-e37b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.copper_c5ee .highlight-ddd5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.action-b1a2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.label_2de2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-9b98 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_complex_1ffd {
    color: var(--text-gray);
    line-height: 1.6;
}

.texture-c703 {
    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);
}

.lower-aea1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image-upper-9004 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner_9727 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner_9727 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner_9727 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout-lite-f784 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.layout-lite-f784:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_9fa9 {
    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);
}

.brown_15d5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dark-b059 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.item_dynamic_8ba7 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item_dynamic_8ba7.middle-1167 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.item_dynamic_8ba7.item_fixed_804b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.item_dynamic_8ba7.image-hard-be75 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.input_gold_a46b {
    padding: 1.5rem;
    text-align: center;
}

.tertiary-5060 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden-2e83 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hidden-2e83 .old_4ec5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.row_a549 {
    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);
}

.row_a549:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.dynamic-521d {
  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);
}

.avatar-right-82e6 {
    text-align: center;
}

.avatar-right-82e6 .focus-last-e37b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.avatar-right-82e6 .highlight-ddd5 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.thick_cddc { text-align: center; }
.out_4ef6 { text-align: left; }
.link_right_f4b4 { text-align: right; }

.wrapper_hovered_f1cd { margin-bottom: 0; }
.tiny_f059 { margin-bottom: 0.5rem; }
.accent-stone-2896 { margin-bottom: 1rem; }
.content_5a7c { margin-bottom: 1.5rem; }
.sidebar-huge-7f6c { margin-bottom: 2rem; }

.block_6b26 { margin-top: 0; }
.right-8602 { margin-top: 0.5rem; }
.huge_57c9 { margin-top: 1rem; }
.lower_ba32 { margin-top: 1.5rem; }
.sort-1820 { margin-top: 2rem; }

.fn-hidden-3436 { display: none; }
.fn-visible-3436 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .dropdown-bronze-dcb0 {
        padding: 6rem 0 3rem;
    }
    
    .chip_f1b2 {
        text-align: center;
    }
    
    .surface-pro-acb8 {
        text-align: center;
    }
    
    .bright_c03e {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .focused-9006,
    .huge-0a9d,
    .backdrop-ddf9,
    .feature-lower-ec2b {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .dropdown-bronze-dcb0 {
        background: none;
    }
}

/* Providers Section */
.hover-a782 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.banner_narrow_dbb0 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_narrow_dbb0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner_narrow_dbb0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_complex_b23a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dropdown_complex_b23a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pressed-f1df {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info_hovered_4ade {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.large-5637 {
    list-style: none;
    padding: 0;
}

.large-5637 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.large-5637 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.paragraph-d246 {
    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);
}

.paragraph-d246 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.mask_29ff {
    padding: var(--section-padding);
}

.fixed-ac5b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed-ac5b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.over-4b61 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.over-4b61:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.wood-ae35 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.breadcrumb-light-5422 {
    display: flex;
    flex-direction: column;
}

.lite-f38e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.button-thick-3421 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.list-7669 {
    color: var(--accent-color);
}

.primary_narrow_9b46 {
    font-size: 1.25rem;
}

.footer_6e6a {
    margin-bottom: 1rem;
}

.footer_6e6a p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.shadow_da4f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.full_ed56 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.dark_dcb1 {
    text-align: center;
}

.focus-last-e37b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.highlight-ddd5 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.slider_up_edeb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-eb86 {
    margin: 2rem 0;
}

.search_cold_4da5 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.search_cold_4da5 .wrapper_red_aed4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone_8fb3 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.component_copper_6af9 {
    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;
}

.component_copper_6af9:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module_east_d964 {
    font-size: 2rem;
}

.video_hard_b006 {
    display: flex;
    flex-direction: column;
}

.cold-8071 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.aside_fe42 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.search-slow-9699 {
    padding: var(--section-padding);
}

.container_aaef {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container_aaef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container_aaef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row-910d {
    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);
}

.row-910d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.row-910d .focus-last-e37b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.row-910d .highlight-ddd5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.row-910d .sort-yellow-9cf6 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.link-b220 {
    margin-top: 4rem;
}

.top-ce03 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.small-8d05 {
    overflow-x: auto;
}

.surface-c7c7 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.surface-c7c7 thead {
    background: var(--accent-color);
}

.surface-c7c7 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.surface-c7c7 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-c7c7 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.surface-c7c7 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.down_80de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.badge_6d26 {
    max-width: 900px;
    margin: 0 auto;
}

.aside_thick_f36e {
    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);
}

.aside_thick_f36e:hover {
    border-color: var(--accent-color);
}

.shadow_768b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.shadow_768b h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.slow-db42 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.aside_thick_f36e.fn-active-3436 .slow-db42 {
    transform: rotate(45deg);
}

.search-gold-fdbc {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.aside_thick_f36e.fn-active-3436 .search-gold-fdbc {
    max-height: 1000px;
}

.search-gold-fdbc p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.warm_b483 {
    padding: var(--section-padding);
}

.cold-34bc {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.hover_brown_36c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tag-iron-8b29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag-iron-8b29 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status-c481 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_afe3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lite_343b {
    font-size: 2rem;
}

.complex-fdf4 {
    color: var(--text-white);
    margin: 0;
}

.hidden_70b2 {
    list-style: none;
    padding: 0;
}

.hidden_70b2 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden_70b2 li:last-child {
    border-bottom: none;
}

.thumbnail_solid_30ec {
    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);
}

.thumbnail_solid_30ec p {
    color: var(--success-color);
    margin: 0;
}

.pink-7f14 {
    margin-top: 3rem;
}

.next-1fba {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.dynamic_5b89 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dynamic_5b89 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.huge-2dfb {
    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);
}

.popup_short_e48d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.huge-2dfb p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.breadcrumb_3cf3 {
    padding: var(--section-padding);
}

.preview-complex-ce8f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-complex-ce8f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black_ec29 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.black_ec29:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article_gold_1b08 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.full_5dd9 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.detail-wide-4bcb {
    flex: 1;
}

.gold-0875 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.feature-c60a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.frame-brown-092f {
    color: var(--text-gray);
    line-height: 1.6;
}

.slow_924c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slow_924c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.title_liquid_4cd9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dynamic-53af {
    padding: var(--section-padding);
}

.large-d198 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.search-d9aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search-d9aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient-steel-f37f {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_pro_77f6, .backdrop_pink_5966, .border-east-8a8a {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.border-east-8a8a {
    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 */
.active_3fc4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface-07f1 {
    margin: 2rem 0;
}

.simple_9587 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-67b8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.over_0994 {
    list-style: none;
    padding: 0;
}

.over_0994 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;
}

.over_0994 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.over_0994 li:last-child {
    border-bottom: none;
}

.surface_simple_4a72 {
    text-align: center;
    margin-top: 2rem;
}

.hidden_warm_a113 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.hard_0e88 {
    padding: var(--section-padding);
}

.feature_new_a2fc {
    margin: 2rem 0;
}

.content-medium-3af6 {
    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) {
    .content-medium-3af6 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.content-medium-3af6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label_e0f5 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.red_6420 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.stone_dd72 {
    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;
}

.yellow_1b54 {
    flex: 1;
}

.outer_604b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.paper-2c67 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.logo_7e74 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.main_2049 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .main_2049 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pattern-rough-a0e2 {
    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);
}

.pattern-rough-a0e2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pattern-rough-a0e2 .focus-last-e37b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pattern-rough-a0e2 .highlight-ddd5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.pressed_1583 {
    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);
}

.dim-4319 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dim-4319 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.module-east-605e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .module-east-605e {
        grid-template-columns: 1fr 1fr;
    }
}

.content_b34b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-dac4 {
    margin-bottom: 1.5rem;
}

.modal-dac4 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-dac4 input,
.modal-dac4 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;
}

.modal-dac4 input:focus,
.modal-dac4 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.light_aef9 {
    width: 100%;
    margin-top: 1rem;
}

.panel-up-5a74 {
    display: flex;
    align-items: center;
}

.summary_gold_fb73 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.fluid_ccb4 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.middle-d5b7 {
    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;
}

.carousel_05ae {
    color: var(--text-gray);
}

.active-242a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.tag-dace {
    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);
}

.tag-dace p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.footer-6e84 {
    margin-top: 3rem;
}

.texture_tiny_c6e5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.menu-large-a714 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-1c00 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.tall-3d66 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tall-3d66:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.logo_copper_af8f {
    padding: var(--section-padding);
}

.header_e88d {
    margin: 2rem 0;
}

.hard-c782 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.component-a833 {
    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;
}

.component-a833:hover, .component-a833.fn-active-3436 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hovered_d8b1 {
    display: none;
}

.hovered_d8b1.fn-active-3436 {
    display: block;
}

.primary-01c8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paragraph-c569 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pink-a8db h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.pink-a8db ul {
    list-style: none;
    padding: 0;
}

.pink-a8db ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pink-a8db ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pattern-6444 {
    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 */
.disabled_05b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb-blue-426c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info_top_7253 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.complex-e1ce {
    color: var(--accent-color);
    margin: 0;
}

.bright_1f1b {
    display: flex;
    gap: 1.5rem;
}

.secondary-brown-2cf6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.steel_c4f0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination-574c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.pagination-574c.badge-9a94 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pagination-574c.dark_c671 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.pagination-574c.wrapper_fd66 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.list_ee12 {
    margin-top: 2rem;
}

.upper_8d3e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.message_upper_eeb7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .message_upper_eeb7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_58ae {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.notification_20cc {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.static_ce9b {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.summary-7790 {
    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 */
.alert_huge_124b {
    padding: var(--section-padding);
}

.link_active_f9b6 {
    margin: 2rem 0;
}

.hidden-bcef {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.message-narrow-d692 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.backdrop_current_17a5 {
    list-style: none;
    padding: 0;
}

.backdrop_current_17a5 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;
}

.backdrop_current_17a5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.backdrop_current_17a5 li:last-child {
    border-bottom: none;
}

.up-1018 {
    margin: 2rem 0;
}

.message_cae5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.element_pink_a718 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .element_pink_a718 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.panel_19a6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first_fea8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert-70d9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hovered_8eef {
    margin-top: 2rem;
}

.description-4395 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.widget_c80f {
    list-style: none;
    padding: 0;
}

.shadow_fast_c06f {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.shadow_fast_c06f a {
    color: var(--accent-color);
    text-decoration: none;
}

.shadow_fast_c06f a:hover {
    text-decoration: underline;
}

.heading-active-f300 {
    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 */
.hover_white_0d18 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay-orange-1199 {
    margin: 2rem 0;
}

.dropdown_30ba {
    margin-bottom: 3rem;
}

.dropdown_30ba .action-67b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.plasma-d6d2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.photo-6e7c {
    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);
}

.photo-6e7c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.block-be96 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .block-be96 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_selected_782d {
    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 */
.item_last_e42d {
    padding: var(--section-padding);
}

.container-20fe {
    margin: 2rem 0;
}

.left_815d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.icon-c8c6 {
    overflow-x: auto;
    margin: 2rem 0;
}

.filter_b3e8 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.wide-6534 {
    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;
}

.shadow_inner_9b81 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.menu_wood_caa2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .menu_wood_caa2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.box_tall_ec21 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_tall_ec21 .wrapper_red_aed4 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.box_tall_ec21 .shade_f20f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.element_cbc9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.red-a022 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.aside_86c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside_86c8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mini_5cbd {
    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;
}

.mini_5cbd:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.west-fb65 {
    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);
}

.avatar_a96f {
    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;
}

.status-b9f7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fluid-a15f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.south-605a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.button_8af5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-208e {
    color: var(--text-white);
    font-weight: 600;
}

.row_8a53 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight_easy_5b9b {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_easy_5b9b .shade_last_4ed9 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.alert-inner-26fc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert-inner-26fc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.button-steel-a750 {
    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);
}

.button-steel-a750:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.button-steel-a750 .focus-last-e37b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.button-steel-a750 .highlight-ddd5 {
    color: var(--text-gray);
    font-size: 1rem;
}

.picture_68c3 {
    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);
}

.tiny-c6bd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.tiny-c6bd strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.grid-silver-6ecf {
    margin: 2rem 0;
}

.popup_pink_04b4 {
    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);
}

.popup_pink_04b4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.background_b856 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.list-orange-9a25 {
    flex: 1;
}

.warm-39d9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_9af7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.secondary_lite_e4f5 {
    margin: 2rem 0;
}

.heading_down_e9b9 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_down_e9b9 .shade_f20f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.heading_down_e9b9 .alert_large_7217 {
    color: var(--text-gray);
    margin: 0;
}

.pagination_solid_1ae4 {
    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);
}

.pagination_solid_1ae4 .primary-light-3441 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.element_cbc9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.hidden_gas_758e {
    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;
}

.thumbnail_light_ba3d {
    flex: 1;
}

.texture-thick-7a53 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.item-4d17 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.under-793c {
    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;
}

.grid_down_de94 {
    flex: 1;
}

.detail_static_f956 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.steel_a4f2 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.fixed-c7c5 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.table_fluid_9e8c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.alert-9cc6 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.alert-9cc6 .shade_last_4ed9 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.grid-38ca {
    margin-top: 2rem;
}

.grid-38ca .next-1fba {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.primary-f0d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture_last_fc26 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .texture_last_fc26 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_last_fc26 .dark_dcb1 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content_top_6248 {
    margin: 2rem 0;
}

.shade-fast-c435 {
    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 */
.notification-ffd3 {
    padding: var(--section-padding);
}

.column-fbea {
    margin-top: 1rem;
}

.description_middle_f35a {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.description_middle_f35a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.description_middle_f35a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.under_8a9f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section_c2b7 {
    margin: 2rem 0;
}

.sidebar-f69f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.slider_8a2a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sort_dirty_c768 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.nav-bottom-cccc {
    margin: 2rem 0;
}

.notice-649d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.notice-649d .action-67b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.clean_b290 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .clean_b290 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pro_e978 {
    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);
}

.paragraph-2688 {
    color: var(--text-white);
    font-weight: 600;
}

.motion-3ab7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.photo-983b {
    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);
}

.photo-983b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.nav-154a {
    padding: var(--section-padding);
}

.filter-new-cbd4 {
    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;
}

.filter-new-cbd4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dark-2e60 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-2e60 .popup_short_e48d {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark-2e60 .banner_purple_94f2 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fluid-08b6 {
    flex: 1;
}

.gallery-d457 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lower_ec63 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower_ec63 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.lower_ec63 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.layout-a85f {
    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);
}

.layout-a85f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout-a85f strong {
    color: var(--warning-color);
}

/* Slots Section */
.label_1318 {
    padding: var(--section-padding);
}

.accordion_in_69f8 {
    margin: 2rem 0;
}

/* Table Games Section */
.texture_2b36 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.photo_9247 {
    margin: 2rem 0;
}

.center-7367 {
    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);
}

.center-7367:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.center-7367 .fixed_75b7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center-7367 .gradient_orange_ec19 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.focused_2862 {
    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);
}

.focused_2862 .primary-light-3441 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.hovered_1756 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-1db9 {
    margin: 2rem 0;
}

.slider_hard_c290 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-eafb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mini_513b {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.disabled-south-49c9 {
    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);
}

.disabled-south-49c9:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.disabled-south-49c9.fn-active-3436 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.logo_1348 {
    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);
}

.pagination_lite_682c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pagination_lite_682c strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.header-hovered-ef13 {
    padding: var(--section-padding);
}

.tabs_8e3e {
    margin: 2rem 0;
}

.hero_pro_f792 {
    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);
}

.hero_pro_f792:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .hero_pro_f792 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.input_37dd {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.breadcrumb_bb99 {
    flex: 1;
}

.caption_dark_74b2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gold-55f6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accordion-df39 {
    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;
}

.box-simple-b82c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.layout-75c9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.photo_next_ff49 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item-4a0e {
    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;
}

.item-4a0e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.slider-narrow-cbbc {
    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);
}

.mask-first-6923 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.mask-first-6923 strong {
    color: var(--accent-color);
}

/* New Games Section */
.frame-62fb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_yellow_afce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_yellow_afce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer_yellow_afce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-2ad5 {
    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;
}

.nav-2ad5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.inner-6aff {
    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;
}

.sort-red-847c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.notification_b529 {
    font-size: 2rem;
}

.table_1c7c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.carousel_3c47 {
    flex: 1;
}

.row-light-9355 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.menu-full-7bf9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.banner-e9e6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tiny-ffd2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu_88ea {
    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;
}

.inner_7e8b {
    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;
}

.inner_7e8b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.description-next-6062 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-8860 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accordion_c77d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .accordion_c77d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.soft_eef1 {
    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);
}

.gradient-d958 {
    color: var(--text-white);
    font-weight: 600;
}

.light_b252 {
    color: var(--accent-color);
    font-weight: 600;
}

.medium-9efb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.medium-9efb strong {
    color: var(--accent-color);
}

/* Security Section */
.fixed-0cb5 {
    padding: var(--section-padding);
}

/* Benefits Section */
.middle-973c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.tall_8a99 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.sidebar-stone-7ae8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_3db1 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.tertiary-silver-b76d {
    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) {
    .tertiary-silver-b76d {
        flex-direction: column;
        gap: 1rem;
    }
}

.tertiary-silver-b76d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tertiary-silver-b76d .under-793c {
    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;
}

.tertiary-silver-b76d .grid_down_de94 {
    flex: 1;
}

.tertiary-silver-b76d .detail_static_f956 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tertiary-silver-b76d .steel_a4f2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.down-5c6a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.down-5c6a .gradient_3e93 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.down-5c6a .mask-6aa6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.down-5c6a .mask-6aa6 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.down-5c6a .mask-6aa6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.progress-bcc2 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.summary_dim_39d8 {
    padding: var(--section-padding);
}

.box_cd7e {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .box_cd7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-09a9 {
    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);
}

.slider-09a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.slider-09a9 .lite_e080 {
    font-size: 2rem;
    flex-shrink: 0;
}

.slider-09a9 .accent-motion-8516 {
    flex: 1;
}

.slider-09a9 .container_20d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.slider-09a9 .down_f633 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wrapper-8884 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-8884 .tooltip_north_e49d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-8884 .background-a0e4 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.wrapper-8884 .background-a0e4 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);
}

.wrapper-8884 .background-a0e4 li:last-child {
    border-bottom: none;
}

.wrapper-8884 .background-a0e4 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;
}

.wrapper-8884 .background-a0e4 li strong {
    color: var(--text-white);
}

.up_2cb3 {
    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);
}

.up_2cb3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.up_2cb3 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.texture-aa40 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider-29e8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slider-29e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-out-0b1b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.detail-out-0b1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.section-6134 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.element_0e39 {
    font-size: 2rem;
}

.status-5495 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.content-cold-97e1 {
    flex: 1;
}

.badge_hard_8795 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge_hard_8795 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.badge_hard_8795 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.center-3cf8 {
    margin-top: 3rem;
}

.hidden-bcef {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.message-narrow-d692 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.backdrop_current_17a5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop_current_17a5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.backdrop_current_17a5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.backdrop_current_17a5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.notice-ea89 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_in_6a57 {
    margin: 2rem 0;
}

.current_4743 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.current_4743 .action-67b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thick-1103 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .thick-1103 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame-2411 {
    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);
}

.frame-2411:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.bottom-e107 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.outline-clean-6ef9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.background_9b86 {
    padding: var(--section-padding);
}

.lower-99eb {
    margin: 2rem 0;
}

.black_0c4b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .black_0c4b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_0c4b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-left-acf4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tabs-left-acf4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.short_6b8b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sort-3f6f {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.narrow-3ec9 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.narrow-3ec9.texture_brown_3641 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.filter-2a40 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.down-cf4c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.filter-4286 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cool-b59c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.glass_9a37 {
    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);
}

.glass_9a37 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.glass_9a37 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hidden_aa9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background-center-d1fd {
    margin: 2rem 0;
}

.box-d8d4 {
    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) {
    .box-d8d4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.box-d8d4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.box-d8d4::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);
}

.pagination-c143 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.avatar_inner_6503 {
    flex: 1;
}

.white-d3fc {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.list-c403 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-c403 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.caption_west_e44b {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_d7e3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description-de67 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .description-de67 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh-cd44 {
    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);
}

.grid_glass_8033 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tag_stone_d20a {
    flex: 1;
}

.bottom_ec8c {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.action_c7da {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.large-ed24 {
    margin-top: 2rem;
    text-align: center;
}

.grid_8012 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.grid_8012 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.card_82d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card_82d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_abf8 {
    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);
}

.simple_abf8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.simple_abf8 .alert_dirty_86cb {
    font-size: 2rem;
    flex-shrink: 0;
}

.simple_abf8 .backdrop-c004 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.simple_abf8 .button-silver-7240 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.simple_abf8 .icon-1065 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.slider_dirty_e245 {
    padding: var(--section-padding);
}

.slow_cc2d .nav-46df {
    flex: 1;
}

/* Promo Calendar Section */
.badge-full-79c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight_060d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .highlight_060d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-807c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-action-a16d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.notice_9560 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lite_53a6 {
    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);
}

.grid_6355 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.surface_slow_6bd8 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.next_f46d {
    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);
}

.next_f46d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.next_f46d strong {
    color: var(--accent-color);
}

/* Requirements Section */
.pressed_5049 {
    padding: var(--section-padding);
}

.tertiary_b19a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tertiary_b19a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cold_96ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.chip_pro_f002 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.slider_soft_f01f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider_soft_f01f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-d146 {
    margin-top: 3rem;
}

.layout-d146 .hidden-bcef {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.layout-d146 .message-narrow-d692 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout-d146 .backdrop_current_17a5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.layout-d146 .backdrop_current_17a5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.layout-d146 .backdrop_current_17a5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.layout-d146 .backdrop_current_17a5 li strong {
    color: var(--warning-color);
}

.menu-f72c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.menu-f72c strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.photo-east-2ee4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy-8773 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy-8773 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_in_c5c4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_in_c5c4 .action-67b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tag_3678 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail-center-91b1 {
    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);
}

.thumbnail-center-91b1:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.active-3fbf {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag-old-9309 {
    flex: 1;
}

.hard_9b6b {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.selected-c6aa {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.summary-715e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.texture-9c17 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cold-b95b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .cold-b95b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-brown-9d0c {
    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);
}

.tabs-brown-9d0c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip_d72f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gas-2a96 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dim-4319 {
    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);
}

.list_a8ad {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.list_a8ad strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.paper-bde5 { 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; }
.preview-7ce2, .hidden-right-eb9b { max-width:100%; height:auto; }

.title-pink-7026, .component_lower_5564, .old-2c89 { white-space:normal; }

.chip_f1b2,
.surface-pro-acb8,
.alert_steel_76c3,
.card_82d9,
.secondary_lite_e4f5,
.banner_9727 {
  flex-wrap:wrap;
}

[class*="grid"],
.cold-b95b,
.black_0c4b,
.glass_6ebc {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.dropdown-bronze-dcb0 img,
.surface-pro-acb8 img,
.large-1a6e img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.overlay_e397, .complex-ad06,
.form-center-ca13, .header_mini_7f65 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.small-8d05 { width:100%; overflow-x:auto; }
.small-8d05 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.banner_narrow_dbb0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .banner_narrow_dbb0 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.dropdown_complex_b23a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.container_aaef,
.green-7987,
.article-5ce7,
.tertiary_orange_4d4d,
.main_2049,
.cold-b95b,
.black_0c4b,
.glass_6ebc,
.dynamic-521d,
.tabs_8e3e,
.banner_narrow_dbb0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .container_aaef,
  .green-7987,
  .article-5ce7,
  .tertiary_orange_4d4d,
  .main_2049,
  .cold-b95b,
  .black_0c4b,
  .glass_6ebc,
  .dynamic-521d,
  .tabs_8e3e,
  .banner_narrow_dbb0 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.row-910d,
.pattern-rough-a0e2,
.tabs-brown-9d0c,
.input_08e5,
.tabs-left-acf4,
.avatar-right-82e6,
.hero_pro_f792,
.dropdown_complex_b23a {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.chip-7763,
.filter_9572,
.section-down-70cb {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.chip-7763 > *,
.filter_9572 > *,
.section-down-70cb > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: ce6f */
.promo-block-l7 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
