/* {$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;
}

.gas-7e4c {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.text_9f75 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .text_9f75 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .text_9f75 {
        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 */
.easy_d6aa {
    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);
}

.photo_ff60 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .photo_ff60 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .plasma-2632 {
        grid-column: 1;
    }
    
    .texture-gas-1c66 {
        grid-column: 2;
    }
    
    .dynamic-9897 {
        grid-column: 3;
    }
}

.plasma-2632 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.plasma-2632:hover img {
    transform: scale(1.05);
}

/* Navigation */
.container-57af {
    display: none;
}

@media (min-width: 1024px) {
    .container-57af {
        display: block;
    }
}

/* Grouped Navigation */
.huge_d652 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lower_bf07 {
    position: relative;
}

.status-full-98b1 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.lower_bf07 .logo_tiny_31f9 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.logo_tiny_31f9 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.up-d5ad {
    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;
}

.up-d5ad:hover,
.up-d5ad.fn-active-fb83 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.link-bfd3 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .link-bfd3 {
        display: flex;
    }
}

/* Mobile Register Button */
.texture-gas-1c66 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .texture-gas-1c66 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.tag-hovered-4fab {
    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;
}

.tag-hovered-4fab::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 */
.dynamic-9897 {
    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) {
    .dynamic-9897 {
        display: none;
    }
}

.dynamic-9897 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.dynamic-9897.fn-active-fb83 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.dynamic-9897.fn-active-fb83 span:nth-child(2) {
    opacity: 0;
}

.dynamic-9897.fn-active-fb83 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.gallery-0629 {
    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;
}

.gallery-0629.fn-active-fb83 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.banner_fast_f8f0 {
    overflow: hidden;
}

.plasma_5566 {
    list-style: none;
    padding: 0.75rem 0;
}

.outline_39ef {
    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;
}

.outline_39ef:hover,
.outline_39ef.fn-active-fb83 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.outline_39ef.hover_advanced_fc43 {
    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;
}

.outline_39ef.hover_advanced_fc43::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 */
.selected_9a83 {
    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;
}

.grid_5653 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.grid_5653:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.cold-a6c4 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cold-a6c4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gallery_mini_94e0 {
    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;
}

.gallery_mini_94e0:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.sort_d692 {
    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;
}

.box-hovered-1a89 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.box-hovered-1a89:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple-ed9d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.purple-ed9d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.current-ea3b {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.current-ea3b: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);
}

.heading-16e5 {
    font-size: 1em;
    font-weight: 700;
}

.primary-9c72 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.badge-8559 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.badge-8559::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;
}

.hero_action_056b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero_action_056b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hovered_74c1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.message_89df {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tall-4370 {
    margin-bottom: 2rem;
}

.main_99d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .main_99d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden-8b56 {
    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);
}

.copper-bdff {
    font-size: 1.5rem;
}

.image_2e10 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.huge_f1f2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-static-1694 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.filter-static-1694:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.link_fluid_a361 {
    text-align: center;
    margin-bottom: 3rem;
}

.photo-lower-8efa {
    margin-bottom: 1rem;
}

.center-9c13 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-1b33 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel-1b33 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .carousel-1b33.filter-a8f7 {
        direction: rtl;
    }
    
    .carousel-1b33.filter-a8f7 > * {
        direction: ltr;
    }
}

.link-cc80 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.link-cc80:first-child {
    margin-top: 0;
}

.old-2f92 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.status-outer-0f59 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.status-outer-0f59:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.slider_bottom_1400 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider_bottom_1400 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.modal_west_a54b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_paper_0074 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.active_static_f2b2 {
    list-style: none;
}

.active_static_f2b2 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.active_static_f2b2 li:last-child {
    border-bottom: none;
}

