/* {$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;
}

.light-87dd {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.nav-lite-5042 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-lite-5042 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-lite-5042 {
        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 */
.out_9554 {
    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);
}

.huge-a0ca {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .huge-a0ca {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .glass-a37d {
        grid-column: 1;
    }
    
    .dirty-b20d {
        grid-column: 2;
    }
    
    .easy_5727 {
        grid-column: 3;
    }
}

.glass-a37d img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.glass-a37d:hover img {
    transform: scale(1.05);
}

/* Navigation */
.up_7018 {
    display: none;
}

@media (min-width: 1024px) {
    .up_7018 {
        display: block;
    }
}

/* Grouped Navigation */
.tabs-fd03 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top_7591 {
    position: relative;
}

.menu-middle-3e65 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.top_7591 .cold-e1bc {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.cold-e1bc {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.breadcrumb_action_c5b0 {
    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;
}

.breadcrumb_action_c5b0:hover,
.breadcrumb_action_c5b0.fn-active-37eb {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.stone_e913 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .stone_e913 {
        display: flex;
    }
}

/* Mobile Register Button */
.dirty-b20d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .dirty-b20d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.progress-e47d {
    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;
}

.progress-e47d::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 */
.easy_5727 {
    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) {
    .easy_5727 {
        display: none;
    }
}

.easy_5727 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.easy_5727.fn-active-37eb span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.easy_5727.fn-active-37eb span:nth-child(2) {
    opacity: 0;
}

.easy_5727.fn-active-37eb span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hover-d79c {
    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;
}

.hover-d79c.fn-active-37eb {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.description-old-faab {
    overflow: hidden;
}

.container-bb65 {
    list-style: none;
    padding: 0.75rem 0;
}

.tertiary_d94f {
    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;
}

.tertiary_d94f:hover,
.tertiary_d94f.fn-active-37eb {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.tertiary_d94f.gas-5624 {
    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;
}

.tertiary_d94f.gas-5624::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 */
.button_f1a7 {
    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;
}

.focused-2f2a {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.focused-2f2a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.popup-steel-a1ee {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.popup-steel-a1ee:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.paper-1718 {
    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;
}

.paper-1718:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.medium-08a4 {
    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;
}

.small_0d92 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.small_0d92:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hidden-full-1ed3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hidden-full-1ed3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.alert-1c1c {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.alert-1c1c: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);
}

.widget-solid-817f {
    font-size: 1em;
    font-weight: 700;
}

.badge-bca4 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.progress-a6ba {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.progress-a6ba::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;
}

.box_dark_820c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .box_dark_820c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.section_motion_faee {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pink_1b26 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.panel-b265 {
    margin-bottom: 2rem;
}

.picture-8b47 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .picture-8b47 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_huge_24fb {
    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);
}

.fluid-71d0 {
    font-size: 1.5rem;
}

.header-hard-f86d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.selected_3ca1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slow-3ca6 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.slow-3ca6:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.pattern_out_5f93 {
    text-align: center;
    margin-bottom: 3rem;
}

.background_prev_4e9d {
    margin-bottom: 1rem;
}

.content_steel_5e57 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.progress_paper_3453 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .progress_paper_3453 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .progress_paper_3453.avatar_2de6 {
        direction: rtl;
    }
    
    .progress_paper_3453.avatar_2de6 > * {
        direction: ltr;
    }
}

.new-1a17 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.new-1a17:first-child {
    margin-top: 0;
}

.modal_hard_f404 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.popup-3f54 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.popup-3f54:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.smooth_68b0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth_68b0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paragraph_copper_0568 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.disabled_bottom_2af7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb_inner_b41a {
    list-style: none;
}

.breadcrumb_inner_b41a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb_inner_b41a li:last-child {
    border-bottom: none;
}

/* Games Features */
.white_0074 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.fixed_0251 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.badge-focused-4a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame-2517 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.widget-5578 {
    margin: 2rem 0;
}

.brown_22d5 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.item-soft-66c6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.carousel-b4fb {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.status-3d64 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pagination-498f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-498f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed_99cc {
    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);
}

.pressed_99cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.shade_tiny_5837 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.texture-aacd {
    font-size: 1.5rem;
}

.selected_de29 {
    color: var(--accent-color);
    margin: 0;
}

.picture_7765 {
    list-style: none;
}

.picture_7765 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.picture_7765 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.large-de4a {
    margin: 2rem 0;
}

.paper-8142 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.yellow-db9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .yellow-db9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_0dd7 {
    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);
}

.modal-out-86a1 {
    font-size: 1.25rem;
}

.motion-77bf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.active_c766,
.outline_focused_4e2f {
    text-align: center;
    margin: 2rem 0;
}

.center_cfd0,
.image-4d13 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.in_2a93 {
    margin: 2rem 0;
    text-align: center;
}

.pink-2fed {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pink-2fed::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;
}

.element_right_7f52 {
    position: relative;
    z-index: 1;
}

.header_f44d {
    margin-bottom: 1rem;
}

.overlay_dark_f0f6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.over_fba0 {
    margin-bottom: 3rem;
}

.liquid_be70 {
    margin-top: 3rem;
}

.panel-center-fa4c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .panel-center-fa4c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-center-fa4c .gradient_huge_24fb {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture-bright-7c1a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-current-c895 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.accordion_west_574d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.solid_74c8 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .solid_74c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solid_74c8 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.filter-1b0b {
    margin-bottom: 1rem;
}

.mask_9ac2 img {
    margin-bottom: 1rem;
}

.description-thick-8ea0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.right-a3c4 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.carousel_f281 {
    list-style: none;
}

.carousel_f281 li {
    margin-bottom: 0.5rem;
}

.carousel_f281 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.carousel_f281 a:hover {
    color: var(--accent-color);
}

.overlay_dirty_1604 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.border_3e8a {
    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);
}

.border_3e8a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.gallery_green_e0cc {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.gallery_green_e0cc p {
    margin-bottom: 0.25rem;
}

.element-8b56 {
    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) {
    .element-8b56 {
        flex-direction: row;
    }
}

.chip_2a4f {
    text-align: center;
}

@media (min-width: 768px) {
    .chip_2a4f {
        text-align: left;
    }
}

.chip_2a4f p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.article_c5d0 {
    font-size: 0.75rem !important;
}

.grid_current_f9c6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.south-6704 {
    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);
    }
}

.tiny_17a3 {
    animation: fadeInUp 0.6s ease-out;
}

.fluid-e22b {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.module_d895 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_d895 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.breadcrumb_bottom_8657 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_bottom_8657 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wide-41ae {
    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);
}

.wide-41ae .badge-focused-4a30 {
    font-size: 1.25rem;
}

.wide-41ae .pagination_5b71 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.liquid-2e32 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .liquid-2e32 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary-blue-a3ca {
    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);
}

.primary-blue-a3ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.aside-b9d7 {
    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);
}

.wood-0930 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.label_north_d470 {
    color: var(--text-gray);
    line-height: 1.6;
}

.west_8dfe {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.texture_3bff {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture_3bff .frame-2517 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.texture_3bff .glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wide-99a1 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast-9563 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.fast-9563 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.fast-9563 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.caption-gas-f86e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.frame-dark-de7d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel_black_966c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.panel_black_966c label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.panel_black_966c 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);
}

.panel_black_966c input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.panel_black_966c input::placeholder {
    color: var(--text-muted);
}

.footer-3a37 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge_hard_44b0 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.badge_hard_44b0 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.article-right-92cc {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.article-right-92cc:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.yellow-db9b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow-db9b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro_0dd7 {
    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);
}

.pro_0dd7 .modal-out-86a1 {
    font-size: 1.25rem;
}

.pro_0dd7 .motion-77bf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.bottom-cb5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down_bbe5 {
    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);
}

