/* {$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;
}

.card_small_f1d0 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.thumbnail-plasma-37c9 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .thumbnail-plasma-37c9 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .thumbnail-plasma-37c9 {
        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 */
.border_silver_6fbc {
    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);
}

.pro_58bd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .pro_58bd {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .dim_cc52 {
        grid-column: 1;
    }
    
    .title-orange-21cd {
        grid-column: 2;
    }
    
    .alert_2b13 {
        grid-column: 3;
    }
}

.dim_cc52 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.dim_cc52:hover img {
    transform: scale(1.05);
}

/* Navigation */
.highlight-0032 {
    display: none;
}

@media (min-width: 1024px) {
    .highlight-0032 {
        display: block;
    }
}

/* Grouped Navigation */
.paragraph_90be {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.accordion_center_430e {
    position: relative;
}

.warm-85d8 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.accordion_center_430e .sort_019c {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.sort_019c {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.top_d086 {
    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;
}

.top_d086:hover,
.top_d086.fn-active-f103 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.section-upper-7de3 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .section-upper-7de3 {
        display: flex;
    }
}

/* Mobile Register Button */
.title-orange-21cd {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .title-orange-21cd {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.thick_8e3a {
    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;
}

.thick_8e3a::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 */
.alert_2b13 {
    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) {
    .alert_2b13 {
        display: none;
    }
}

.alert_2b13 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.alert_2b13.fn-active-f103 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.alert_2b13.fn-active-f103 span:nth-child(2) {
    opacity: 0;
}

.alert_2b13.fn-active-f103 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.layout_90c4 {
    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;
}

.layout_90c4.fn-active-f103 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.focus-old-2ebb {
    overflow: hidden;
}

.link-deb7 {
    list-style: none;
    padding: 0.75rem 0;
}

.action-871c {
    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;
}

.action-871c:hover,
.action-871c.fn-active-f103 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.action-871c.tabs-f76b {
    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;
}

.action-871c.tabs-f76b::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 */
.thumbnail-a3fc {
    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;
}

.chip-yellow-5549 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.chip-yellow-5549:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.item_5aee {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.item_5aee:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.dark-4740 {
    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;
}

.dark-4740:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.title_purple_ddbd {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.5rem;
}

.small_7813 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.small_7813:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_wide_d552 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.section_wide_d552:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.header-48d8 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.header-48d8: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);
}

.dynamic-0668 {
    font-size: 1em;
    font-weight: 700;
}

.pressed_cec6 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.main_26d9 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.main_26d9::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;
}

.slider_3ef4 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .slider_3ef4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.secondary-easy-b4b2 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.stale_52f6 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.detail-36de {
    margin-bottom: 2rem;
}

.out_9ab3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .out_9ab3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-mini-6df9 {
    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);
}

.paper_b521 {
    font-size: 1.5rem;
}

.preview_fixed_8c55 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.shade_0357 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_thick_5c4a {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.menu_thick_5c4a:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.menu_3912 {
    text-align: center;
    margin-bottom: 3rem;
}

.soft_06c8 {
    margin-bottom: 1rem;
}

.fixed_1972 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.stone_f4a5 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .stone_f4a5 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .stone_f4a5.preview-red-1ee1 {
        direction: rtl;
    }
    
    .stone_f4a5.preview-red-1ee1 > * {
        direction: ltr;
    }
}

.form_b848 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.form_b848:first-child {
    margin-top: 0;
}

.container_wood_a51e {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gradient-b8d9 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gradient-b8d9:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.north_224e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .north_224e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-complex-2b3d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-fresh-807c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.highlight_action_1cac {
    list-style: none;
}

.highlight_action_1cac li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_action_1cac li:last-child {
    border-bottom: none;
}

/* Games Features */
.stone-de25 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.under-d159 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.text-7c48 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_pressed_0c00 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.overlay-bcbc {
    margin: 2rem 0;
}

.over-483b {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.caption-liquid-38f9 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.last-d44f {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.progress-solid-b02f {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.blue_5771 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_5771 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice-74b4 {
    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);
}

.notice-74b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.slider_lite_7e7d {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.heading-5652 {
    font-size: 1.5rem;
}

.box_stone_8b4a {
    color: var(--accent-color);
    margin: 0;
}

.label-huge-9264 {
    list-style: none;
}

.label-huge-9264 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.label-huge-9264 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.fixed-2ce3 {
    margin: 2rem 0;
}

.out_2913 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.module_3602 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .module_3602 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_eb82 {
    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);
}

.detail_1943 {
    font-size: 1.25rem;
}

.narrow-49e4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.fluid_2163,
.heading-20e6 {
    text-align: center;
    margin: 2rem 0;
}

.dim-f742,
.lite_1b61 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.selected_24bc {
    margin: 2rem 0;
    text-align: center;
}

.notice_8d78 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notice_8d78::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;
}

.pagination_tall_0a2c {
    position: relative;
    z-index: 1;
}

.silver-089a {
    margin-bottom: 1rem;
}

.badge-focused-f54f {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tooltip_clean_9397 {
    margin-bottom: 3rem;
}

.widget-mini-0642 {
    margin-top: 3rem;
}

.notification_gas_23b9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .notification_gas_23b9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_gas_23b9 .detail-mini-6df9 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.old_ce67 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.silver-6922 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.copper_fc80 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.thick-ba8b {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .thick-ba8b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-ba8b {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.notification-in-0319 {
    margin-bottom: 1rem;
}

.basic_05e2 img {
    margin-bottom: 1rem;
}

.list_current_7415 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-17af {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.status-d3a6 {
    list-style: none;
}

.status-d3a6 li {
    margin-bottom: 0.5rem;
}

.status-d3a6 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.status-d3a6 a:hover {
    color: var(--accent-color);
}

.notice_f158 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brown-3038 {
    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);
}

.brown-3038:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.header_0507 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.header_0507 p {
    margin-bottom: 0.25rem;
}

.green_512e {
    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) {
    .green_512e {
        flex-direction: row;
    }
}

.east_41ab {
    text-align: center;
}

@media (min-width: 768px) {
    .east_41ab {
        text-align: left;
    }
}

.east_41ab p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item-f02a {
    font-size: 0.75rem !important;
}

.yellow-cfa6 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.in_3161 {
    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);
    }
}

.caption_dda7 {
    animation: fadeInUp 0.6s ease-out;
}

.pro-fa4f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.fluid-3859 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid-3859 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.surface_942c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_942c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-pro-faa0 {
    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);
}

.progress-pro-faa0 .text-7c48 {
    font-size: 1.25rem;
}

.progress-pro-faa0 .layout-7cda {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pro_6c8a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .pro_6c8a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.status-wide-2e77 {
    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);
}

.status-wide-2e77:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.prev_8cb9 {
    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);
}

.column-8821 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.up_4096 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hover-current-1f5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-motion-e150 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-motion-e150 .hero_pressed_0c00 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-motion-e150 .list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
}

.liquid-8818 {
    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);
}