/* Games Features */
.element_warm_ffc8 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.tertiary-fd9c {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.stone-901b {
    font-size: 2rem;
    flex-shrink: 0;
}

.medium-a9d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.pattern_gas_b7bb {
    margin: 2rem 0;
}

.hard_f59f {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.title_2bc4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.video-9bc4 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.glass_36e4 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.out_85a7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .out_85a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-968e {
    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);
}

.steel-968e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.header-a90e {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.row-a5f6 {
    font-size: 1.5rem;
}

.content-c593 {
    color: var(--accent-color);
    margin: 0;
}

.outline_medium_c1a4 {
    list-style: none;
}

.outline_medium_c1a4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.outline_medium_c1a4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.top_4fef {
    margin: 2rem 0;
}

.dropdown-fixed-75f3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.wood_fabf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .wood_fabf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_d7b0 {
    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);
}

.top_cc08 {
    font-size: 1.25rem;
}

.gas_7d1b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.button-bronze-e5a4,
.primary_focused_f563 {
    text-align: center;
    margin: 2rem 0;
}

.sort-6988,
.sort-c0ef {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.pro_93ce {
    margin: 2rem 0;
    text-align: center;
}

.column_black_426c {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.column_black_426c::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;
}

.copper_e5dc {
    position: relative;
    z-index: 1;
}

.hover_5f8c {
    margin-bottom: 1rem;
}

.section-408e {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.warm-894c {
    margin-bottom: 3rem;
}

.notification_fixed_291b {
    margin-top: 3rem;
}

.dynamic-0f25 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dynamic-0f25 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dynamic-0f25 .hidden-8b56 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.light-b66f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery-lite-704d {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.tall_79bb {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.pressed_f6b7 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .pressed_f6b7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pressed_f6b7 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.main_pink_c8e5 {
    margin-bottom: 1rem;
}

.basic-f647 img {
    margin-bottom: 1rem;
}

.table_hovered_1b21 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-pressed-584a {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.badge_cdfe {
    list-style: none;
}

.badge_cdfe li {
    margin-bottom: 0.5rem;
}

.badge_cdfe a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.badge_cdfe a:hover {
    color: var(--accent-color);
}

.mini_ac6d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-dark-e2f6 {
    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);
}

.nav-dark-e2f6:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.link-8463 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.link-8463 p {
    margin-bottom: 0.25rem;
}

.over-45e6 {
    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) {
    .over-45e6 {
        flex-direction: row;
    }
}

.gallery_aee6 {
    text-align: center;
}

@media (min-width: 768px) {
    .gallery_aee6 {
        text-align: left;
    }
}

.gallery_aee6 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.link_6285 {
    font-size: 0.75rem !important;
}

.icon-eb0f {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter_bf21 {
    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);
    }
}

.disabled_af42 {
    animation: fadeInUp 0.6s ease-out;
}

.detail_lite_fb39 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.accent-86f0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-86f0 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.pattern_bca6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern_bca6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_bright_6f80 {
    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);
}

.tabs_bright_6f80 .stone-901b {
    font-size: 1.25rem;
}

.tabs_bright_6f80 .orange-221e {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.message_f0a0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .message_f0a0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.caption_dark_be32 {
    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);
}

.caption_dark_be32:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video-738d {
    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);
}

.active_7773 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disabled-smooth-82cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_457d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_easy_e550 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_easy_e550 .medium-a9d7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_easy_e550 .shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-short-6c32 {
    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);
}

.simple-be55 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.simple-be55 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.simple-be55 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.smooth_f2da {
    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);
}

.focus-silver-89f3 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.widget_under_8362 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget_under_8362 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.widget_under_8362 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);
}

.widget_under_8362 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.widget_under_8362 input::placeholder {
    color: var(--text-muted);
}

.middle_d649 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fluid_8766 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.fluid_8766 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.bright-56f8 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.bright-56f8:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.wood_fabf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wood_fabf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.widget_d7b0 {
    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);
}

.widget_d7b0 .top_cc08 {
    font-size: 1.25rem;
}

.widget_d7b0 .gas_7d1b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.brown_aa42 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-485c {
    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);
}

.small-485c .stone-901b {
    font-size: 2rem;
    flex-shrink: 0;
}

.small-485c .medium-a9d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.small-485c .shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article-dark-b9c8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_down_5528 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form_down_5528 .box_f39c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form_down_5528 .complex-bf60 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-8bd0 {
    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);
}

.short_c86b {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .short_c86b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.narrow-2ad9 {
    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);
}

.narrow-2ad9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide-6967 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.alert_3da3 {
    flex: 1;
}

.pink-20b4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.section-0551 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.border_solid_557c {
    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);
}

.border_solid_557c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.left_04ba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .left_04ba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_easy_365d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message_easy_365d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav-upper-5907 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover-static-09d4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label-new-105a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.card-3a0d {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.bottom_8134 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tabs_right_da78 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.media_4fbb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.media_4fbb .background-clean-3525 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media_4fbb .detail-east-6e58 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_5a37 {
    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);
}

.status-0b4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_d4eb {
    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);
}

.border_d4eb .stone-901b {
    font-size: 2rem;
    flex-shrink: 0;
}

.border_d4eb .medium-a9d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_d4eb .shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent-1210 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent-1210 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.button_9646 {
    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);
}

.button_9646:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.form_3b2c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_3b2c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dirty_78a3 {
    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);
}

.dirty_78a3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.breadcrumb_b131 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message-stone-a403 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.title_2bc4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.green-b57d {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.table-e3b0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gradient_156b {
    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);
}

.gradient_156b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fluid-a01e {
    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);
}

.pink-c2e0 {
    flex: 1;
}

.top_b34d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.video_inner_f9f9 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery_6504 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery-ad1f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.status_7c3a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status_7c3a .box_f39c {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.status_7c3a .complex-bf60 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_focused_f563 {
    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);
}