.down_bbe5 .badge-focused-4a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.down_bbe5 .frame-2517 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.down_bbe5 .glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_west_2608 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.center_09ec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.center_09ec .table-b9c2 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.center_09ec .steel_9766 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_0bf5 {
    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);
}

.media-d118 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media-d118 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.row_89b0 {
    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);
}

.row_89b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav-steel-ccd0 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.static-b8d9 {
    flex: 1;
}

.easy-0bf7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb-fluid-301f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gold_a23f {
    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);
}

.gold_a23f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.icon-57a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-57a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-steel-eb4a {
    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);
}

.dropdown-steel-eb4a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.left_c896 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink_f78b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plasma_ee58 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.container-b3e3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.description_copper_fbaa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.purple-c39a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-soft-7ea7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.video-soft-7ea7 .main_19e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-soft-7ea7 .highlight-f5e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header-pro-95a3 {
    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);
}

.mask-yellow-ff74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_220b {
    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);
}

.breadcrumb_220b .badge-focused-4a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_220b .frame-2517 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_220b .glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_gas_c9a6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .frame_gas_c9a6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_512d {
    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);
}

.mask_512d:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.hovered_d5b5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered_d5b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bottom_02fd {
    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);
}

.bottom_02fd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-a179 {
    font-size: 2rem;
    flex-shrink: 0;
}

.new-902f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-soft-66c6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.hover-dirty-07c0 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.outline-b277 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-fresh-1c58 {
    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);
}

.input-fresh-1c58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_f878 {
    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);
}

.alert-action-0ad6 {
    flex: 1;
}

.header-c282 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.gradient_dynamic_4c46 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.title-34fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_e1c4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card_1649 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_1649 .table-b9c2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.card_1649 .steel_9766 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_focused_4e2f {
    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);
}

.fluid-4581 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-4581 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.feature_action_b684 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature_action_b684 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_simple_fa04 {
    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);
}

.surface_simple_fa04:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_eafb {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-black-445e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lite-988b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.carousel_focused_b84d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.complex-4546 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thumbnail-hard-2c6c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper_bronze_dc87 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination-d0f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph-2731 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-yellow-ff74 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.breadcrumb_220b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.breadcrumb_220b .frame-2517 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.breadcrumb_220b .glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-gold-6bd5 {
    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);
}