.input_dark_3efc {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input_dark_3efc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input_dark_3efc img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.tertiary_f82b {
    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);
}

.modal-3bf9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notification-east-87a6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification-east-87a6 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.notification-east-87a6 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);
}

.notification-east-87a6 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.notification-east-87a6 input::placeholder {
    color: var(--text-muted);
}

.row-prev-683b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gold-199e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.gold-199e input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.footer_2911 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer_2911:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.module_3602 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module_3602 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pressed_eb82 {
    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);
}

.pressed_eb82 .detail_1943 {
    font-size: 1.25rem;
}

.pressed_eb82 .narrow-49e4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.content_3523 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red_2e9c {
    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);
}

.red_2e9c .text-7c48 {
    font-size: 2rem;
    flex-shrink: 0;
}

.red_2e9c .hero_pressed_0c00 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.red_2e9c .list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay-7c3e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box-smooth-7ce7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.box-smooth-7ce7 .clean_bbf7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.box-smooth-7ce7 .summary_dirty_b9a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_slow_c30e {
    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);
}

.hero_6cdb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .hero_6cdb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.title-pro-2219 {
    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);
}

.title-pro-2219:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.label-up-1758 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.white_8690 {
    flex: 1;
}

.prev_9642 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gold-e20f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.row-ea5b {
    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);
}

.row-ea5b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.texture_full_5fce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .texture_full_5fce {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content-clean-df11 {
    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);
}

.content-clean-df11:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row_small_ce60 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-5166 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silver_ce8f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.first-ff19 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sort-next-c27f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_d2a4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-gold-b55f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.menu-gold-b55f .input_first_ed74 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu-gold-b55f .iron_b197 {
    color: var(--text-gray);
    line-height: 1.6;
}

.first-6e0b {
    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);
}

.easy-ce6d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_upper_f398 {
    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);
}

.hidden_upper_f398 .text-7c48 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden_upper_f398 .hero_pressed_0c00 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.hidden_upper_f398 .list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
}

.content_smooth_5e81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content_smooth_5e81 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_4f7f {
    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);
}

.background_4f7f:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.notification_lite_0f64 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_lite_0f64 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-14bf {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.new-14bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-bede {
    font-size: 2rem;
    flex-shrink: 0;
}

.column_dim_e609 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.caption-liquid-38f9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.widget-under-7420 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.detail-13ab {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_west_2f97 {
    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);
}

.primary_west_2f97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.footer_3465 {
    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);
}

.dynamic_c0c5 {
    flex: 1;
}

.selected-b466 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.text_f70c {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tiny_4c01 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-east-69bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.heading_cc52 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.heading_cc52 .clean_bbf7 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_cc52 .summary_dirty_b9a0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.heading-20e6 {
    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);
}

.advanced-5be5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced-5be5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.bronze_a9d8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze_a9d8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-ac51 {
    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);
}

