/* {$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;
}

.north-b172 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.element_5e88 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .element_5e88 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .element_5e88 {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Header Styles */
.tooltip-north-5c0a {
    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);
}

.caption-stale-786b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .caption-stale-786b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .slider_a24a {
        grid-column: 1;
    }
    
    .accordion-up-042b {
        grid-column: 2;
    }
    
    .cool_2efa {
        grid-column: 3;
    }
}

.slider_a24a img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.slider_a24a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.widget_afad {
    display: none;
}

@media (min-width: 1024px) {
    .widget_afad {
        display: block;
    }
}

/* Grouped Navigation */
.info-12ae {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.fluid_b348 {
    position: relative;
}

.heading-short-6492 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.fluid_b348 .thick_dcad {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.thick_dcad {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.light-e696 {
    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;
}

.light-e696:hover,
.light-e696.fn-active-7e0c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.selected_8fd0 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .selected_8fd0 {
        display: flex;
    }
}

/* Mobile Register Button */
.accordion-up-042b {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .accordion-up-042b {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.column_static_f17a {
    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;
}

.column_static_f17a::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 */
.cool_2efa {
    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) {
    .cool_2efa {
        display: none;
    }
}

.cool_2efa span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.cool_2efa.fn-active-7e0c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.cool_2efa.fn-active-7e0c span:nth-child(2) {
    opacity: 0;
}

.cool_2efa.fn-active-7e0c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.media_complex_81c9 {
    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;
}

.media_complex_81c9.fn-active-7e0c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.container-8ad3 {
    overflow: hidden;
}

.old-46a6 {
    list-style: none;
    padding: 0.75rem 0;
}

.secondary-6d58 {
    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;
}

.secondary-6d58:hover,
.secondary-6d58.fn-active-7e0c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.secondary-6d58.accordion_liquid_49c3 {
    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;
}

.secondary-6d58.accordion_liquid_49c3::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 */
.mask_in_b9ce {
    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;
}

.mask-0d61 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.mask-0d61:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.widget_pressed_fee4 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.widget_pressed_fee4:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.rough_02c6 {
    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;
}

.rough_02c6:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.background_bac3 {
    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;
}

.chip_pro_4c21 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.chip_pro_4c21:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tag_06d9 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.tag_06d9:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.pro-e86e {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.pro-e86e: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);
}

.video_warm_a31d {
    font-size: 1em;
    font-weight: 700;
}

.stale_100e {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.tooltip-dim-043c {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.tooltip-dim-043c::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;
}

.solid-a8e4 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .solid-a8e4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.surface_black_5243 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.stale_8f10 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.down-8e45 {
    margin-bottom: 2rem;
}

.fixed-99f4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fixed-99f4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature_south_88d8 {
    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);
}

.plasma-e727 {
    font-size: 1.5rem;
}

.steel-a5bf {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.wrapper_right_a54f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.current-c0c9 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.current-c0c9:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.copper_2d3e {
    text-align: center;
    margin-bottom: 3rem;
}

.brown_fc11 {
    margin-bottom: 1rem;
}

.dropdown_20f3 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.info-a67c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .info-a67c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .info-a67c.gradient_gold_5652 {
        direction: rtl;
    }
    
    .info-a67c.gradient_gold_5652 > * {
        direction: ltr;
    }
}

.current-9ff8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.current-9ff8:first-child {
    margin-top: 0;
}

.main_fluid_68e2 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.detail_under_d9d0 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.detail_under_d9d0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.fixed_584a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_584a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.item_complex_9fff {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption-old-c20b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.picture-3222 {
    list-style: none;
}

.picture-3222 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.picture-3222 li:last-child {
    border-bottom: none;
}

/* Games Features */
.alert-cf64 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.accent_ca7d {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sidebar-f225 {
    font-size: 2rem;
    flex-shrink: 0;
}

.element-5671 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.menu_solid_f2cc {
    margin: 2rem 0;
}

.gradient-cccf {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.wrapper-f562 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.description-hovered-c599 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hover_806f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.form-3fb1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form-3fb1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange-167b {
    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);
}

.orange-167b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hard-28bc {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sort_gas_2f8f {
    font-size: 1.5rem;
}

.clean_d414 {
    color: var(--accent-color);
    margin: 0;
}

.last-5910 {
    list-style: none;
}

.last-5910 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.last-5910 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.south-77c2 {
    margin: 2rem 0;
}

.hot-db58 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.sort-light-286d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .sort-light-286d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_5d1a {
    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);
}

.title-wide-6be4 {
    font-size: 1.25rem;
}

.grid-simple-3aa0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.main_current_b431,
.tabs_last_cd30 {
    text-align: center;
    margin: 2rem 0;
}

.shade-7ec0,
.tooltip-5c31 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.accent-clean-1502 {
    margin: 2rem 0;
    text-align: center;
}

.border_309d {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.border_309d::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;
}

.input_7872 {
    position: relative;
    z-index: 1;
}

.filter_82a7 {
    margin-bottom: 1rem;
}

.video_65a9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.photo_smooth_554f {
    margin-bottom: 3rem;
}

.notice_6c04 {
    margin-top: 3rem;
}

.secondary_0f8a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .secondary_0f8a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_0f8a .feature_south_88d8 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tag_smooth_2b14 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hidden_dirty_2bf8 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.blue-ff11 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.row-a5f8 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .row-a5f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .row-a5f8 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.over_5f13 {
    margin-bottom: 1rem;
}

.red_4191 img {
    margin-bottom: 1rem;
}

.focus-short-fa03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.down_e4f8 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.border-d39a {
    list-style: none;
}

.border-d39a li {
    margin-bottom: 0.5rem;
}

.border-d39a a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.border-d39a a:hover {
    color: var(--accent-color);
}

.input-blue-bf7c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.carousel_prev_15a3 {
    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);
}

.carousel_prev_15a3:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.wide-e9ae {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.wide-e9ae p {
    margin-bottom: 0.25rem;
}

.gradient_easy_ee18 {
    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) {
    .gradient_easy_ee18 {
        flex-direction: row;
    }
}

.description_solid_3369 {
    text-align: center;
}

@media (min-width: 768px) {
    .description_solid_3369 {
        text-align: left;
    }
}

.description_solid_3369 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.detail_d335 {
    font-size: 0.75rem !important;
}

.article_paper_34dc {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.aside_e138 {
    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);
    }
}

.component_hot_aae1 {
    animation: fadeInUp 0.6s ease-out;
}

.highlight-silver-702f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.module-steel-b962 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-steel-b962 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.stale_baef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_baef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hovered-430b {
    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);
}

.hovered-430b .sidebar-f225 {
    font-size: 1.25rem;
}

.hovered-430b .inner_7bd3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.status-full-3eda {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status-full-3eda {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-ca85 {
    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);
}

.old-ca85:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paragraph-soft-0ec3 {
    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);
}

.filter-pink-3e51 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.picture_8a7a {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver_62bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.north-ce4c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.north-ce4c .element-5671 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.north-ce4c .pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-e4e1 {
    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);
}

.menu-b9e7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.menu-b9e7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.menu-b9e7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.link-green-3134 {
    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);
}

.medium-7925 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pressed_d5b5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pressed_d5b5 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.pressed_d5b5 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);
}