.thick-a9af {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thick-a9af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-a9af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.last_0310 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.last_0310:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs-pressed-d32a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.iron-c234 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.middle-9199 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.secondary-e5f0 {
    padding: 1.5rem;
}

.logo_under_5a35 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gradient_over_def0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradient_over_def0 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;
}

.gradient_over_def0 li:last-child {
    border-bottom: none;
}

.gradient_over_def0 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.soft_df91 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft_df91 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood_e713 {
    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);
}

.wood_e713:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_0988 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion-181d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.basic_5e91 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.label_motion_f7d9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.description_6a7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.narrow_5283 {
    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);
}

.complex-ab64 {
    font-size: 2rem;
    flex-shrink: 0;
}

.up-c0ba {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout-57bf {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-fresh-534e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.up_036a {
    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);
}

.badge_complex_52cf {
    text-align: center;
}

.down_5b43 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-cool-2898 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.border_9077 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.active_cb1f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_cb1f .frame-2517 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.active_cb1f .glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert-bdbb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert-bdbb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert-bdbb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite_5c97 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite_5c97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.media_04a2 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.summary_4fab {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.frame-2517 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.hidden_1ebf {
    padding: 1.5rem;
}

.glass_97e1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overlay-in-884e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-in-884e 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;
}

.overlay-in-884e li:last-child {
    border-bottom: none;
}

.overlay-in-884e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.media_iron_9a70 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.lite_1660 {
    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);
}

.lite_1660:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-1d69 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow_5e29 {
    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);
}

.aside-b9d7 {
    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;
}

.wood-0930 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_north_d470 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-7d02 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-3d0c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort_9ebd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.huge_1d4f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.outline-8b05 {
    display: flex;
    gap: 1rem;
}

.outline-8b05 .right_8bcf {
    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;
}

.next-0a7e {
    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);
}

.static_a797 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.breadcrumb-63ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-63ea 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;
}

.breadcrumb-63ea li:last-child {
    border-bottom: none;
}

.breadcrumb-63ea li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.tertiary-6613 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tertiary-6613 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tertiary-6613 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-f916 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-f916:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-wood-965f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.fast-bd1e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.main_19e0 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tag-22af {
    font-size: 1rem;
}

.accordion-medium-a28f {
    padding: 1.5rem;
}

.highlight-f5e1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hidden_yellow_1c74 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hidden_yellow_1c74 .badge_complex_52cf {
    text-align: center;
}

.hidden_yellow_1c74 .slider-cool-2898 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hidden_yellow_1c74 .button-212e {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.text_d4fe {
    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);
}

.text_d4fe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.heading_4552 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_4552 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-copper-d53b {
    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);
}

.search-copper-d53b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper_white_83da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim_8152 {
    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);
}

.widget-dirty-b9f8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice_7282 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-old-01e2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.list_ced8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tertiary-bright-e34a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag-8413 {
    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);
}

.up-7fc5 {
    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;
}

.up-7fc5.filter_new_e396 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.up-7fc5.dynamic-fc24 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.up-7fc5.element_a68d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.up-7fc5.static_25b6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.up-7fc5.green-f072 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.shadow_tall_fa5d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.popup-1b79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading_bd77 {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture_9512 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.slider_west_2608 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider_west_2608 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;
}

.slider_west_2608 li:last-child {
    border-bottom: none;
}

.slider_west_2608 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.widget-895a {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .widget-895a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .widget-895a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content_iron_ea56 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.content_iron_ea56:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_iron_ea56.section-tiny-c929 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .content_iron_ea56.section-tiny-c929 {
        grid-column: span 3;
    }
}

.wood-2c22 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.content_iron_ea56.section-tiny-c929 .wood-2c22 {
    background: rgba(6, 182, 212, 0.1);
}

.input_42e6 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.heading_fc01 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.content_iron_ea56.section-tiny-c929 .heading_fc01 {
    color: var(--info-color);
}

.dim-0562 {
    padding: 1.5rem;
    text-align: center;
}

.carousel-glass-ee47 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.content_iron_ea56.section-tiny-c929 .carousel-glass-ee47 {
    color: var(--info-color);
}

.tag-current-7831 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.motion_d193 {
    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 */
.shade_5bc0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .shade_5bc0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail-b68e {
    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);
}

.thumbnail-b68e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-stale-e14a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down_bbe5 {
    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);
}

.modal-out-86a1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_20be {
    flex: 1;
}

.paper-8142 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner-wide-4f1f {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_7a71 {
    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);
}

.pink_e4cc {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.link-glass-5fa5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.south-6704 {
    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);
}

.tooltip_62d8 {
  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);
}

.tooltip_62d8 .badge_complex_52cf {
    text-align: center;
}

.tooltip_62d8 .down_5b43 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.tooltip_62d8 .slider-cool-2898 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.top_26b5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma_4c36 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_lower_6ae1 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.orange_6f26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_eb02 {
    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);
}