.light-ac51:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-a980 {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview_pressed_f10c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overlay_active_fded {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.form_bright_3683 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice_04de {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.secondary-current-11a9 {
    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);
}

.basic_cf51 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focused-b54b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_e2d7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-ce6d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_upper_f398 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hidden_upper_f398 .hero_pressed_0c00 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden_upper_f398 .list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-71e6 {
    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);
}

.panel_e045 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .panel_e045 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .panel_e045 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer_7e52 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.footer_7e52:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.yellow_3b6d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.description_7cb9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.content-south-bf73 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.secondary_prev_b074 {
    padding: 1.5rem;
}

.widget-5e03 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer_bd91 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_bd91 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;
}

.footer_bd91 li:last-child {
    border-bottom: none;
}

.footer_bd91 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.preview_tiny_0306 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview_tiny_0306 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag_f5a1 {
    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);
}

.tag_f5a1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.summary-wood-15e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.middle-f23e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.iron_cfbf {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.basic-61b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fixed-2fd0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.message_south_5f05 {
    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);
}

.card-focused-f8b1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_dirty_da55 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.orange_06a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.in_1c88 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.row-current-59f1 {
    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);
}

.warm_44a3 {
    text-align: center;
}

.preview_upper_b344 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma_fa1c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.image_82c6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon_8f81 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_8f81 .hero_pressed_0c00 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_8f81 .list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-aa13 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .logo-aa13 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo-aa13 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.medium-cac7 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.medium-cac7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gas_df37 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs_motion_c87a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero_pressed_0c00 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.white-a307 {
    padding: 1.5rem;
}

.list_easy_7f16 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-e3f4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-e3f4 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;
}

.notice-e3f4 li:last-child {
    border-bottom: none;
}

.notice-e3f4 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.solid-a149 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tertiary-863e {
    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);
}

.tertiary-863e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wide_4864 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight_8c02 {
    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);
}

.prev_8cb9 {
    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;
}

.column-8821 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.up_4096 {
    color: var(--text-gray);
    line-height: 1.6;
}

.summary_copper_51ec {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-first-65a5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.upper_fffe {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notice_hovered_480f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.list_b612 {
    display: flex;
    gap: 1rem;
}

.list_b612 .middle-9886 {
    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;
}

.full-1733 {
    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);
}

.pattern_28f5 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.frame_last_06c4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frame_last_06c4 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;
}

.frame_last_06c4 li:last-child {
    border-bottom: none;
}

.frame_last_06c4 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.brown_551f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .brown_551f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .brown_551f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_tiny_c939 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notification_tiny_c939:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.table-old-c11f {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.main-top-2d71 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.input_first_ed74 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.up_7b3d {
    font-size: 1rem;
}

.search_prev_9b8e {
    padding: 1.5rem;
}

.iron_b197 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.heading-brown-546f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.heading-brown-546f .warm_44a3 {
    text-align: center;
}

.heading-brown-546f .plasma_fa1c {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.heading-brown-546f .advanced-b865 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.breadcrumb_b2dc {
    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);
}

.breadcrumb_b2dc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.accordion_1527 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_1527 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-d58d {
    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);
}

.white-d58d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outer_c375 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid_orange_150c {
    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);
}

.list_down_7e3b {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-focused-82dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border_02fa {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass_88d4 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tag_narrow_abd3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.gas-56c3 {
    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);
}

.progress-hot-9044 {
    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;
}

.progress-hot-9044.caption_2684 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.progress-hot-9044.lower_36fb {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.progress-hot-9044.wood_c04d {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.progress-hot-9044.medium_f7b6 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.progress-hot-9044.section-hard-746e {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.video_brown_b82c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.carousel-b24e {
    color: var(--text-gray);
    line-height: 1.6;
}

.focused-2bf3 {
    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);
}

.box_wide_d100 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.overlay-7c3e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-7c3e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.overlay-7c3e li:last-child {
    border-bottom: none;
}

.overlay-7c3e li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.out_f906 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .out_f906 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .out_f906 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.primary_glass_9607 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.primary_glass_9607:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.primary_glass_9607.short-27ca {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .primary_glass_9607.short-27ca {
        grid-column: span 3;
    }
}

.purple_f403 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.primary_glass_9607.short-27ca .purple_f403 {
    background: rgba(6, 182, 212, 0.1);
}

.list-wide-37f1 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.backdrop_90f7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.primary_glass_9607.short-27ca .backdrop_90f7 {
    color: var(--info-color);
}

.wide-32a3 {
    padding: 1.5rem;
    text-align: center;
}

.liquid-defc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.primary_glass_9607.short-27ca .liquid-defc {
    color: var(--info-color);
}

.breadcrumb_c2af {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.button-b200 {
    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 */
.soft-63d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .soft-63d5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress-68d9 {
    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);
}

.progress-68d9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask_over_b195 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.red_2e9c {
    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);
}

.detail_1943 {
    font-size: 2rem;
    flex-shrink: 0;
}

.north-0ed4 {
    flex: 1;
}

.out_2913 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.plasma-9991 {
    color: var(--text-gray);
    line-height: 1.6;
}

.out_2943 {
    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);
}

.sidebar-complex-928c {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tabs-large-e857 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.in_3161 {
    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);
}

.focus-b3f5 {
  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);
}

.focus-b3f5 .warm_44a3 {
    text-align: center;
}

.focus-b3f5 .preview_upper_b344 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.focus-b3f5 .plasma_fa1c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.iron_8ea7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_e3f2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_72d4 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section-f602 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-purple-90fe {
    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);
}