.pressed_d5b5 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pressed_d5b5 input::placeholder {
    color: var(--text-muted);
}

.menu_63e0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.media_white_9e22 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.media_white_9e22 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.summary_f59c {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.summary_f59c:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.sort-light-286d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .sort-light-286d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.yellow_5d1a {
    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);
}

.yellow_5d1a .title-wide-6be4 {
    font-size: 1.25rem;
}

.yellow_5d1a .grid-simple-3aa0 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.container-down-6a59 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-bright-3653 {
    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);
}

.summary-bright-3653 .sidebar-f225 {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-bright-3653 .element-5671 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.summary-bright-3653 .pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-57bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input-tall-9fc2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.input-tall-9fc2 .title_last_992b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.input-tall-9fc2 .west_04f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accordion-narrow-b1dd {
    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);
}

.component-small-616f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .component-small-616f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_wood_a3d0 {
    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);
}

.grid_wood_a3d0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tiny-9775 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.texture_left_0259 {
    flex: 1;
}

.article_6676 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overlay-c264 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert_green_ef34 {
    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);
}

.alert_green_ef34:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.hover-265d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover-265d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.upper-31cb {
    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);
}

.upper-31cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.focus_east_9fa3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy_1a36 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item_in_ba44 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.column-5efa {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.block-11ab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider_up_2ef6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_d54e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.container_d54e .selected-97bf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_d54e .primary_16cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden-09b8 {
    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);
}

.thumbnail-lite-1c41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide_e94e {
    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);
}

.wide_e94e .sidebar-f225 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wide_e94e .element-5671 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wide_e94e .pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
}

.accent_bottom_b363 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accent_bottom_b363 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail_bcdb {
    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);
}

.detail_bcdb:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.search_06e4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .search_06e4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dim_969e {
    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);
}

.dim_969e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper-391f {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper_d1af {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wrapper-f562 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.status_fast_a975 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.outer-3eda {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.iron-e547 {
    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);
}

.iron-e547:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.nav-4b31 {
    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);
}

.filter_center_4756 {
    flex: 1;
}

.paragraph-4eaf {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.widget_new_cd49 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.frame_5a40 {
    color: var(--text-gray);
    line-height: 1.6;
}

.out-6bd9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.in_3da7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in_3da7 .title_last_992b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.in_3da7 .west_04f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs_last_cd30 {
    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);
}

.liquid-d943 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .liquid-d943 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.motion_9c92 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion_9c92 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.action_8601 {
    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);
}

.action_8601:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.column_3ee4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article_cc4d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main_1223 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.last-c66c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.item-1324 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination-29f7 {
    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);
}

.alert_6fdf {
    font-size: 2rem;
    flex-shrink: 0;
}