.blue-ee89 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper-2ce1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_0396 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .content_0396 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content_0396 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_active_9891 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.background_active_9891:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-in-67e8 {
    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);
}

.pattern_3e8b {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.aside_solid_ee27 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.upper_8fe6 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upper_8fe6.heading-full-cba0 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.upper_8fe6.footer_dark_074c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.upper_8fe6.content-complex-f7b5 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.light-289d {
    padding: 1.5rem;
    text-align: center;
}

.basic_c93a {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail-9682 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.thumbnail-9682 .heading-f79b {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.avatar_inner_65b6 {
    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);
}

.avatar_inner_65b6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.component_tiny_bdf0 {
  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);
}

.surface-354d {
    text-align: center;
}

.surface-354d .down_5b43 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.surface-354d .slider-cool-2898 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.cold-7e88 { text-align: center; }
.button_huge_a8ab { text-align: left; }
.static-9e73 { text-align: right; }

.brown_219a { margin-bottom: 0; }
.element-53a0 { margin-bottom: 0.5rem; }
.backdrop_c759 { margin-bottom: 1rem; }
.breadcrumb-dynamic-1964 { margin-bottom: 1.5rem; }
.outline-solid-76bd { margin-bottom: 2rem; }

.tag-basic-075d { margin-top: 0; }
.row-outer-ea19 { margin-top: 0.5rem; }
.purple_2eda { margin-top: 1rem; }
.form_bottom_1089 { margin-top: 1.5rem; }
.card_white_ed11 { margin-top: 2rem; }

.fn-hidden-37eb { display: none; }
.fn-visible-37eb { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .progress-a6ba {
        padding: 6rem 0 3rem;
    }
    
    .box_dark_820c {
        text-align: center;
    }
    
    .progress_paper_3453 {
        text-align: center;
    }
    
    .picture-8b47 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .out_9554,
    .hover-d79c,
    .pink-2fed,
    .accordion_west_574d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .progress-a6ba {
        background: none;
    }
}

/* Providers Section */
.message-cold-3bf1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero-8111 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hero-8111 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-8111 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.carousel-large-5524 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.carousel-large-5524:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner_gas_ee20 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.outline-8805 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.table-a2ce {
    list-style: none;
    padding: 0;
}

.table-a2ce li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.table-a2ce li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.west_96a1 {
    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);
}

.west_96a1 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.chip_south_c7f2 {
    padding: var(--section-padding);
}