.chip_lite_880e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero_0f78 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-green-0a58 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary-green-0a58 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary-green-0a58 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pattern-5dab {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pattern-5dab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.feature_prev_6380 {
    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);
}

.dim_bf0d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.up_94d9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.notice-tall-c055 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice-tall-c055.fresh_3fb3 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.notice-tall-c055.section_b34d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.notice-tall-c055.article_full_3b8e {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.notification-steel-9130 {
    padding: 1.5rem;
    text-align: center;
}

.next_63e6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wood_027b {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wood_027b .slider-15c7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.motion_3248 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.motion_3248:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.card-5b67 {
  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);
}

.menu-light-c585 {
    text-align: center;
}

.menu-light-c585 .preview_upper_b344 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.menu-light-c585 .plasma_fa1c {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.disabled-glass-5b01 { text-align: center; }
.grid-4443 { text-align: left; }
.tall_864f { text-align: right; }

.preview_7b0f { margin-bottom: 0; }
.block_b539 { margin-bottom: 0.5rem; }
.bright_699e { margin-bottom: 1rem; }
.glass_0fba { margin-bottom: 1.5rem; }
.paper_d622 { margin-bottom: 2rem; }

.input-0542 { margin-top: 0; }
.info-2f3f { margin-top: 0.5rem; }
.notice-next-4429 { margin-top: 1rem; }
.chip-in-f670 { margin-top: 1.5rem; }
.pattern_7284 { margin-top: 2rem; }

.fn-hidden-f103 { display: none; }
.fn-visible-f103 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .main_26d9 {
        padding: 6rem 0 3rem;
    }
    
    .slider_3ef4 {
        text-align: center;
    }
    
    .stone_f4a5 {
        text-align: center;
    }
    
    .out_9ab3 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .border_silver_6fbc,
    .layout_90c4,
    .notice_8d78,
    .copper_fc80 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main_26d9 {
        background: none;
    }
}

/* Providers Section */
.north-ba6a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.nav_8b8c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_8b8c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav_8b8c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bright-c37b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bright-c37b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-7816 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.media-e7b7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slow_8d75 {
    list-style: none;
    padding: 0;
}

.slow_8d75 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.slow_8d75 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.heading_dc2a {
    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);
}

.heading_dc2a p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.up_0e5a {
    padding: var(--section-padding);
}

.dark-ffa7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dark-ffa7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_d02c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fixed_d02c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.alert_focused_2ef2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-2945 {
    display: flex;
    flex-direction: column;
}

.focus-e6e3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.surface-c4a1 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-new-76a5 {
    color: var(--accent-color);
}

.banner-55ec {
    font-size: 1.25rem;
}

.text-05e2 {
    margin-bottom: 1rem;
}

.text-05e2 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.item_hard_427b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.grid-easy-c6a4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.warm_44a3 {
    text-align: center;
}