.thick-495d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-09a4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail-lite-1c41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wide_e94e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wide_e94e .element-5671 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wide_e94e .pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
}

.image_0052 {
    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);
}

.tag_plasma_67d4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag_plasma_67d4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag_plasma_67d4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown-c824 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dropdown-c824:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.preview-60bc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.content-8064 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.column_blue_396f {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tabs-3747 {
    padding: 1.5rem;
}

.next_8372 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.banner-3d36 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-3d36 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;
}

.banner-3d36 li:last-child {
    border-bottom: none;
}

.banner-3d36 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.notice-ec5b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice-ec5b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wrapper-1f1c {
    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);
}

.wrapper-1f1c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container_tiny_cc2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.container-554e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.button-aad3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.preview_stone_9609 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.article-selected-fbcf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.card-13a1 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.breadcrumb-over-7508 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_cd32 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.in_e978 {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_advanced_5af0 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hidden_upper_e9c6 {
    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);
}

.south_31f8 {
    text-align: center;
}

.progress-left-b1ab {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-pressed-1453 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.huge-affd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tiny_9469 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny_9469 .element-5671 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tiny_9469 .pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_2d37 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .complex_2d37 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .complex_2d37 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-white-d734 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.message-white-d734:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content_d7dc {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.gas-0689 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.element-5671 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.photo-focused-9ea4 {
    padding: 1.5rem;
}

.pagination_blue_9633 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shade_brown_d28e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shade_brown_d28e 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;
}

.shade_brown_d28e li:last-child {
    border-bottom: none;
}

.shade_brown_d28e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.article_paper_231d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.frame-d91b {
    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);
}

.frame-d91b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-huge-c3a6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_right_b623 {
    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);
}

.paragraph-soft-0ec3 {
    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;
}

.filter-pink-3e51 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_8a7a {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_hovered_27f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message-solid-372b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.orange-d3df {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cold_9111 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.primary-37a8 {
    display: flex;
    gap: 1rem;
}

.primary-37a8 .status-smooth-def4 {
    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;
}

.form_982c {
    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);
}

.button_first_7233 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.caption-dc77 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caption-dc77 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;
}

.caption-dc77 li:last-child {
    border-bottom: none;
}