.component_dim_e891 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_dim_e891 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stale_b300 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.stale_b300:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.primary-647b {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.orange_8616 {
    display: flex;
    flex-direction: column;
}

.rough_0425 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.south_6358 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.first-9d4c {
    color: var(--accent-color);
}

.box_7091 {
    font-size: 1.25rem;
}

.panel_ae98 {
    margin-bottom: 1rem;
}

.panel_ae98 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.chip_dynamic_b2bd {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.preview_f277 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.badge_complex_52cf {
    text-align: center;
}

.down_5b43 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-cool-2898 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.notification_2b0c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.left-4e3e {
    margin: 2rem 0;
}

.carousel-5730 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.carousel-5730 .badge-focused-4a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal_7057 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.shade-gas-1191 {
    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;
}

.shade-gas-1191:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.top-69cc {
    font-size: 2rem;
}

.mask_69e4 {
    display: flex;
    flex-direction: column;
}

.frame-static-d656 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.nav-a59b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.smooth_2dfb {
    padding: var(--section-padding);
}

.stale_157b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .stale_157b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stale_157b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered_c4b5 {
    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);
}

.hovered_c4b5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hovered_c4b5 .down_5b43 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.hovered_c4b5 .slider-cool-2898 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.hovered_c4b5 .surface_569c {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.tooltip_fresh_d206 {
    margin-top: 4rem;
}

.box_5a6a {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.green-1f19 {
    overflow-x: auto;
}

.top_fbaa {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.top_fbaa thead {
    background: var(--accent-color);
}

.top_fbaa th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.top_fbaa td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.top_fbaa tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.top_fbaa tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.frame-prev-5db1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.last_f8ce {
    max-width: 900px;
    margin: 0 auto;
}

.backdrop-plasma-8377 {
    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);
}

.backdrop-plasma-8377:hover {
    border-color: var(--accent-color);
}

.alert-a7e7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.alert-a7e7 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hidden_large_4b0d {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.backdrop-plasma-8377.fn-active-37eb .hidden_large_4b0d {
    transform: rotate(45deg);
}

.highlight_easy_75fd {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.backdrop-plasma-8377.fn-active-37eb .highlight_easy_75fd {
    max-height: 1000px;
}

.highlight_easy_75fd p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.aside-7ab4 {
    padding: var(--section-padding);
}

.fast-9563 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.progress_north_7c06 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-773d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple-773d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite_24cd {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-2dbf {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.surface-lite-218e {
    font-size: 2rem;
}

.disabled_4a10 {
    color: var(--text-white);
    margin: 0;
}

.pattern_rough_631a {
    list-style: none;
    padding: 0;
}

.pattern_rough_631a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern_rough_631a li:last-child {
    border-bottom: none;
}

.action-cc78 {
    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);
}

.action-cc78 p {
    color: var(--success-color);
    margin: 0;
}

.hidden-orange-2b6a {
    margin-top: 3rem;
}

.static_a797 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.secondary-ac7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .secondary-ac7d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.large_37a6 {
    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);
}

.gallery_9ced {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.large_37a6 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.primary-cold-0f34 {
    padding: var(--section-padding);
}

.avatar-7e2b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-7e2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outer-d75e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outer-d75e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.caption_c821 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.box-short-73d3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.red_fe73 {
    flex: 1;
}

.pagination_copper_ea5a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.list_full_f4ea {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.accordion_soft_43dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.upper-ff57 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upper-ff57:last-child {
    border-bottom: none;
}

/* Comparison Section */
.static-1b31 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.pressed-afa6 {
    padding: var(--section-padding);
}

.under_7db1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.pattern_26cf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_26cf {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_dee0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-huge-1616, .mini-85ed, .tag-fb88 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tag-fb88 {
    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 */
.hover-up-a081 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large-94e4 {
    margin: 2rem 0;
}

.sidebar-4aee {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-bottom-b7f8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stone-6f67 {
    list-style: none;
    padding: 0;
}

.stone-6f67 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;
}

.stone-6f67 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.stone-6f67 li:last-child {
    border-bottom: none;
}

.frame_top_1d34 {
    text-align: center;
    margin-top: 2rem;
}

.caption-focused-6ec2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.outline_20ca {
    padding: var(--section-padding);
}

.progress_short_964b {
    margin: 2rem 0;
}

.dynamic_e8cc {
    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) {
    .dynamic_e8cc {
        flex-direction: column;
        align-items: flex-start;
    }
}

.dynamic_e8cc:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gold_0da0 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.old-c95d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.smooth-a92b {
    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;
}

.pagination_medium_b980 {
    flex: 1;
}

.status_95e9 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.primary_iron_7cb7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.shadow-b99d {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.banner_right_f5de {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .banner_right_f5de {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.tertiary-4410 {
    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);
}

.tertiary-4410:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-4410 .down_5b43 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary-4410 .slider-cool-2898 {
    color: var(--text-gray);
    font-size: 1rem;
}

.dim-457a {
    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);
}

.avatar_medium_7e86 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.avatar_medium_7e86 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.preview-under-c743 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .preview-under-c743 {
        grid-template-columns: 1fr 1fr;
    }
}

.summary_thick_706c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_pressed_6c94 {
    margin-bottom: 1.5rem;
}

.video_pressed_6c94 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video_pressed_6c94 input,
.video_pressed_6c94 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;
}

.video_pressed_6c94 input:focus,
.video_pressed_6c94 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.link_5f4d {
    width: 100%;
    margin-top: 1rem;
}

.steel_d0cd {
    display: flex;
    align-items: center;
}

.card_e116 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.prev-84ba {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.message-47e2 {
    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;
}

.thumbnail_stone_f201 {
    color: var(--text-gray);
}

.prev-fdba {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.carousel-fresh-e31b {
    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);
}

.carousel-fresh-e31b p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.liquid_6843 {
    margin-top: 3rem;
}

.wide_69a3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.video_basic_0d9c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-ed40 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.modal_stone_3755 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal_stone_3755:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.bright-ce8a {
    padding: var(--section-padding);
}

.sort-fde0 {
    margin: 2rem 0;
}

.liquid_7a72 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.texture_0a84 {
    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;
}

.texture_0a84:hover, .texture_0a84.fn-active-37eb {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.card-out-a41e {
    display: none;
}

.card-out-a41e.fn-active-37eb {
    display: block;
}

.active-static-2aa6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_be77 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice_large_3781 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.notice_large_3781 ul {
    list-style: none;
    padding: 0;
}

.notice_large_3781 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.notice_large_3781 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.container-39fc {
    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 */
.icon_45ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shade-light-e5a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-027f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel_gold_4634 {
    color: var(--accent-color);
    margin: 0;
}

.hovered-2392 {
    display: flex;
    gap: 1.5rem;
}

.orange_ba45 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.chip-active-df02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.large-7384 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.large-7384.tag_cold_0d81 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.large-7384.photo-5996 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.large-7384.shadow-tall-8007 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.breadcrumb-focused-ac27 {
    margin-top: 2rem;
}

.liquid_e14e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.image-simple-3821 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .image-simple-3821 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.north_eaca {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.prev-46bb {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.element-94d3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero_c1d0 {
    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 */
.tag-bronze-d63d {
    padding: var(--section-padding);
}

.form_middle_688d {
    margin: 2rem 0;
}

.media_4ffc {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.container_last_6f0b {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.sidebar_9423 {
    list-style: none;
    padding: 0;
}

.sidebar_9423 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-left: 1.5rem;
    position: relative;
}

.sidebar_9423 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.sidebar_9423 li:last-child {
    border-bottom: none;
}

.gradient-75f0 {
    margin: 2rem 0;
}

.basic_0742 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.disabled-old-3710 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .disabled-old-3710 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.out-6ea6 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_full_90dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dirty_8c5f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.button_stone_1e7e {
    margin-top: 2rem;
}

.easy-0bf7 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.copper-5106 {
    list-style: none;
    padding: 0;
}

.layout-f995 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.layout-f995 a {
    color: var(--accent-color);
    text-decoration: none;
}

.layout-f995 a:hover {
    text-decoration: underline;
}

.dynamic-39fc {
    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 */
.highlight_full_e4c3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask_narrow_4f8c {
    margin: 2rem 0;
}

.summary_under_1ea4 {
    margin-bottom: 3rem;
}

.summary_under_1ea4 .focus-bottom-b7f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.article-6402 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mini-eb60 {
    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);
}

.mini-eb60:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.border_dirty_5337 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .border_dirty_5337 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main_0da8 {
    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 */
.bottom_f501 {
    padding: var(--section-padding);
}

.button_ce76 {
    margin: 2rem 0;
}

.filter_1d66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.column_f087 {
    overflow-x: auto;
    margin: 2rem 0;
}

.box_thick_98be {
    background: rgba(6, 182, 212, 0.1) !important;
}

.active_1f1d {
    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_dim_ff8c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.picture_c0be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .picture_c0be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview_5f48 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_5f48 .badge-focused-4a30 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.preview_5f48 .frame-2517 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.progress-0900 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.west-0048 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hot_53cd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot_53cd {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-in-ec04 {
    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;
}

.info-in-ec04:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.breadcrumb_0c8c {
    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);
}

.picture-full-6429 {
    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;
}

.text_2588 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current_9203 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.icon-4bd6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.hover-wood-0a56 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.middle-8b28 {
    color: var(--text-white);
    font-weight: 600;
}

.header_warm_0412 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.narrow-92b9 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.narrow-92b9 .right_8bcf {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.pink_2a3a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pink_2a3a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-a409 {
    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);
}

.notification-a409:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.notification-a409 .down_5b43 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.notification-a409 .slider-cool-2898 {
    color: var(--text-gray);
    font-size: 1rem;
}

.brown_0d31 {
    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);
}

.title-a748 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.title-a748 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.complex-4546 {
    margin: 2rem 0;
}

.thumbnail-hard-2c6c {
    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);
}

.thumbnail-hard-2c6c:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.wrapper_bronze_dc87 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thick-ff14 {
    flex: 1;
}

.pagination-d0f7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.paragraph-2731 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.mask-yellow-ff74 {
    margin: 2rem 0;
}

.breadcrumb_220b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_220b .frame-2517 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.breadcrumb_220b .glass_97e1 {
    color: var(--text-gray);
    margin: 0;
}

.footer-gold-6bd5 {
    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);
}

.footer-gold-6bd5 .center_cfd0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.progress-0900 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.media_f878 {
    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;
}

.alert-action-0ad6 {
    flex: 1;
}

.gradient_dynamic_4c46 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.title-34fb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.aside-b9d7 {
    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;
}

.first-d103 {
    flex: 1;
}

.wood-0930 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.label_north_d470 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.sort_9ebd {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.huge_1d4f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.outline-8b05 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.outline-8b05 .right_8bcf {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.next-0a7e {
    margin-top: 2rem;
}

.next-0a7e .static_a797 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.hard_b2da {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.up_036a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .up_036a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_036a .badge_complex_52cf {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_9077 {
    margin: 2rem 0;
}

.active_cb1f {
    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 */
.main-6479 {
    padding: var(--section-padding);
}

.hidden_1ebf {
    margin-top: 1rem;
}

.overlay-in-884e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.overlay-in-884e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.overlay-in-884e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.inner_5d1f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tooltip_dynamic_9762 {
    margin: 2rem 0;
}

.yellow-aaa4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.outer-42dd {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.media-orange-2a83 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.detail-white-6fc9 {
    margin: 2rem 0;
}

.title_d49b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.title_d49b .focus-bottom-b7f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_7a42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .plasma_7a42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-motion-58e7 {
    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);
}

.block_dirty_599c {
    color: var(--text-white);
    font-weight: 600;
}

.summary-east-80b3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.out-2992 {
    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);
}

.out-2992 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.fixed-059f {
    padding: var(--section-padding);
}

.dark_cac1 {
    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;
}

.dark_cac1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.link-95c5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-95c5 .gallery_9ced {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-95c5 .modal_current_e2ea {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.container-ed24 {
    flex: 1;
}

.module_2b9c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.header_55cf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_55cf li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.header_55cf li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.white-2f28 {
    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);
}

.white-2f28 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-2f28 strong {
    color: var(--warning-color);
}

/* Slots Section */
.hovered_4968 {
    padding: var(--section-padding);
}

.description_copper_fbaa {
    margin: 2rem 0;
}

/* Table Games Section */
.shadow_8b0a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-c39a {
    margin: 2rem 0;
}

.video-soft-7ea7 {
    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);
}

.video-soft-7ea7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.video-soft-7ea7 .main_19e0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.video-soft-7ea7 .highlight-f5e1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.header-pro-95a3 {
    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);
}

.header-pro-95a3 .center_cfd0 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.feature-red-ba61 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_short_526d {
    margin: 2rem 0;
}

.clean-a214 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_f2e8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel_stale_bc2f {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slow_bc56 {
    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);
}

.slow_bc56:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.slow_bc56.fn-active-37eb {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top-146d {
    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);
}

.chip-glass-7b26 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.chip-glass-7b26 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.full_71d3 {
    padding: var(--section-padding);
}

.module-bright-afa8 {
    margin: 2rem 0;
}

.module-narrow-efd4 {
    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);
}

.module-narrow-efd4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .module-narrow-efd4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.grid-d1be {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.border_first_492e {
    flex: 1;
}

.frame_7880 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.top_ba46 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.gallery_silver_359a {
    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;
}

.info_glass_9c78 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.header_large_b74a {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.chip_e8fa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.background_11d6 {
    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;
}

.background_11d6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.white-1e19 {
    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);
}

.detail_thick_35c2 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_thick_35c2 strong {
    color: var(--accent-color);
}

/* New Games Section */
.detail_548b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.breadcrumb_smooth_39f1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .breadcrumb_smooth_39f1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_smooth_39f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture-out-1a0e {
    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;
}

.texture-out-1a0e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label-north-247e {
    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;
}

.primary_lower_01f5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.dropdown_iron_5ffa {
    font-size: 2rem;
}

.dim_e4c7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.plasma-69dc {
    flex: 1;
}

.text-56fa {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pink-2b25 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dropdown-1bde {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.picture_easy_21e3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.list-dac3 {
    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;
}

.focus_ed6e {
    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;
}

.focus_ed6e:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.paragraph-af52 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.backdrop_004f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper_south_8d9e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .wrapper_south_8d9e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus_9c25 {
    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);
}

.column_7eb4 {
    color: var(--text-white);
    font-weight: 600;
}

.brown_ca50 {
    color: var(--accent-color);
    font-weight: 600;
}

.slow_4ab6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.slow_4ab6 strong {
    color: var(--accent-color);
}

/* Security Section */
.menu_e356 {
    padding: var(--section-padding);
}

/* Benefits Section */
.hard-f1bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.row-solid-89d7 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.shadow-simple-f9d8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_1542 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.tabs_clean_44e4 {
    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) {
    .tabs_clean_44e4 {
        flex-direction: column;
        gap: 1rem;
    }
}

.tabs_clean_44e4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs_clean_44e4 .aside-b9d7 {
    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;
}

.tabs_clean_44e4 .first-d103 {
    flex: 1;
}

.tabs_clean_44e4 .wood-0930 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tabs_clean_44e4 .label_north_d470 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.tiny_1175 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny_1175 .paper-8142 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tiny_1175 .bottom-cb5a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiny_1175 .bottom-cb5a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tiny_1175 .bottom-cb5a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.outline-soft-0c1b {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.carousel-prev-1328 {
    padding: var(--section-padding);
}

.dim-9d7a {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .dim-9d7a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-d8a6 {
    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);
}

.old-d8a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.old-d8a6 .tiny-5ae4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.old-d8a6 .footer_solid_f49b {
    flex: 1;
}

.old-d8a6 .table-b9c2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.old-d8a6 .form_f17f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.thumbnail_9afa {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_9afa .outline-soft-101c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_9afa .tooltip-smooth-64a5 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.thumbnail_9afa .tooltip-smooth-64a5 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);
}

.thumbnail_9afa .tooltip-smooth-64a5 li:last-child {
    border-bottom: none;
}

.thumbnail_9afa .tooltip-smooth-64a5 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;
}

.thumbnail_9afa .tooltip-smooth-64a5 li strong {
    color: var(--text-white);
}

.widget-up-12e5 {
    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);
}

.widget-up-12e5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.widget-up-12e5 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.sidebar_pressed_788f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean-4ff4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .clean-4ff4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lower_0588 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.lower_0588:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.hero-6254 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accent-d516 {
    font-size: 2rem;
}

.hidden_31e5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fixed-9d58 {
    flex: 1;
}

.disabled_7743 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_7743 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.disabled_7743 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.content-dirty-2c21 {
    margin-top: 3rem;
}

.media_4ffc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.container_last_6f0b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_9423 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_9423 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sidebar_9423 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sidebar_9423 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.row-first-3cc4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-a982 {
    margin: 2rem 0;
}

.mask-b6e5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.mask-b6e5 .focus-bottom-b7f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-4612 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .detail-4612 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.up-9275 {
    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);
}

.up-9275:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.stone_b5fa {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.caption_new_3ca1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.east-5fe4 {
    padding: var(--section-padding);
}

.tertiary_focused_9c97 {
    margin: 2rem 0;
}

.column_489a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .column_489a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column_489a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden-7f9c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hidden-7f9c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.menu-purple-2feb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.shadow_9a87 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.advanced_c70e {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.advanced_c70e.hidden-ec62 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tiny-1454 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.column_inner_e2d5 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.sidebar-easy-c041 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-9d82 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.summary-78d9 {
    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);
}

.summary-78d9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary-78d9 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.container_brown_7982 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_1f71 {
    margin: 2rem 0;
}

.description-focused-3500 {
    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) {
    .description-focused-3500 {
        flex-direction: column;
        gap: 1rem;
    }
}

.description-focused-3500:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.description-focused-3500::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);
}

.new-13a8 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.disabled-0e42 {
    flex: 1;
}

.video-3625 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.plasma_d892 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma_d892 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_dark_994c {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.out-7dd4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_126c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .table_126c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status_current_844e {
    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);
}

.summary_3bf0 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown-a95f {
    flex: 1;
}

.description_b6e1 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.easy-4d11 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.module-f6c4 {
    margin-top: 2rem;
    text-align: center;
}

.hot-08a1 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hot-08a1 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.heading_4552 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading_4552 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-copper-d53b {
    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);
}

.search-copper-d53b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.search-copper-d53b .huge_0988 {
    font-size: 2rem;
    flex-shrink: 0;
}

.search-copper-d53b .accordion-181d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.search-copper-d53b .basic_5e91 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.search-copper-d53b .label_motion_f7d9 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.notice-0026 {
    padding: var(--section-padding);
}

.dim_8152 .first-d248 {
    flex: 1;
}

/* Promo Calendar Section */
.wrapper_aac9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.backdrop-254f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-254f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_f08b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pressed_b287 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.progress_dynamic_19d1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sort-a761 {
    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);
}

.video-ac1b {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.article-copper-224e {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.black-ffa2 {
    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);
}

.black-ffa2 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.black-ffa2 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.dropdown_fresh_f616 {
    padding: var(--section-padding);
}

.cold_2793 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .cold_2793 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.element_orange_4712 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow_2f06 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.container_d6db {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container_d6db li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sort_under_9c35 {
    margin-top: 3rem;
}

.sort_under_9c35 .media_4ffc {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sort_under_9c35 .container_last_6f0b {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_under_9c35 .sidebar_9423 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sort_under_9c35 .sidebar_9423 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sort_under_9c35 .sidebar_9423 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sort_under_9c35 .sidebar_9423 li strong {
    color: var(--warning-color);
}

.solid-2286 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.solid-2286 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.wrapper_9e2a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption-98d1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-98d1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_c08e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav_c08e .focus-bottom-b7f8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.south_e7ce {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery_b0b3 {
    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);
}

.gallery_b0b3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hero_b75f {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium-7e83 {
    flex: 1;
}

.detail-dab2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.list-wood-1956 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.title-wood-8780 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.surface-dim-8c56 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.grid-c090 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .grid-c090 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-pink-1577 {
    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);
}

.feature-pink-1577:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature-paper-59a0 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.south_5146 {
    color: var(--text-gray);
    font-size: 1rem;
}

.avatar_medium_7e86 {
    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);
}

.right_041a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.right_041a strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.nav-lite-5042 { 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; }
.slow-3ca6, .popup-3f54 { max-width:100%; height:auto; }

.button_f1a7, .paper-1718, .medium-08a4 { white-space:normal; }

.box_dark_820c,
.progress_paper_3453,
.shade_5bc0,
.heading_4552,
.mask-yellow-ff74,
.content_0396 {
  flex-wrap:wrap;
}

[class*="grid"],
.grid-c090,
.column_489a,
.panel-center-fa4c {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.progress-a6ba img,
.progress_paper_3453 img,
.selected_3ca1 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.section_motion_faee, .pink_1b26,
.background_prev_4e9d, .content_steel_5e57 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.green-1f19 { width:100%; overflow-x:auto; }
.green-1f19 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.hero-8111 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-8111 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.carousel-large-5524 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.stale_157b,
.full_6f38,
.cold-7c59,
.paper-7997,
.banner_right_f5de,
.grid-c090,
.column_489a,
.panel-center-fa4c,
.component_tiny_bdf0,
.module-bright-afa8,
.hero-8111 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .stale_157b,
  .full_6f38,
  .cold-7c59,
  .paper-7997,
  .banner_right_f5de,
  .grid-c090,
  .column_489a,
  .panel-center-fa4c,
  .component_tiny_bdf0,
  .module-bright-afa8,
  .hero-8111 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.hovered_c4b5,
.tertiary-4410,
.feature-pink-1577,
.gradient_huge_24fb,
.hidden-7f9c,
.surface-354d,
.module-narrow-efd4,
.carousel-large-5524 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.info_lite_e2e2,
.white-bba1,
.detail_white_a5b9 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.info_lite_e2e2 > *,
.white-bba1 > *,
.detail_white_a5b9 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: df37 */
.widget-item-f0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