.plasma-1fff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma-1fff {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.heading-south-2716 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .heading-south-2716 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple_9b48 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.simple_9b48:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tabs_836c {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-inner-6114 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.right-3061 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.lite_13cb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.active_59a9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.first-bfa4 {
    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);
}

.tooltip_black_d863 {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup_advanced_ad48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.soft-47e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status-0b4b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border_d4eb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.border_d4eb .medium-a9d7 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border_d4eb .shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shade-liquid-872b {
    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);
}

.aside_49af {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_49af {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_49af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.smooth_55a9 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.smooth_55a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-black-ca5e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.info_warm_72d4 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary_6d2b {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.north-0695 {
    padding: 1.5rem;
}

.highlight_26d8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.simple_65d5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple_65d5 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;
}

.simple_65d5 li:last-child {
    border-bottom: none;
}

.simple_65d5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.hovered_f908 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hovered_f908 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo_gold_3e0a {
    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);
}

.photo_gold_3e0a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-9393 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table-f028 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label_focused_c061 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.west_2f92 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-d5b5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph-next-0624 {
    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);
}

.description_fixed_c818 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wood-503d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_13d0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.frame_7fb8 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer_soft_17c0 {
    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);
}

.logo-64ab {
    text-align: center;
}

.mini_f0fd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stone-3b90 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.disabled_fixed_6f7c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-d007 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-d007 .medium-a9d7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image-d007 .shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-tiny-b81c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .link-tiny-b81c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-tiny-b81c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-8bc3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask-8bc3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent-right-d754 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.bright_a101 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.medium-a9d7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.cool-327e {
    padding: 1.5rem;
}

.shadow-fluid-66e7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget_220b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_220b 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;
}

.widget_220b li:last-child {
    border-bottom: none;
}

.widget_220b li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.wrapper_old_96cf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.glass-87a2 {
    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);
}

.glass-87a2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-3a88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.popup_solid_9f16 {
    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);
}

.video-738d {
    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;
}

.active_7773 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-smooth-82cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-bronze-e61f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_fixed_a353 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.basic-5830 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-2345 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.west_ce09 {
    display: flex;
    gap: 1rem;
}

.west_ce09 .component-4d23 {
    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;
}

.text-341d {
    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);
}

.frame_wood_de27 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accent-9bb8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-9bb8 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;
}

.accent-9bb8 li:last-child {
    border-bottom: none;
}

.accent-9bb8 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.highlight-glass-be27 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-glass-be27 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight-glass-be27 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_wide_7fba {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.secondary_wide_7fba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.warm-6da1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.header-bronze-7ddd {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.background-clean-3525 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.input_white_5a52 {
    font-size: 1rem;
}

.component_d8c1 {
    padding: 1.5rem;
}

.detail-east-6e58 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hard_3b75 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hard_3b75 .logo-64ab {
    text-align: center;
}

.hard_3b75 .stone-3b90 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hard_3b75 .border-6ffe {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.notice_new_acf5 {
    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);
}

.notice_new_acf5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.banner_hovered_3982 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_hovered_3982 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_551f {
    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);
}

.label_551f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.box_1c41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern-simple-29df {
    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);
}

.white-f569 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick-8f05 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort-ca63 {
    color: var(--text-gray);
    line-height: 1.6;
}

.aside-active-67bd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.small-5c1f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tooltip_north_e602 {
    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);
}

.carousel_314f {
    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;
}

.carousel_314f.layout_pressed_7bc2 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.carousel_314f.backdrop_e597 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.carousel_314f.hard-606c {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.carousel_314f.out-162c {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.carousel_314f.hard_99d5 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.summary_warm_4079 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hero_67c3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message-65df {
    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);
}

.thumbnail_788b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.article-dark-b9c8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-dark-b9c8 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;
}

.article-dark-b9c8 li:last-child {
    border-bottom: none;
}

.article-dark-b9c8 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.media_purple_6f15 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media_purple_6f15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media_purple_6f15 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_small_f282 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.image_small_f282:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image_small_f282.message_purple_531e {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .image_small_f282.message_purple_531e {
        grid-column: span 3;
    }
}

.label_5909 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.image_small_f282.message_purple_531e .label_5909 {
    background: rgba(6, 182, 212, 0.1);
}

.pagination-a228 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.simple_fd08 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.image_small_f282.message_purple_531e .simple_fd08 {
    color: var(--info-color);
}

.chip-69d8 {
    padding: 1.5rem;
    text-align: center;
}

.sort_3ee1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.image_small_f282.message_purple_531e .sort_3ee1 {
    color: var(--info-color);
}

.liquid_4898 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.overlay-37b2 {
    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 */
.box_light_c396 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_light_c396 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple-61cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.simple-61cd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.current-09f1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small-485c {
    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);
}

.top_cc08 {
    font-size: 2rem;
    flex-shrink: 0;
}

.inner_40fd {
    flex: 1;
}

.dropdown-fixed-75f3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_pro_c266 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_blue_808e {
    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);
}

.badge-71d7 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.dark-9e9e {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter_bf21 {
    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);
}

.modal_db9c {
  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);
}

.modal_db9c .logo-64ab {
    text-align: center;
}

.modal_db9c .mini_f0fd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.modal_db9c .stone-3b90 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon_780b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pro_a6f3 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.notification-4183 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.nav-tall-9db5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-bb5b {
    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);
}