.caption-dc77 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.north-b7ce {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .north-b7ce {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north-b7ce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.secondary_dark_1c39 {
    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_dark_1c39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bottom_6482 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.soft-53eb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.selected-97bf {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.block-pressed-31e7 {
    font-size: 1rem;
}

.solid_9c1b {
    padding: 1.5rem;
}

.primary_16cf {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.detail-762e {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.detail-762e .south_31f8 {
    text-align: center;
}

.detail-762e .content-pressed-1453 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.detail-762e .fast_ad99 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.wrapper_d14d {
    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);
}

.wrapper_d14d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.alert_smooth_964d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_smooth_964d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_16d4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.search_16d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup-1fa2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_a215 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_7758 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_dirty_b18c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination_b9fd {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused-7f86 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.card_af36 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.column-7ddd {
    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);
}

.paper_706e {
    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;
}

.paper_706e.dropdown_0493 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.paper_706e.nav-6251 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.paper_706e.media_cold_4906 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.paper_706e.grid-under-8c1f {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.paper_706e.section-0560 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.bronze-e5b7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_purple_a9cf {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_pressed_8ad4 {
    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);
}

.small-a07a {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.carousel-57bf {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-57bf 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;
}

.carousel-57bf li:last-child {
    border-bottom: none;
}

.carousel-57bf li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.alert-39c9 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert-39c9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert-39c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wood_fbca {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood_fbca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wood_fbca.table_paper_1cd2 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .wood_fbca.table_paper_1cd2 {
        grid-column: span 3;
    }
}

.frame-action-60cb {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.wood_fbca.table_paper_1cd2 .frame-action-60cb {
    background: rgba(6, 182, 212, 0.1);
}

.image_full_eca6 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.video_basic_7e59 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.wood_fbca.table_paper_1cd2 .video_basic_7e59 {
    color: var(--info-color);
}

.hidden_56a8 {
    padding: 1.5rem;
    text-align: center;
}

.image_pressed_4d28 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.wood_fbca.table_paper_1cd2 .image_pressed_4d28 {
    color: var(--info-color);
}

.caption-tall-12fb {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.active-pro-7ae4 {
    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 */
.menu-new-9b65 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-new-9b65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.table_112b {
    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);
}

.table_112b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-4fe5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-bright-3653 {
    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);
}

.title-wide-6be4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel-99dd {
    flex: 1;
}

.hot-db58 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.element-basic-d28a {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_2b68 {
    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);
}

.narrow_6f42 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.backdrop_lower_32a6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.aside_e138 {
    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);
}

.stone-5681 {
  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);
}

.stone-5681 .south_31f8 {
    text-align: center;
}

.stone-5681 .progress-left-b1ab {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.stone-5681 .content-pressed-1453 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_lite_c135 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hover-warm-3653 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_next_b30b {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.down-e4aa {
    color: var(--text-gray);
    line-height: 1.6;
}

.shadow_f569 {
    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);
}

.button-tall-64a3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.right-8ef1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-0498 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo-0498 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo-0498 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table-1f44 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.table-1f44:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.video_1071 {
    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);
}

.link_paper_187e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-fc80 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.tooltip_top_06e8 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tooltip_top_06e8.detail_left_f589 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tooltip_top_06e8.fluid-858c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.tooltip_top_06e8.backdrop-a03f {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.plasma-8ad6 {
    padding: 1.5rem;
    text-align: center;
}

.card_solid_d2c9 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-hard-ec87 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-hard-ec87 .overlay_c314 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.gold-4011 {
    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);
}

.gold-4011:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.banner_easy_0450 {
  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);
}

.dynamic-50df {
    text-align: center;
}

.dynamic-50df .progress-left-b1ab {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.dynamic-50df .content-pressed-1453 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.gold_49a1 { text-align: center; }
.filter-70e8 { text-align: left; }
.picture-west-d01a { text-align: right; }

.active-basic-67d4 { margin-bottom: 0; }
.sort_2c77 { margin-bottom: 0.5rem; }
.tall_23b4 { margin-bottom: 1rem; }
.tabs-5e82 { margin-bottom: 1.5rem; }
.thick_a3bf { margin-bottom: 2rem; }

.fast_803d { margin-top: 0; }
.pink_f85e { margin-top: 0.5rem; }
.under-c652 { margin-top: 1rem; }
.modal-west-3057 { margin-top: 1.5rem; }
.last-4e0d { margin-top: 2rem; }

.fn-hidden-7e0c { display: none; }
.fn-visible-7e0c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .tooltip-dim-043c {
        padding: 6rem 0 3rem;
    }
    
    .solid-a8e4 {
        text-align: center;
    }
    
    .info-a67c {
        text-align: center;
    }
    
    .fixed-99f4 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .tooltip-north-5c0a,
    .media_complex_81c9,
    .border_309d,
    .blue-ff11 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .tooltip-dim-043c {
        background: none;
    }
}

/* Providers Section */
.paper-3712 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.first_0b65 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .first_0b65 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .first_0b65 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fast-5ec7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fast-5ec7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hero-3093 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stone_6830 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.chip-d391 {
    list-style: none;
    padding: 0;
}

.chip-d391 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.chip-d391 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.shade-91b5 {
    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);
}

.shade-91b5 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.wrapper-c983 {
    padding: var(--section-padding);
}

.form_02a6 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_02a6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-8f80 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.short-8f80:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.content-7aae {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.selected_79be {
    display: flex;
    flex-direction: column;
}

.tooltip-c210 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.label-1fdf {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.background_49f4 {
    color: var(--accent-color);
}

.image_out_accb {
    font-size: 1.25rem;
}

.hero_d59b {
    margin-bottom: 1rem;
}

.hero_d59b p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.hard-574f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.search_02d6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.south_31f8 {
    text-align: center;
}

.progress-left-b1ab {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.content-pressed-1453 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.down-6780 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper-7463 {
    margin: 2rem 0;
}

.label_right_cea5 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.label_right_cea5 .sidebar-f225 {
    font-size: 2rem;
    flex-shrink: 0;
}

.frame_5860 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.button-f4da {
    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;
}

.button-f4da:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-selected-71b8 {
    font-size: 2rem;
}

.text-dim-294a {
    display: flex;
    flex-direction: column;
}

.bottom-a7dd {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dynamic_44a7 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.large_90b9 {
    padding: var(--section-padding);
}

.clean_6cd5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .clean_6cd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean_6cd5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.input-3108 {
    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);
}

.input-3108:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.input-3108 .progress-left-b1ab {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.input-3108 .content-pressed-1453 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.input-3108 .grid_dynamic_7e85 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.menu-selected-e6c8 {
    margin-top: 4rem;
}

.photo-5d4a {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.badge-11ae {
    overflow-x: auto;
}

.panel_medium_2d0a {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel_medium_2d0a thead {
    background: var(--accent-color);
}

.panel_medium_2d0a th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.panel_medium_2d0a td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_medium_2d0a tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.panel_medium_2d0a tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.row-26de {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_solid_5e8d {
    max-width: 900px;
    margin: 0 auto;
}

.column_simple_d699 {
    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);
}

.column_simple_d699:hover {
    border-color: var(--accent-color);
}

.hot-5a0f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.hot-5a0f h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.warm-702b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.column_simple_d699.fn-active-7e0c .warm-702b {
    transform: rotate(45deg);
}

.mask_new_7199 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.column_simple_d699.fn-active-7e0c .mask_new_7199 {
    max-height: 1000px;
}

.mask_new_7199 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.media-huge-6994 {
    padding: var(--section-padding);
}

.menu-b9e7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.paragraph-right-c3ac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_b8b0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption_b8b0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.texture-7337 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_b667 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.aside_84d7 {
    font-size: 2rem;
}

.focus-tall-f792 {
    color: var(--text-white);
    margin: 0;
}

.column-1e86 {
    list-style: none;
    padding: 0;
}

.column-1e86 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-1e86 li:last-child {
    border-bottom: none;
}

.static-1f33 {
    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);
}

.static-1f33 p {
    color: var(--success-color);
    margin: 0;
}

.accordion-e0c0 {
    margin-top: 3rem;
}

.button_first_7233 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.status_huge_8b42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .status_huge_8b42 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden-tiny-a625 {
    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);
}

.slow_aa33 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hidden-tiny-a625 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tooltip-steel-c546 {
    padding: var(--section-padding);
}

.banner_4bb8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner_4bb8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old-92a3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.old-92a3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.first_49d0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tag_selected_35a6 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.filter-afbb {
    flex: 1;
}

.mini_cf60 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.last_fcd3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.alert-d13a {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold_541f {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cold_541f:last-child {
    border-bottom: none;
}

/* Comparison Section */
.mask-short-8bdc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.green-7ac0 {
    padding: var(--section-padding);
}

.icon-bright-da92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.column-motion-9c2b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-motion-9c2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tertiary-tiny-684c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-fluid-6855, .chip_fd1b, .filter_south_e910 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.filter_south_e910 {
    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 */
.picture-thick-9e6f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_6cd8 {
    margin: 2rem 0;
}

.card_thick_3da1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.media_8fe9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-west-49da {
    list-style: none;
    padding: 0;
}

.feature-west-49da 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;
}

.feature-west-49da li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.feature-west-49da li:last-child {
    border-bottom: none;
}

.static_586e {
    text-align: center;
    margin-top: 2rem;
}

.next-ca7f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.avatar_44bd {
    padding: var(--section-padding);
}

.progress-motion-29b4 {
    margin: 2rem 0;
}

.first-14c8 {
    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) {
    .first-14c8 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.first-14c8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.cool-986f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.static_52b5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sidebar_d769 {
    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;
}

.sort_steel_e545 {
    flex: 1;
}

.filter_center_5885 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.mask-stone-a875 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.hero_top_5302 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.surface_narrow_3fab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .surface_narrow_3fab {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.icon_1395 {
    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);
}

.icon_1395:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon_1395 .progress-left-b1ab {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon_1395 .content-pressed-1453 {
    color: var(--text-gray);
    font-size: 1rem;
}

.middle_40a0 {
    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);
}

.secondary-f1a3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.secondary-f1a3 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.hero_2406 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .hero_2406 {
        grid-template-columns: 1fr 1fr;
    }
}

.hovered_7021 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar_653a {
    margin-bottom: 1.5rem;
}

.avatar_653a label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.avatar_653a input,
.avatar_653a 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;
}

.avatar_653a input:focus,
.avatar_653a select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.liquid_a082 {
    width: 100%;
    margin-top: 1rem;
}

.tag-9d7f {
    display: flex;
    align-items: center;
}

.feature_purple_b181 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.search_2cf2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.article-under-21fd {
    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;
}

.block-solid-ad4f {
    color: var(--text-gray);
}

.gradient-0cf0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.tooltip_lower_18a3 {
    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);
}

.tooltip_lower_18a3 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.thumbnail_next_7e7d {
    margin-top: 3rem;
}

.article-849b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.wood_e5ed {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_easy_8842 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.slow-17e1 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slow-17e1:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tooltip_43a6 {
    padding: var(--section-padding);
}

.blue_fe58 {
    margin: 2rem 0;
}

.lite-8b8a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.header-silver-8aa8 {
    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;
}

.header-silver-8aa8:hover, .header-silver-8aa8.fn-active-7e0c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.action_0c90 {
    display: none;
}

.action_0c90.fn-active-7e0c {
    display: block;
}

.outline-3ccb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bright-97ae {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.blue-8b60 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.blue-8b60 ul {
    list-style: none;
    padding: 0;
}

.blue-8b60 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.blue-8b60 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.old_0070 {
    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 */
.red-92ff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph-eb3b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_tiny_f226 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-right-b402 {
    color: var(--accent-color);
    margin: 0;
}

.photo_tiny_7cdc {
    display: flex;
    gap: 1.5rem;
}

.static_5200 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.fresh-a8ae {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.item-3dc9 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.item-3dc9.outer-e051 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.item-3dc9.hover_46fe {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.item-3dc9.nav_new_0fbb {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.panel-5391 {
    margin-top: 2rem;
}

.tooltip_rough_f5f4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.pagination_60ee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .pagination_60ee {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section_glass_0042 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.in-fee4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.accent-fde7 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.dirty-1756 {
    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 */
.header-selected-3a7f {
    padding: var(--section-padding);
}

.panel_east_7280 {
    margin: 2rem 0;
}

.footer_green_73f4 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.video_rough_6cfb {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.list_hovered_9ceb {
    list-style: none;
    padding: 0;
}

.list_hovered_9ceb 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;
}

.list_hovered_9ceb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.list_hovered_9ceb li:last-child {
    border-bottom: none;
}

.active_ae52 {
    margin: 2rem 0;
}

.complex-972f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.surface_b4f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .surface_b4f9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card_5845 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold_d929 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hot_cdc1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.popup-4587 {
    margin-top: 2rem;
}

.article_6676 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.silver-39f3 {
    list-style: none;
    padding: 0;
}

.middle_06cd {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.middle_06cd a {
    color: var(--accent-color);
    text-decoration: none;
}

.middle_06cd a:hover {
    text-decoration: underline;
}

.notice-simple-c031 {
    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 */
.modal-6359 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-3aeb {
    margin: 2rem 0;
}

.shade-8f32 {
    margin-bottom: 3rem;
}

.shade-8f32 .media_8fe9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.modal_9101 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.full_d833 {
    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);
}

.full_d833:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.article-6753 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .article-6753 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.west-a273 {
    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 */
.pro_b39f {
    padding: var(--section-padding);
}

.tiny_eaf1 {
    margin: 2rem 0;
}

.picture_7d3d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider_54da {
    overflow-x: auto;
    margin: 2rem 0;
}

.status_fixed_44ad {
    background: rgba(6, 182, 212, 0.1) !important;
}

.gradient-11a0 {
    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;
}

.south_9b9b {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.hero-top-92be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero-top-92be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_smooth_94c2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_smooth_94c2 .sidebar-f225 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.primary_smooth_94c2 .element-5671 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.thumbnail_outer_82c0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.dim-c644 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active-88d2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-88d2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.alert-a7ee {
    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;
}

.alert-a7ee:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.icon_2331 {
    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);
}

.white_db7c {
    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;
}

.clean_fe4c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.layout-fde8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.purple_ee51 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.prev-8cc3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.under_d5cc {
    color: var(--text-white);
    font-weight: 600;
}

.next-3156 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.gradient-out-2a3a {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-out-2a3a .status-smooth-def4 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video-liquid-e0d1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-liquid-e0d1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.description_c1c1 {
    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);
}

.description_c1c1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description_c1c1 .progress-left-b1ab {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.description_c1c1 .content-pressed-1453 {
    color: var(--text-gray);
    font-size: 1rem;
}

.gradient-dynamic-7c41 {
    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);
}

.gold-1ef5 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.gold-1ef5 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.item-1324 {
    margin: 2rem 0;
}

.pagination-29f7 {
    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);
}

.pagination-29f7:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.alert_6fdf {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.photo-active-172d {
    flex: 1;
}

.thick-495d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.media-09a4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.thumbnail-lite-1c41 {
    margin: 2rem 0;
}

.wide_e94e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wide_e94e .element-5671 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.wide_e94e .pagination_blue_9633 {
    color: var(--text-gray);
    margin: 0;
}

.image_0052 {
    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);
}

.image_0052 .shade-7ec0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.thumbnail_outer_82c0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.nav-4b31 {
    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;
}

.filter_center_4756 {
    flex: 1;
}

.widget_new_cd49 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.frame_5a40 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.paragraph-soft-0ec3 {
    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;
}

.modal_active_1837 {
    flex: 1;
}

.filter-pink-3e51 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.picture_8a7a {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.orange-d3df {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.cold_9111 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.primary-37a8 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.primary-37a8 .status-smooth-def4 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.form_982c {
    margin-top: 2rem;
}

.form_982c .button_first_7233 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.gallery-1bcd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hidden_upper_e9c6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hidden_upper_e9c6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hidden_upper_e9c6 .south_31f8 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.huge-affd {
    margin: 2rem 0;
}

.tiny_9469 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Game Features Section */
.overlay-87a8 {
    padding: var(--section-padding);
}

.photo-focused-9ea4 {
    margin-top: 1rem;
}

.shade_brown_d28e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.shade_brown_d28e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.shade_brown_d28e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.search-over-0f46 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tiny_148c {
    margin: 2rem 0;
}

.backdrop_pro_69b5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.surface-thick-334e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.light-1c94 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.grid_5c77 {
    margin: 2rem 0;
}

.row_simple_31aa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.row_simple_31aa .media_8fe9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pro_8182 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .pro_8182 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green_232a {
    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);
}

.pink_7a79 {
    color: var(--text-white);
    font-weight: 600;
}

.south-f5ee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.search_upper_3b78 {
    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);
}

.search_upper_3b78 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.soft_9bbc {
    padding: var(--section-padding);
}

.tooltip_9c07 {
    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;
}

.tooltip_9c07:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.logo_inner_c01f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo_inner_c01f .slow_aa33 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_inner_c01f .gradient-4341 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.mask_0a55 {
    flex: 1;
}

.hard-3b88 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.purple_87ab {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purple_87ab li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.purple_87ab li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.wrapper_new_c298 {
    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);
}

.wrapper_new_c298 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wrapper_new_c298 strong {
    color: var(--warning-color);
}

/* Slots Section */
.cool_aaed {
    padding: var(--section-padding);
}

.block-11ab {
    margin: 2rem 0;
}

/* Table Games Section */
.status-top-c0c6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slider_up_2ef6 {
    margin: 2rem 0;
}

.container_d54e {
    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);
}

.container_d54e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.container_d54e .selected-97bf {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container_d54e .primary_16cf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.hidden-09b8 {
    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);
}

.hidden-09b8 .shade-7ec0 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.pink-0049 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.surface_fea5 {
    margin: 2rem 0;
}

.tag_d8f8 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover_fast_e270 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.selected_f064 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge_wide_cb5c {
    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);
}

.badge_wide_cb5c:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.badge_wide_cb5c.fn-active-7e0c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.description-fluid-473a {
    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);
}

.logo_hot_4004 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.logo_hot_4004 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.red_4181 {
    padding: var(--section-padding);
}

.heading-smooth-04d0 {
    margin: 2rem 0;
}

.pattern-warm-1f06 {
    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);
}

.pattern-warm-1f06:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .pattern-warm-1f06 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.first-482b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.box-ce64 {
    flex: 1;
}

.grid_d606 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-e227 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tabs_last_8d13 {
    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;
}

.active-6246 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card_thick_6e50 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.first_91b6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge-7dd6 {
    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;
}

.badge-7dd6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.content_wide_e92d {
    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);
}

.video-fixed-720d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.video-fixed-720d strong {
    color: var(--accent-color);
}

/* New Games Section */
.caption-focused-18b5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.west_9816 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .west_9816 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .west_9816 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-lower-0124 {
    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;
}

.row-lower-0124:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.progress-gold-73c7 {
    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;
}

.status_light_796e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.yellow_bd92 {
    font-size: 2rem;
}

.paragraph-5549 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.pattern-9f1e {
    flex: 1;
}

.preview-a31d {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.blue-b729 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.accent_df6a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.chip_solid_a6bf {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.selected-8e03 {
    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;
}

.panel-1feb {
    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;
}

.panel-1feb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.alert_wood_32b7 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma-1471 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cool_ca82 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cool_ca82 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-prev-3692 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-hovered-2c74 {
    color: var(--text-white);
    font-weight: 600;
}

.gold_babb {
    color: var(--accent-color);
    font-weight: 600;
}

.search_wood_4e23 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.search_wood_4e23 strong {
    color: var(--accent-color);
}

/* Security Section */
.logo-3b8e {
    padding: var(--section-padding);
}

/* Benefits Section */
.iron_41d4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.static_3dbd {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.description-8540 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid-7362 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.shade-3c8c {
    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) {
    .shade-3c8c {
        flex-direction: column;
        gap: 1rem;
    }
}

.shade-3c8c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.shade-3c8c .paragraph-soft-0ec3 {
    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;
}

.shade-3c8c .modal_active_1837 {
    flex: 1;
}

.shade-3c8c .filter-pink-3e51 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.shade-3c8c .picture_8a7a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.thumbnail_black_f800 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thumbnail_black_f800 .hot-db58 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.thumbnail_black_f800 .container-down-6a59 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumbnail_black_f800 .container-down-6a59 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.thumbnail_black_f800 .container-down-6a59 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.center_e897 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.grid_e9d9 {
    padding: var(--section-padding);
}

.simple-aae6 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .simple-aae6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-feb4 {
    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);
}

.disabled-feb4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.disabled-feb4 .medium_7573 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-feb4 .accent-8526 {
    flex: 1;
}

.disabled-feb4 .title_last_992b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.disabled-feb4 .hover_active_69a1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.green-ce0a {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-ce0a .black_b7cd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.green-ce0a .selected-bcd5 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.green-ce0a .selected-bcd5 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);
}

.green-ce0a .selected-bcd5 li:last-child {
    border-bottom: none;
}

.green-ce0a .selected-bcd5 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;
}

.green-ce0a .selected-bcd5 li strong {
    color: var(--text-white);
}

.focused-e76d {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.focused-e76d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused-e76d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.sort_hard_c30b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.slow-3956 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .slow-3956 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider_large_ed84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider_large_ed84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box-c283 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-ac4d {
    font-size: 2rem;
}

.stale-9236 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.east-3c91 {
    flex: 1;
}

.block-inner-2cb0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-inner-2cb0 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.block-inner-2cb0 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.content-41e9 {
    margin-top: 3rem;
}

.footer_green_73f4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.video_rough_6cfb {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_hovered_9ceb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_hovered_9ceb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.list_hovered_9ceb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.list_hovered_9ceb li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.tiny-16cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-26b1 {
    margin: 2rem 0;
}

.shadow_rough_36e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shadow_rough_36e0 .media_8fe9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cold-31ed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cold-31ed {
        grid-template-columns: repeat(2, 1fr);
    }
}

.south-d6d8 {
    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);
}

.south-d6d8:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.panel-49fa {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.border-6a08 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.footer-hard-6b49 {
    padding: var(--section-padding);
}

.solid_d4e9 {
    margin: 2rem 0;
}

.detail_active_3e88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .detail_active_3e88 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .detail_active_3e88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_66bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag_66bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.photo_fd7e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.under_3c84 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.sort_fluid_7c6a {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.sort_fluid_7c6a.widget_paper_6adb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.modal-11a0 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.tertiary-light-b246 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.under-dc3f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.link_fresh_9b32 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.block_72b1 {
    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);
}

.block_72b1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_72b1 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.video-b4cf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_ff75 {
    margin: 2rem 0;
}

.gradient_advanced_c6ae {
    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) {
    .gradient_advanced_c6ae {
        flex-direction: column;
        gap: 1rem;
    }
}

.gradient_advanced_c6ae:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.gradient_advanced_c6ae::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);
}

.filter_center_17a1 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.medium_16c6 {
    flex: 1;
}

.gold-fcb6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.badge-bf06 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-bf06 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.cool-9064 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_9298 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-inner-008c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .info-inner-008c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-1f57 {
    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);
}

.highlight_8004 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.orange-71a3 {
    flex: 1;
}

.module_f52b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.caption_a95e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.breadcrumb_bottom_aad7 {
    margin-top: 2rem;
    text-align: center;
}

.next-6ac4 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.next-6ac4 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.alert_smooth_964d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert_smooth_964d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search_16d4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.search_16d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.search_16d4 .container_tiny_cc2d {
    font-size: 2rem;
    flex-shrink: 0;
}

.search_16d4 .container-554e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.search_16d4 .button-aad3 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.search_16d4 .preview_stone_9609 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.pink_4c41 {
    padding: var(--section-padding);
}

.fixed_a215 .form-soft-95b3 {
    flex: 1;
}

/* Promo Calendar Section */
.aside_silver_368f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.item_fresh_a073 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_fresh_a073 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar-copper-b174 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.carousel-675d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.description_ccf9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-a94a {
    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);
}

.overlay-bd96 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.cool-e3c6 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.summary-up-a0d5 {
    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);
}

.summary-up-a0d5 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary-up-a0d5 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.photo-069d {
    padding: var(--section-padding);
}

.liquid_d981 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .liquid_d981 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb_16a0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_left_a53d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pagination_selected_56d5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination_selected_56d5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.border-8887 {
    margin-top: 3rem;
}

.border-8887 .footer_green_73f4 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.border-8887 .video_rough_6cfb {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.border-8887 .list_hovered_9ceb {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.border-8887 .list_hovered_9ceb li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.border-8887 .list_hovered_9ceb li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.border-8887 .list_hovered_9ceb li strong {
    color: var(--warning-color);
}

.middle_6bfd {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.middle_6bfd strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.nav_a4db {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hard_40ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hard_40ee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.surface_da65 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_da65 .media_8fe9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.table_gold_b91d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-b4f8 {
    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);
}

.input-b4f8:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.tabs_down_3c6f {
    font-size: 2rem;
    flex-shrink: 0;
}

.carousel_db5f {
    flex: 1;
}

.header-wood-5c5d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.paragraph-tiny-ad7f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stale_ff4a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.active-large-fc17 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.old_5423 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .old_5423 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_d66d {
    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);
}

.module_d66d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.description-bb09 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.background_motion_06bf {
    color: var(--text-gray);
    font-size: 1rem;
}

.secondary-f1a3 {
    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);
}

.menu_0237 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.menu_0237 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.element_5e88 { 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; }
.current-c0c9, .detail_under_d9d0 { max-width:100%; height:auto; }

.mask_in_b9ce, .rough_02c6, .background_bac3 { white-space:normal; }

.solid-a8e4,
.info-a67c,
.menu-new-9b65,
.alert_smooth_964d,
.thumbnail-lite-1c41,
.photo-0498 {
  flex-wrap:wrap;
}

[class*="grid"],
.old_5423,
.detail_active_3e88,
.secondary_0f8a {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.tooltip-dim-043c img,
.info-a67c img,
.wrapper_right_a54f img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.surface_black_5243, .stale_8f10,
.brown_fc11, .dropdown_20f3 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.badge-11ae { width:100%; overflow-x:auto; }
.badge-11ae table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.first_0b65 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .first_0b65 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.fast-5ec7 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.clean_6cd5,
.panel-4bc7,
.primary-mini-fdc5,
.center_4afe,
.surface_narrow_3fab,
.old_5423,
.detail_active_3e88,
.secondary_0f8a,
.banner_easy_0450,
.heading-smooth-04d0,
.first_0b65 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .clean_6cd5,
  .panel-4bc7,
  .primary-mini-fdc5,
  .center_4afe,
  .surface_narrow_3fab,
  .old_5423,
  .detail_active_3e88,
  .secondary_0f8a,
  .banner_easy_0450,
  .heading-smooth-04d0,
  .first_0b65 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.input-3108,
.icon_1395,
.module_d66d,
.feature_south_88d8,
.tag_66bb,
.dynamic-50df,
.pattern-warm-1f06,
.fast-5ec7 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.element_gas_fe87,
.background_ec99,
.cool-56d7 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.element_gas_fe87 > *,
.background_ec99 > *,
.cool-56d7 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 5379 */
.widget-item-q7 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