.preview_upper_b344 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plasma_fa1c {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.label_hot_0ada {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert_51ac {
    margin: 2rem 0;
}

.nav_ec3b {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.nav_ec3b .text-7c48 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shadow_2a86 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bright_909a {
    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;
}

.bright_909a:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon_3dd5 {
    font-size: 2rem;
}

.up-62ea {
    display: flex;
    flex-direction: column;
}

.notification-8527 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.action_dddc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.dynamic_ace5 {
    padding: var(--section-padding);
}

.south-1de2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .south-1de2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .south-1de2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-a6b7 {
    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);
}

.summary-a6b7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.summary-a6b7 .preview_upper_b344 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.summary-a6b7 .plasma_fa1c {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.summary-a6b7 .text_2d30 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.badge_dirty_310d {
    margin-top: 4rem;
}

.feature_3321 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.feature_e241 {
    overflow-x: auto;
}

.notice-black-3b9d {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.notice-black-3b9d thead {
    background: var(--accent-color);
}

.notice-black-3b9d th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.notice-black-3b9d td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.notice-black-3b9d tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.notice-black-3b9d tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.alert_05f4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.mask-00a7 {
    max-width: 900px;
    margin: 0 auto;
}

.down-5212 {
    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);
}

.down-5212:hover {
    border-color: var(--accent-color);
}

.blue-5e82 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.blue-5e82 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.summary-ca00 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.down-5212.fn-active-f103 .summary-ca00 {
    transform: rotate(45deg);
}

.summary-under-9a58 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.down-5212.fn-active-f103 .summary-under-9a58 {
    max-height: 1000px;
}

.summary-under-9a58 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.nav_2e91 {
    padding: var(--section-padding);
}

.input_dark_3efc {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.image_40f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box_lower_bdd4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box_lower_bdd4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hidden_134b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_dark_63d9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wrapper-prev-e0fc {
    font-size: 2rem;
}

.pattern_under_8889 {
    color: var(--text-white);
    margin: 0;
}

.highlight_cool_204b {
    list-style: none;
    padding: 0;
}

.highlight_cool_204b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight_cool_204b li:last-child {
    border-bottom: none;
}

.layout_stale_d15f {
    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);
}

.layout_stale_d15f p {
    color: var(--success-color);
    margin: 0;
}

.main-steel-26be {
    margin-top: 3rem;
}

.pattern_28f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blue_fe86 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .blue_fe86 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sort-0bc4 {
    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);
}

.north-515c {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sort-0bc4 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.full-f755 {
    padding: var(--section-padding);
}

.header_9b6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_9b6c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list_bronze_1d3f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.list_bronze_1d3f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.heading_hot_e03d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.breadcrumb-eb06 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.notice-stone-9179 {
    flex: 1;
}

.logo_bfe4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.gallery_0999 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.summary_old_b05f {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-rough-360e {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.outline-rough-360e:last-child {
    border-bottom: none;
}

/* Comparison Section */
.red_eb39 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.section-b20a {
    padding: var(--section-padding);
}

.caption-37a9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.middle-cb24 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .middle-cb24 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy-c729 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_c6f6, .button_d4f9, .header-db89 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.header-db89 {
    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 */
.accent_fc7f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-selected-5acc {
    margin: 2rem 0;
}

.active-plasma-5698 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_95d0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.static_4b7a {
    list-style: none;
    padding: 0;
}

.static_4b7a 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;
}

.static_4b7a li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.static_4b7a li:last-child {
    border-bottom: none;
}

.basic_5c60 {
    text-align: center;
    margin-top: 2rem;
}

.banner-57fc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.surface-inner-a568 {
    padding: var(--section-padding);
}

.east_d9b8 {
    margin: 2rem 0;
}

.hover-1637 {
    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) {
    .hover-1637 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hover-1637:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort-4286 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.iron-909c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.pink-b77d {
    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;
}

.red-796f {
    flex: 1;
}

.link-tall-8e60 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.white-e617 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider_white_4a32 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.thumbnail_active_c026 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .thumbnail_active_c026 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.message_top_d36a {
    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);
}

.message_top_d36a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.message_top_d36a .preview_upper_b344 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.message_top_d36a .plasma_fa1c {
    color: var(--text-gray);
    font-size: 1rem;
}

.north-0f64 {
    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);
}

.notification_iron_66cd {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.notification_iron_66cd strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.narrow-a806 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .narrow-a806 {
        grid-template-columns: 1fr 1fr;
    }
}

.pressed_8cc3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tooltip-e6f8 {
    margin-bottom: 1.5rem;
}

.tooltip-e6f8 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tooltip-e6f8 input,
.tooltip-e6f8 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;
}

.tooltip-e6f8 input:focus,
.tooltip-e6f8 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.border_6835 {
    width: 100%;
    margin-top: 1rem;
}

.progress_next_6033 {
    display: flex;
    align-items: center;
}

.backdrop-6b54 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.link-hard-e198 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.gas-3a78 {
    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-25f6 {
    color: var(--text-gray);
}

.component-8d18 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature_64a0 {
    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);
}

.feature_64a0 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.thumbnail-e060 {
    margin-top: 3rem;
}

.gas-2b8f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.over-8774 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown-f270 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.right-b46f {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.right-b46f:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.feature_warm_a095 {
    padding: var(--section-padding);
}

.badge_ec99 {
    margin: 2rem 0;
}

.surface-71cb {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.main-bbbf {
    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;
}

.main-bbbf:hover, .main-bbbf.fn-active-f103 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.item_a693 {
    display: none;
}

.item_a693.fn-active-f103 {
    display: block;
}

.list-7d84 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.element_west_b3bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.button_9e4c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.button_9e4c ul {
    list-style: none;
    padding: 0;
}

.button_9e4c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.button_9e4c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.dropdown_tall_2620 {
    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 */
.mask-e5a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-d017 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.light_27cf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.status_inner_3737 {
    color: var(--accent-color);
    margin: 0;
}

.input-plasma-a246 {
    display: flex;
    gap: 1.5rem;
}

.picture_3d20 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.plasma_ee3d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.alert-e781 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.alert-e781.list_95a5 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-e781.shade-static-95c9 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.alert-e781.focused_5249 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero_d392 {
    margin-top: 2rem;
}

.clean-6708 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hovered-bd62 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hovered-bd62 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-bef9 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.full_cdcc {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.text_109f {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer_5cdc {
    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 */
.aside_black_3577 {
    padding: var(--section-padding);
}

.aside_east_bb2c {
    margin: 2rem 0;
}

.frame_3096 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.logo-9a1a {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.current_9303 {
    list-style: none;
    padding: 0;
}

.current_9303 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;
}

.current_9303 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.current_9303 li:last-child {
    border-bottom: none;
}

.hot_42eb {
    margin: 2rem 0;
}

.sort-ef25 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.dropdown-51f4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dropdown-51f4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.glass-b19d {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mini_97ce {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.accordion_fast_384f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.out-84dc {
    margin-top: 2rem;
}

.prev_9642 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.article_723d {
    list-style: none;
    padding: 0;
}

.footer-793e {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.footer-793e a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-793e a:hover {
    text-decoration: underline;
}

.notice-slow-8ed3 {
    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 */
.feature_0820 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_51cf {
    margin: 2rem 0;
}

.current_ed3e {
    margin-bottom: 3rem;
}

.current_ed3e .advanced_95d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.stone-2047 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-d048 {
    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);
}

.section-d048:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.image-south-de41 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .image-south-de41 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot-423b {
    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 */
.carousel_c181 {
    padding: var(--section-padding);
}

.gallery-3dd0 {
    margin: 2rem 0;
}

.wrapper_ed1d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.gas_6687 {
    overflow-x: auto;
    margin: 2rem 0;
}

.paragraph_next_4031 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.texture-8644 {
    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;
}

.grid_simple_2f36 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.tertiary_4c06 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .tertiary_4c06 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_north_b29c {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_north_b29c .text-7c48 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.container_north_b29c .hero_pressed_0c00 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.icon_light_d4ae {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.current_0344 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter_purple_5cbe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_purple_5cbe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_4908 {
    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;
}

.large_4908:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.selected_fa1e {
    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);
}

.footer-dark-8070 {
    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;
}

.focus-739b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.preview_fixed_a0d7 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.module_stone_3b78 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.silver_496b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero_00d8 {
    color: var(--text-white);
    font-weight: 600;
}

.list_17a2 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.label-west-b4bb {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.label-west-b4bb .middle-9886 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.under-a1e0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .under-a1e0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_silver_d6d4 {
    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);
}

.alert_silver_d6d4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.alert_silver_d6d4 .preview_upper_b344 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.alert_silver_d6d4 .plasma_fa1c {
    color: var(--text-gray);
    font-size: 1rem;
}

.carousel_2c23 {
    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);
}

.notification-9af4 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.notification-9af4 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.notice_04de {
    margin: 2rem 0;
}

.secondary-current-11a9 {
    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);
}

.secondary-current-11a9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.basic_cf51 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.outer_9bab {
    flex: 1;
}

.focused-b54b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.status_e2d7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.easy-ce6d {
    margin: 2rem 0;
}

.hidden_upper_f398 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_upper_f398 .hero_pressed_0c00 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.hidden_upper_f398 .list_easy_7f16 {
    color: var(--text-gray);
    margin: 0;
}

.button-71e6 {
    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);
}

.button-71e6 .dim-f742 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.icon_light_d4ae {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.footer_3465 {
    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;
}

.dynamic_c0c5 {
    flex: 1;
}

.text_f70c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.tiny_4c01 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.prev_8cb9 {
    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;
}

.light_f6ad {
    flex: 1;
}

.column-8821 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.up_4096 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.upper_fffe {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.notice_hovered_480f {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.list_b612 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.list_b612 .middle-9886 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.full-1733 {
    margin-top: 2rem;
}

.full-1733 .pattern_28f5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.frame-glass-ee97 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-current-59f1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .row-current-59f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-current-59f1 .warm_44a3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_82c6 {
    margin: 2rem 0;
}

.icon_8f81 {
    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 */
.tag_10dc {
    padding: var(--section-padding);
}

.white-a307 {
    margin-top: 1rem;
}

.notice-e3f4 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.notice-e3f4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.notice-e3f4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.preview_short_6c2c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_brown_616d {
    margin: 2rem 0;
}

.media_1e0b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.mask_c613 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stale-1217 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.background_iron_02fd {
    margin: 2rem 0;
}

.description_out_34c2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.description_out_34c2 .advanced_95d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.next_53ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .next_53ab {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-clean-f629 {
    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);
}

.hard_cb1e {
    color: var(--text-white);
    font-weight: 600;
}

.form-dynamic-9770 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.title_58f0 {
    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);
}

.title_58f0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.tag_fluid_2319 {
    padding: var(--section-padding);
}

.video-3aa6 {
    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;
}

.video-3aa6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.clean-58c1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean-58c1 .north-515c {
    font-size: 2rem;
    flex-shrink: 0;
}

.clean-58c1 .surface_out_94d3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.title_liquid_d311 {
    flex: 1;
}

.hover-small-4175 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.label_4fd1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.label_4fd1 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.label_4fd1 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.footer-3e9f {
    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);
}

.footer-3e9f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.footer-3e9f strong {
    color: var(--warning-color);
}

/* Slots Section */
.description-9b24 {
    padding: var(--section-padding);
}

.sort-next-c27f {
    margin: 2rem 0;
}

/* Table Games Section */
.status-complex-4dde {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wrapper_d2a4 {
    margin: 2rem 0;
}

.menu-gold-b55f {
    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);
}

.menu-gold-b55f:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.menu-gold-b55f .input_first_ed74 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.menu-gold-b55f .iron_b197 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.first-6e0b {
    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);
}

.first-6e0b .dim-f742 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.sidebar-iron-53a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.motion_8290 {
    margin: 2rem 0;
}

.alert-thick-16c0 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft_053e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner_2c0f {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip_a66d {
    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);
}

.chip_a66d:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.chip_a66d.fn-active-f103 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_right_c6b1 {
    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);
}

.large_d8f7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.large_d8f7 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.filter_in_40d2 {
    padding: var(--section-padding);
}

.badge_yellow_00fe {
    margin: 2rem 0;
}

.texture_5b1b {
    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);
}

.texture_5b1b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .texture_5b1b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.purple_1929 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.backdrop-9428 {
    flex: 1;
}

.summary_8cc9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.out_5948 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.middle_cd7d {
    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;
}

.preview-4dc8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup_tall_7f34 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero_225b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge_copper_ce02 {
    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_copper_ce02:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.image_ced6 {
    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);
}

.focus-64d7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focus-64d7 strong {
    color: var(--accent-color);
}

/* New Games Section */
.detail_067c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.overlay_249b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .overlay_249b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overlay_249b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paper-c8c5 {
    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;
}

.paper-c8c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.top-4e5b {
    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;
}

.slider_bright_ca31 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.top_a595 {
    font-size: 2rem;
}

.easy_51f3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.outline-pressed-d587 {
    flex: 1;
}

.thick_3e1e {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.secondary_clean_7b3e {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.button-complex-1c39 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.slider_huge_2fc9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lite_8019 {
    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;
}

.search_red_c3c0 {
    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;
}

.search_red_c3c0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.highlight_4453 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tabs-41cb {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-1845 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-1845 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.column_cf84 {
    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);
}

.south-5525 {
    color: var(--text-white);
    font-weight: 600;
}

.overlay_ef81 {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-a2fb {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.hero-a2fb strong {
    color: var(--accent-color);
}

/* Security Section */
.photo-dirty-8ea4 {
    padding: var(--section-padding);
}

/* Benefits Section */
.motion-7554 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.light_8e29 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.mini_f5a0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.caption_hot_ab19 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.logo_easy_8deb {
    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) {
    .logo_easy_8deb {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo_easy_8deb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.logo_easy_8deb .prev_8cb9 {
    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;
}

.logo_easy_8deb .light_f6ad {
    flex: 1;
}

.logo_easy_8deb .column-8821 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.logo_easy_8deb .up_4096 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.preview_selected_4cd9 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview_selected_4cd9 .out_2913 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.preview_selected_4cd9 .content_3523 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview_selected_4cd9 .content_3523 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.preview_selected_4cd9 .content_3523 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.aside-a524 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.grid-d04b {
    padding: var(--section-padding);
}

.highlight_hot_268c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .highlight_hot_268c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-next-11dc {
    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);
}

.form-next-11dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.form-next-11dc .row-bf0d {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-next-11dc .hidden_hot_cbd7 {
    flex: 1;
}

.form-next-11dc .clean_bbf7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form-next-11dc .pink_16dc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.large_3fbb {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.large_3fbb .easy-abde {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.large_3fbb .plasma_1be0 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.large_3fbb .plasma_1be0 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);
}

.large_3fbb .plasma_1be0 li:last-child {
    border-bottom: none;
}

.large_3fbb .plasma_1be0 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;
}

.large_3fbb .plasma_1be0 li strong {
    color: var(--text-white);
}

.white-ad3d {
    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);
}

.white-ad3d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-ad3d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.iron-aac8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.black_b212 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .black_b212 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.component-8ccb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.component-8ccb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.warm_a9d8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-5f46 {
    font-size: 2rem;
}

.wide_0f73 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tag_1858 {
    flex: 1;
}

.bronze-4e49 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bronze-4e49 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.bronze-4e49 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.sort_05f4 {
    margin-top: 3rem;
}

.frame_3096 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.logo-9a1a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.current_9303 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current_9303 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.current_9303 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.current_9303 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.photo_blue_73ce {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom_2985 {
    margin: 2rem 0;
}

.hero_16bc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.hero_16bc .advanced_95d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.advanced_09b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .advanced_09b9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.west_0d56 {
    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);
}

.west_0d56:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.backdrop_9bb2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slider_e3d1 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.frame_709c {
    padding: var(--section-padding);
}

.small_7ea6 {
    margin: 2rem 0;
}

.tag_fresh_2a92 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .tag_fresh_2a92 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag_fresh_2a92 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-b16f {
    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-b16f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container-pink-8be4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.short_e250 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.column-6484 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.column-6484.feature_pressed_d1b2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.header-82d8 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.static-392e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.rough-4e26 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.basic_3d97 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.top_f42e {
    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);
}

.top_f42e p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.top_f42e strong {
    color: var(--accent-color);
}

/* Update Log Section */
.texture-clean-d5dd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_5408 {
    margin: 2rem 0;
}

.component-old-c76e {
    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) {
    .component-old-c76e {
        flex-direction: column;
        gap: 1rem;
    }
}

.component-old-c76e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.component-old-c76e::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);
}

.red-a7e2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.upper-04e2 {
    flex: 1;
}

.slider-top-36a8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.menu_7806 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_7806 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-0899 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.full_3605 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dark-00b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dark-00b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image_red_6cc7 {
    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);
}

.avatar_1d3d {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.main_dark_b095 {
    flex: 1;
}

.blue-c72b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.search-first-46b1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.alert_4c03 {
    margin-top: 2rem;
    text-align: center;
}

.banner_basic_dd82 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.banner_basic_dd82 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.accordion_1527 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_1527 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.white-d58d {
    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);
}

.white-d58d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.white-d58d .summary-wood-15e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.white-d58d .middle-f23e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.white-d58d .iron_cfbf {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.white-d58d .basic-61b6 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.clean-e679 {
    padding: var(--section-padding);
}

.grid_orange_150c .east-489b {
    flex: 1;
}

/* Promo Calendar Section */
.nav_yellow_218c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused_6881 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focused_6881 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel_d134 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-d9d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.description-old-a153 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag_dynamic_c423 {
    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);
}

.menu_bbde {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.menu_over_1d4a {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.south-c303 {
    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);
}

.south-c303 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.south-c303 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.widget-ccab {
    padding: var(--section-padding);
}

.hero-c1b9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero-c1b9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.caption_fresh_fedc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.message-153d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-iron-71bc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-iron-71bc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty_e5f0 {
    margin-top: 3rem;
}

.dirty_e5f0 .frame_3096 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.dirty_e5f0 .logo-9a1a {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dirty_e5f0 .current_9303 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.dirty_e5f0 .current_9303 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.dirty_e5f0 .current_9303 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.dirty_e5f0 .current_9303 li strong {
    color: var(--warning-color);
}

.dropdown-0581 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.dropdown-0581 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.background_e727 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.header_ccc5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_ccc5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge-center-ae03 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-center-ae03 .advanced_95d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.caption-c6b0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.description-bottom-ddb4 {
    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);
}

.description-bottom-ddb4:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.large-adcf {
    font-size: 2rem;
    flex-shrink: 0;
}

.steel-970c {
    flex: 1;
}

.purple_96ea {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.in-8352 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.primary_light_d9c3 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.frame_3013 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.panel-north-2ca2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .panel-north-2ca2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_d75e {
    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);
}

.texture_d75e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.pink-3355 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_narrow_4e8a {
    color: var(--text-gray);
    font-size: 1rem;
}

.notification_iron_66cd {
    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);
}

.primary_47d3 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.primary_47d3 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.thumbnail-plasma-37c9 { 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; }
.menu_thick_5c4a, .gradient-b8d9 { max-width:100%; height:auto; }

.thumbnail-a3fc, .dark-4740, .title_purple_ddbd { white-space:normal; }

.slider_3ef4,
.stone_f4a5,
.soft-63d5,
.accordion_1527,
.easy-ce6d,
.primary-green-0a58 {
  flex-wrap:wrap;
}

[class*="grid"],
.panel-north-2ca2,
.tag_fresh_2a92,
.notification_gas_23b9 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.main_26d9 img,
.stone_f4a5 img,
.shade_0357 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.secondary-easy-b4b2, .stale_52f6,
.soft_06c8, .fixed_1972 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.feature_e241 { width:100%; overflow-x:auto; }
.feature_e241 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.nav_8b8c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .nav_8b8c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.bright-c37b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.south-1de2,
.slow_db94,
.modal_black_d37a,
.hover_medium_cd36,
.thumbnail_active_c026,
.panel-north-2ca2,
.tag_fresh_2a92,
.notification_gas_23b9,
.card-5b67,
.badge_yellow_00fe,
.nav_8b8c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .south-1de2,
  .slow_db94,
  .modal_black_d37a,
  .hover_medium_cd36,
  .thumbnail_active_c026,
  .panel-north-2ca2,
  .tag_fresh_2a92,
  .notification_gas_23b9,
  .card-5b67,
  .badge_yellow_00fe,
  .nav_8b8c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.summary-a6b7,
.message_top_d36a,
.texture_d75e,
.detail-mini-6df9,
.slider-b16f,
.menu-light-c585,
.texture_5b1b,
.bright-c37b {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.picture_brown_79cc,
.shadow-copper-1a24,
.prev_2eda {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.picture_brown_79cc > *,
.shadow-copper-1a24 > *,
.prev_2eda > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: afbd */
.ghost-box-m5 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