.section-middle-6673 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.orange_af0c {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow_b22e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .narrow_b22e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .narrow_b22e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selected_c848 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.selected_c848:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview_06a4 {
    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);
}

.background-middle-b135 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange-9eeb {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.under_2898 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.under_2898.badge-pressed-1a47 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.under_2898.slider-01c3 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.under_2898.modal_in_ac25 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.module_086c {
    padding: 1.5rem;
    text-align: center;
}

.disabled_f314 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-lite-357b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-lite-357b .text_86b3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.picture_fast_d4b3 {
    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);
}

.picture_fast_d4b3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.item_8e6d {
  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);
}

.hidden_mini_9790 {
    text-align: center;
}

.hidden_mini_9790 .mini_f0fd {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.hidden_mini_9790 .stone-3b90 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.border-bottom-bc60 { text-align: center; }
.popup_pink_fd36 { text-align: left; }
.under-501e { text-align: right; }

.secondary_up_7340 { margin-bottom: 0; }
.hero_small_c9ca { margin-bottom: 0.5rem; }
.prev-49ce { margin-bottom: 1rem; }
.grid-out-0e36 { margin-bottom: 1.5rem; }
.media-hard-ec55 { margin-bottom: 2rem; }

.chip-glass-e7e2 { margin-top: 0; }
.block_4db3 { margin-top: 0.5rem; }
.info-de63 { margin-top: 1rem; }
.dropdown-fb56 { margin-top: 1.5rem; }
.dynamic_225c { margin-top: 2rem; }

.fn-hidden-fb83 { display: none; }
.fn-visible-fb83 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .badge-8559 {
        padding: 6rem 0 3rem;
    }
    
    .hero_action_056b {
        text-align: center;
    }
    
    .carousel-1b33 {
        text-align: center;
    }
    
    .main_99d1 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .easy_d6aa,
    .gallery-0629,
    .column_black_426c,
    .tall_79bb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .badge-8559 {
        background: none;
    }
}

/* Providers Section */
.copper_9ba0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image-9304 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-9304 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .image-9304 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container_clean_c701 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.container_clean_c701:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.up-706b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.filter_779d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.solid-44b1 {
    list-style: none;
    padding: 0;
}

.solid-44b1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.solid-44b1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.info-d1ff {
    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);
}

.info-d1ff p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.west_e0b4 {
    padding: var(--section-padding);
}

.column_purple_2635 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column_purple_2635 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.warm_3918 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.warm_3918:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.popup-fast-dc84 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.nav-easy-230c {
    display: flex;
    flex-direction: column;
}

.shadow-easy-bb39 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.complex-3a9e {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.yellow_d538 {
    color: var(--accent-color);
}

.slow_a1a9 {
    font-size: 1.25rem;
}

.simple-d633 {
    margin-bottom: 1rem;
}

.simple-d633 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.status_focused_6b5f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.border-2368 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.logo-64ab {
    text-align: center;
}

.mini_f0fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stone-3b90 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.cool_58e6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-brown-c447 {
    margin: 2rem 0;
}

.description_simple_144c {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.description_simple_144c .stone-901b {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_c26b {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.clean-6910 {
    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;
}

.clean-6910:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs_hovered_3320 {
    font-size: 2rem;
}

.sort_paper_8fab {
    display: flex;
    flex-direction: column;
}

.section-in-985e {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dirty-bfbe {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.popup_ba52 {
    padding: var(--section-padding);
}

.fast_4c79 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .fast_4c79 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fast_4c79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary-0e58 {
    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);
}

.secondary-0e58:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.secondary-0e58 .mini_f0fd {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.secondary-0e58 .stone-3b90 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.secondary-0e58 .content-f2a5 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.table_44e7 {
    margin-top: 4rem;
}

.steel_f794 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.component-f3e9 {
    overflow-x: auto;
}

.icon_motion_1918 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.icon_motion_1918 thead {
    background: var(--accent-color);
}

.icon_motion_1918 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.icon_motion_1918 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_motion_1918 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.icon_motion_1918 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.backdrop_4b5a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-fixed-fd64 {
    max-width: 900px;
    margin: 0 auto;
}

.narrow_370f {
    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);
}

.narrow_370f:hover {
    border-color: var(--accent-color);
}

.label_green_69c2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.label_green_69c2 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.large-952e {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.narrow_370f.fn-active-fb83 .large-952e {
    transform: rotate(45deg);
}

.warm_ff9c {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.narrow_370f.fn-active-fb83 .warm_ff9c {
    max-height: 1000px;
}

.warm_ff9c p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.article_0be0 {
    padding: var(--section-padding);
}

.simple-be55 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.center-1ef4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget_prev_50e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .widget_prev_50e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mask_dirty_6a59 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_8bc3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-6aa7 {
    font-size: 2rem;
}

.icon_7496 {
    color: var(--text-white);
    margin: 0;
}

.media_abc0 {
    list-style: none;
    padding: 0;
}

.media_abc0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media_abc0 li:last-child {
    border-bottom: none;
}

.content_fresh_eea7 {
    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);
}

.content_fresh_eea7 p {
    color: var(--success-color);
    margin: 0;
}

.hover-c579 {
    margin-top: 3rem;
}

.frame_wood_de27 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.border_pink_1def {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .border_pink_1def {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-blue-f18a {
    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);
}

.fluid_36b4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.main-blue-f18a p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.button-7ad8 {
    padding: var(--section-padding);
}

.glass_e28a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .glass_e28a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-cb80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hard-cb80:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.avatar_c91a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.carousel-light-6355 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.active-c99c {
    flex: 1;
}

.focused_09db {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background_medium_b4ed {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.dark-66e8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-motion-1e27 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.box-motion-1e27:last-child {
    border-bottom: none;
}

/* Comparison Section */
.disabled_fresh_d883 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.overlay-smooth-4b66 {
    padding: var(--section-padding);
}

.soft_1b21 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.title_prev_cb64 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .title_prev_cb64 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-fefb {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup_3581, .block_hovered_20d0, .brown-b41a {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.brown-b41a {
    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 */
.hard_05b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_in_c0d5 {
    margin: 2rem 0;
}

.pressed_b322 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.last-cfcb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.slow-9b2a {
    list-style: none;
    padding: 0;
}

.slow-9b2a 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;
}

.slow-9b2a li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.slow-9b2a li:last-child {
    border-bottom: none;
}

.tag_easy_2911 {
    text-align: center;
    margin-top: 2rem;
}

.hidden-glass-827f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.green-10be {
    padding: var(--section-padding);
}

.summary_ab5e {
    margin: 2rem 0;
}

.component_simple_f6c5 {
    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) {
    .component_simple_f6c5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.component_simple_f6c5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pattern_prev_c738 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.clean-df3e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.disabled_paper_17b0 {
    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;
}

.picture-b78e {
    flex: 1;
}

.soft-2617 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.background-7741 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.left-e2d6 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.black-af89 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .black-af89 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.slider-north-ef2c {
    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);
}

.slider-north-ef2c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider-north-ef2c .mini_f0fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-north-ef2c .stone-3b90 {
    color: var(--text-gray);
    font-size: 1rem;
}

.texture-top-759c {
    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);
}

.focus_light_d01a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.focus_light_d01a strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.notice_thick_fedc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .notice_thick_fedc {
        grid-template-columns: 1fr 1fr;
    }
}

.gallery_selected_ec23 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-full-d79e {
    margin-bottom: 1.5rem;
}

.nav-full-d79e label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nav-full-d79e input,
.nav-full-d79e 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;
}

.nav-full-d79e input:focus,
.nav-full-d79e select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.alert_9351 {
    width: 100%;
    margin-top: 1rem;
}

.info_63d8 {
    display: flex;
    align-items: center;
}

.paper-9b94 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.gas_280a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.tooltip_mini_b6ec {
    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;
}

.module-e32d {
    color: var(--text-gray);
}

.simple-fd02 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.tabs_e37c {
    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);
}

.tabs_e37c p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.badge_f4fe {
    margin-top: 3rem;
}

.info_east_965d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.surface_cb61 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.up_9958 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.dark_1c18 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark_1c18:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.frame-9f02 {
    padding: var(--section-padding);
}

.search-c9e1 {
    margin: 2rem 0;
}

.advanced_66fe {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.rough-19b3 {
    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;
}

.rough-19b3:hover, .rough-19b3.fn-active-fb83 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.tooltip-solid-5ef7 {
    display: none;
}

.tooltip-solid-5ef7.fn-active-fb83 {
    display: block;
}

.tall-c245 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery-pink-9517 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.active_5a5a h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.active_5a5a ul {
    list-style: none;
    padding: 0;
}

.active_5a5a ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.active_5a5a ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.content-510e {
    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 */
.thumbnail_clean_6a5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.link_silver_00d8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.title-prev-f112 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.selected_32a8 {
    color: var(--accent-color);
    margin: 0;
}

.lite-37b6 {
    display: flex;
    gap: 1.5rem;
}

.badge-77b2 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.center_b17a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.paragraph-simple-78c0 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph-simple-78c0.footer-42d5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.paragraph-simple-78c0.item-a693 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.paragraph-simple-78c0.content_gas_99ad {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.under_8571 {
    margin-top: 2rem;
}

.search-f14d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.current_8c73 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .current_8c73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail_60f1 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.block-huge-bd3a {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.list_hard_98b8 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.lower_4193 {
    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 */
.gold-2621 {
    padding: var(--section-padding);
}

.video_0d1c {
    margin: 2rem 0;
}

.frame-over-76dd {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.hard-bcad {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.logo-over-1b1a {
    list-style: none;
    padding: 0;
}

.logo-over-1b1a 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;
}

.logo-over-1b1a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.logo-over-1b1a li:last-child {
    border-bottom: none;
}

.tabs-complex-958a {
    margin: 2rem 0;
}

.media_pressed_5d12 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.red-685b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .red-685b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.accent_1442 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gradient-4378 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pink_dc57 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.lower_47cb {
    margin-top: 2rem;
}

.pink-20b4 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.focused-65c2 {
    list-style: none;
    padding: 0;
}

.surface-3390 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.surface-3390 a {
    color: var(--accent-color);
    text-decoration: none;
}

.surface-3390 a:hover {
    text-decoration: underline;
}

.accordion_cd80 {
    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 */
.photo_e948 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-inner-42c3 {
    margin: 2rem 0;
}

.white_e211 {
    margin-bottom: 3rem;
}

.white_e211 .last-cfcb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.prev_f2e4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.upper-1d62 {
    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);
}

.upper-1d62:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.current_141f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .current_141f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav_under_e378 {
    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 */
.right-66e1 {
    padding: var(--section-padding);
}

.widget-blue-2407 {
    margin: 2rem 0;
}

.pattern_cool_2704 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.up-78de {
    overflow-x: auto;
    margin: 2rem 0;
}

.modal-new-8724 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.bronze_03f0 {
    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;
}

.component-5dbb {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.liquid_dd7d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .liquid_dd7d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary_d02b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.summary_d02b .stone-901b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.summary_d02b .medium-a9d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.mask_3765 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.badge-eb81 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_7749 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gradient_7749 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_2eb3 {
    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;
}

.photo_2eb3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.focus_f356 {
    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);
}

.media_dirty_fabe {
    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;
}

.north-20d8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.red-8e9d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.brown_a2e5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.active-7483 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup_667c {
    color: var(--text-white);
    font-weight: 600;
}

.highlight-da0f {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.paragraph_slow_336e {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paragraph_slow_336e .component-4d23 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.highlight-0303 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight-0303 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_red_564f {
    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);
}

.backdrop_red_564f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.backdrop_red_564f .mini_f0fd {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_red_564f .stone-3b90 {
    color: var(--text-gray);
    font-size: 1rem;
}

.motion_c8c9 {
    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);
}

.component-orange-3b31 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.component-orange-3b31 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.active_59a9 {
    margin: 2rem 0;
}

.first-bfa4 {
    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);
}

.first-bfa4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.tooltip_black_d863 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thick-41ca {
    flex: 1;
}

.popup_advanced_ad48 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.soft-47e7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.status-0b4b {
    margin: 2rem 0;
}

.border_d4eb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.border_d4eb .medium-a9d7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.border_d4eb .shadow-fluid-66e7 {
    color: var(--text-gray);
    margin: 0;
}

.shade-liquid-872b {
    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);
}

.shade-liquid-872b .sort-6988 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.mask_3765 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.fluid-a01e {
    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;
}

.pink-c2e0 {
    flex: 1;
}

.video_inner_f9f9 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.gallery_6504 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.video-738d {
    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;
}

.lower-7f88 {
    flex: 1;
}

.active_7773 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.disabled-smooth-82cc {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.basic-5830 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.hard-2345 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.west_ce09 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.west_ce09 .component-4d23 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.text-341d {
    margin-top: 2rem;
}

.text-341d .frame_wood_de27 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.black-4c61 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_soft_17c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .footer_soft_17c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_soft_17c0 .logo-64ab {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_fixed_6f7c {
    margin: 2rem 0;
}

.image-d007 {
    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 */
.highlight_black_d20c {
    padding: var(--section-padding);
}

.cool-327e {
    margin-top: 1rem;
}

.widget_220b {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.widget_220b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.widget_220b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.highlight-hovered-a14a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.primary_south_fcdd {
    margin: 2rem 0;
}

.pattern_1971 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.surface_5377 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.media-bronze-c655 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.module-full-99df {
    margin: 2rem 0;
}

.video-inner-dad2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.video-inner-dad2 .last-cfcb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_light_ad2a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .list_light_ad2a {
        grid-template-columns: repeat(2, 1fr);
    }
}

.preview_north_3417 {
    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);
}

.section_static_80a2 {
    color: var(--text-white);
    font-weight: 600;
}

.west-774b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.carousel-d891 {
    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);
}

.carousel-d891 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.smooth-6791 {
    padding: var(--section-padding);
}

.middle-a200 {
    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;
}

.middle-a200:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.module_up_4076 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module_up_4076 .fluid_36b4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.module_up_4076 .hot_ceb4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.footer-6c94 {
    flex: 1;
}

.under-176e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dirty_4b06 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dirty_4b06 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.dirty_4b06 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.layout_929b {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.layout_929b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_929b strong {
    color: var(--warning-color);
}

/* Slots Section */
.grid_e269 {
    padding: var(--section-padding);
}

.bottom_8134 {
    margin: 2rem 0;
}

/* Table Games Section */
.grid_copper_1e41 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_right_da78 {
    margin: 2rem 0;
}

.media_4fbb {
    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);
}

.media_4fbb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.media_4fbb .background-clean-3525 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.media_4fbb .detail-east-6e58 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.outline_5a37 {
    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);
}

.outline_5a37 .sort-6988 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.bright-8212 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.fast-4e20 {
    margin: 2rem 0;
}

.label-mini-948b {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.detail-full-b683 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination-0cc8 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.description_top_efc9 {
    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);
}

.description_top_efc9:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.description_top_efc9.fn-active-fb83 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-cold-f953 {
    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);
}

.gallery_17c3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery_17c3 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.hover-green-41b9 {
    padding: var(--section-padding);
}

.full-d41d {
    margin: 2rem 0;
}

.sidebar_north_fcaf {
    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);
}

.sidebar_north_fcaf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .sidebar_north_fcaf {
        flex-direction: column;
        align-items: flex-start;
    }
}

.accent-large-7ec4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.in-c978 {
    flex: 1;
}

.preview-soft-64eb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb-steel-69e0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.prev_b63f {
    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;
}

.heading-solid-1886 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.frame_mini_2a83 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.selected_bc4d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section-north-2af3 {
    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;
}

.section-north-2af3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.card_brown_8c97 {
    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);
}

.bright_b1de {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.bright_b1de strong {
    color: var(--accent-color);
}

/* New Games Section */
.label_outer_c60c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input_dynamic_bd73 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input_dynamic_bd73 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_dynamic_bd73 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard_99cb {
    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;
}

.hard_99cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.link-bottom-d38b {
    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;
}

.pro_ef47 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.south-b2fe {
    font-size: 2rem;
}

.chip-lite-0d17 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.tertiary_dim_7d41 {
    flex: 1;
}

.video_e461 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.shadow_2664 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.highlight_steel_0785 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.fresh-7f6b {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.header_gas_66dc {
    padding: 0.375rem 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
}

.complex-f584 {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-normal);
    display: block;
}

.complex-f584:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.chip_19dd {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.cold-59a9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.description-medium-9652 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .description-medium-9652 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_silver_1ff2 {
    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);
}

.element_new_8af4 {
    color: var(--text-white);
    font-weight: 600;
}

.wood_e03b {
    color: var(--accent-color);
    font-weight: 600;
}

.tabs-pink-3770 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tabs-pink-3770 strong {
    color: var(--accent-color);
}

/* Security Section */
.top_409b {
    padding: var(--section-padding);
}

/* Benefits Section */
.article_white_aa82 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.picture_255e {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.up-0333 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-plasma-6270 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.card-warm-0ed5 {
    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) {
    .card-warm-0ed5 {
        flex-direction: column;
        gap: 1rem;
    }
}

.card-warm-0ed5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.card-warm-0ed5 .video-738d {
    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;
}

.card-warm-0ed5 .lower-7f88 {
    flex: 1;
}

.card-warm-0ed5 .active_7773 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-warm-0ed5 .disabled-smooth-82cc {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.accent-small-bda5 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-small-bda5 .dropdown-fixed-75f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.accent-small-bda5 .brown_aa42 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-small-bda5 .brown_aa42 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent-small-bda5 .brown_aa42 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.component_424d {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.feature-rough-2f6f {
    padding: var(--section-padding);
}

.current-5b3e {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .current-5b3e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dirty-cff6 {
    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);
}

.dirty-cff6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.dirty-cff6 .dropdown_e0f6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dirty-cff6 .caption_first_6d13 {
    flex: 1;
}

.dirty-cff6 .box_f39c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dirty-cff6 .picture-left-85b0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.main-8b68 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-8b68 .header-easy-a442 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main-8b68 .label-warm-f184 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.main-8b68 .label-warm-f184 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);
}

.main-8b68 .label-warm-f184 li:last-child {
    border-bottom: none;
}

.main-8b68 .label-warm-f184 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;
}

.main-8b68 .label-warm-f184 li strong {
    color: var(--text-white);
}

.section_outer_0159 {
    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);
}

.section_outer_0159 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.section_outer_0159 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.text_middle_7131 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-33a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .secondary-33a7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.title_c8b1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.title_c8b1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gas-77a0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-bottom-e370 {
    font-size: 2rem;
}

.chip-c1fa {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.accordion-46a1 {
    flex: 1;
}

.pro_f49d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro_f49d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pro_f49d li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.chip-fd4c {
    margin-top: 3rem;
}

.frame-over-76dd {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hard-bcad {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-over-1b1a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-over-1b1a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.logo-over-1b1a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.logo-over-1b1a li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.purple_cd58 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient_5d03 {
    margin: 2rem 0;
}

.logo_hard_06de {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.logo_hard_06de .last-cfcb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery-55f3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-55f3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card_fb9b {
    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);
}

.card_fb9b:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.info_complex_e06c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.yellow_117d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.liquid_a060 {
    padding: var(--section-padding);
}

.gold-c78d {
    margin: 2rem 0;
}

.frame-rough-1df3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .frame-rough-1df3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .frame-rough-1df3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active-3bab {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.active-3bab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.popup_south_3037 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.paper-0674 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.dim-eaad {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dim-eaad.stone_1977 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hero-stale-3ce9 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.carousel_wood_1e0e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.mini_8a7c {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.surface-4a33 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card_e694 {
    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);
}

.card_e694 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.card_e694 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.old-d29d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pro_c278 {
    margin: 2rem 0;
}

.popup-dim-fe58 {
    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) {
    .popup-dim-fe58 {
        flex-direction: column;
        gap: 1rem;
    }
}

.popup-dim-fe58:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.popup-dim-fe58::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);
}

.link_e708 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.caption_stale_b6de {
    flex: 1;
}

.filter-d041 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.progress_dynamic_e965 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress_dynamic_e965 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow-middle-ee6f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-08fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column_wood_0078 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .column_wood_0078 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy-12a5 {
    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);
}

.panel-c5d9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.clean-7ebf {
    flex: 1;
}

.carousel-2e89 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.fixed_d342 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.east_db41 {
    margin-top: 2rem;
    text-align: center;
}

.accordion_b1d0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accordion_b1d0 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.banner_hovered_3982 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_hovered_3982 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.label_551f {
    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);
}

.label_551f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.label_551f .tag-9393 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_551f .table-f028 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.label_551f .label_focused_c061 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.label_551f .west_2f92 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.disabled-black-999b {
    padding: var(--section-padding);
}

.pattern-simple-29df .bottom_c94c {
    flex: 1;
}

/* Promo Calendar Section */
.dynamic-b034 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-87cc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pattern-87cc {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_90d7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shadow-0def {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.under_817c {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-warm-2b22 {
    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);
}

.footer-3416 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover_f824 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.surface-d9c8 {
    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);
}

.surface-d9c8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.surface-d9c8 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.card_3386 {
    padding: var(--section-padding);
}

.grid-dark-297f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .grid-dark-297f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-rough-6d13 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fluid_8eb1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.in_1627 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.in_1627 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-pro-6c31 {
    margin-top: 3rem;
}

.panel-pro-6c31 .frame-over-76dd {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.panel-pro-6c31 .hard-bcad {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel-pro-6c31 .logo-over-1b1a {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.panel-pro-6c31 .logo-over-1b1a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.panel-pro-6c31 .logo-over-1b1a li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.panel-pro-6c31 .logo-over-1b1a li strong {
    color: var(--warning-color);
}

.pattern-yellow-fc41 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pattern-yellow-fc41 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.photo_cold_fb62 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.purple-5422 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple-5422 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-left-0ab6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-left-0ab6 .last-cfcb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.hover-selected-b8fa {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress_outer_a586 {
    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);
}

.progress_outer_a586:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.menu_da42 {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth_b4ce {
    flex: 1;
}

.section-gold-3e9c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.nav_stone_1a4a {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.dynamic-1b0a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.clean_17d5 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.stale-5ffe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .stale-5ffe {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-dynamic-8d6d {
    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);
}

.photo-dynamic-8d6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider-cea2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background-044d {
    color: var(--text-gray);
    font-size: 1rem;
}

.focus_light_d01a {
    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);
}

.focus_short_dd30 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.focus_short_dd30 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.text_9f75 { 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; }
.filter-static-1694, .status-outer-0f59 { max-width:100%; height:auto; }

.selected_9a83, .gallery_mini_94e0, .sort_d692 { white-space:normal; }

.hero_action_056b,
.carousel-1b33,
.box_light_c396,
.banner_hovered_3982,
.status-0b4b,
.narrow_b22e {
  flex-wrap:wrap;
}

[class*="grid"],
.stale-5ffe,
.frame-rough-1df3,
.dynamic-0f25 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.badge-8559 img,
.carousel-1b33 img,
.huge_f1f2 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hovered_74c1, .message_89df,
.photo-lower-8efa, .center-9c13 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.component-f3e9 { width:100%; overflow-x:auto; }
.component-f3e9 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.image-9304 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .image-9304 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.container_clean_c701 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.fast_4c79,
.layout_hovered_f173,
.module_7be5,
.tag_151e,
.black-af89,
.stale-5ffe,
.frame-rough-1df3,
.dynamic-0f25,
.item_8e6d,
.full-d41d,
.image-9304 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .fast_4c79,
  .layout_hovered_f173,
  .module_7be5,
  .tag_151e,
  .black-af89,
  .stale-5ffe,
  .frame-rough-1df3,
  .dynamic-0f25,
  .item_8e6d,
  .full-d41d,
  .image-9304 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.secondary-0e58,
.slider-north-ef2c,
.photo-dynamic-8d6d,
.hidden-8b56,
.active-3bab,
.hidden_mini_9790,
.sidebar_north_fcaf,
.container_clean_c701 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.element_smooth_1f49,
.old-454b,
.liquid-adc0 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.element_smooth_1f49 > *,
.old-454b > *,
.liquid-adc0 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 9e56 */
.ghost-box-b4 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
