/* {$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;
}

.article-1559 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.texture-down-b5df {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .texture-down-b5df {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .texture-down-b5df {
        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 */
.thumbnail_plasma_e6f7 {
    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);
}

.title-new-524a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .title-new-524a {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .shadow-43f9 {
        grid-column: 1;
    }
    
    .active-50a3 {
        grid-column: 2;
    }
    
    .sidebar_1301 {
        grid-column: 3;
    }
}

.shadow-43f9 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.shadow-43f9:hover img {
    transform: scale(1.05);
}

/* Navigation */
.slider_mini_d35a {
    display: none;
}

@media (min-width: 1024px) {
    .slider_mini_d35a {
        display: block;
    }
}

/* Grouped Navigation */
.title-middle-f536 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.solid_21a6 {
    position: relative;
}

.alert-tall-2dcd {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.solid_21a6 .gas_7a2f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.gas_7a2f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.header_6f75 {
    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;
}

.header_6f75:hover,
.header_6f75.fn-active-7873 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.content-71c5 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .content-71c5 {
        display: flex;
    }
}

/* Mobile Register Button */
.active-50a3 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .active-50a3 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.hard_7c0a {
    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;
}

.hard_7c0a::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 */
.sidebar_1301 {
    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) {
    .sidebar_1301 {
        display: none;
    }
}

.sidebar_1301 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.sidebar_1301.fn-active-7873 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.sidebar_1301.fn-active-7873 span:nth-child(2) {
    opacity: 0;
}

.sidebar_1301.fn-active-7873 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.pattern-current-db4d {
    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;
}

.pattern-current-db4d.fn-active-7873 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.carousel_complex_32d8 {
    overflow: hidden;
}

.shade-f4cf {
    list-style: none;
    padding: 0.75rem 0;
}

.stone-dc7b {
    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;
}

.stone-dc7b:hover,
.stone-dc7b.fn-active-7873 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.stone-dc7b.basic-d2f5 {
    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;
}

.stone-dc7b.basic-d2f5::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 */
.disabled-cold-3428 {
    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;
}

.narrow-7ae8 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.narrow-7ae8:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.modal-upper-7f3c {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.modal-upper-7f3c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.gallery-46cf {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    flex-direction: column;
    gap: 0.25rem;
}

.gallery-46cf:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.table_bca6 {
    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;
}

.iron_5bd3 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.iron_5bd3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.simple_49cd {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.simple_49cd:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.header-24f3 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.header-24f3: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);
}

.main-e082 {
    font-size: 1em;
    font-weight: 700;
}

.preview_static_ba99 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.notice-in-3b4f {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.notice-in-3b4f::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;
}

.card_c3ae {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .card_c3ae {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.frame-yellow-ee17 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wood_10ec {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.clean-9db8 {
    margin-bottom: 2rem;
}

.video-focused-b562 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .video-focused-b562 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.right-cc9e {
    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);
}

.block_bottom_7ada {
    font-size: 1.5rem;
}

.hidden_wide_66be {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.card-lite-2e7a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-371c {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.button-371c:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.block_warm_ba22 {
    text-align: center;
    margin-bottom: 3rem;
}

.pro_fd77 {
    margin-bottom: 1rem;
}

.background_33a6 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-62a0 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel-62a0 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .carousel-62a0.popup-stone-ab8e {
        direction: rtl;
    }
    
    .carousel-62a0.popup-stone-ab8e > * {
        direction: ltr;
    }
}

.search-cold-21e0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.search-cold-21e0:first-child {
    margin-top: 0;
}

.large_47c3 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.green_07ad {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.green_07ad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.breadcrumb-39eb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .breadcrumb-39eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container_current_574e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.slider_de72 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.overlay-32e7 {
    list-style: none;
}

.overlay-32e7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-32e7 li:last-child {
    border-bottom: none;
}

/* Games Features */
.iron_3405 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.pink-9918 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gradient-474b {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange_86de {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.border_last_833f {
    margin: 2rem 0;
}

.accent-soft-ebc7 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dropdown_77d1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.notice-stone-d5dd {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.modal_ef34 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.action_0199 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .action_0199 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo_5dd6 {
    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);
}

.photo_5dd6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.feature_hot_5635 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.under_7872 {
    font-size: 1.5rem;
}

.down_4f69 {
    color: var(--accent-color);
    margin: 0;
}

.bronze-7bce {
    list-style: none;
}

.bronze-7bce li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.bronze-7bce li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.alert_eeef {
    margin: 2rem 0;
}

.preview_3825 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.dropdown_stone_6804 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .dropdown_stone_6804 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_red_fc37 {
    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);
}

.feature_0c2e {
    font-size: 1.25rem;
}

.item-hard-36d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.title-e12d,
.carousel_north_10e8 {
    text-align: center;
    margin: 2rem 0;
}

.wood-6ce5,
.highlight_hovered_7428 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.box-bb20 {
    margin: 2rem 0;
    text-align: center;
}

.article_prev_e0bc {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article_prev_e0bc::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;
}

.grid-08f7 {
    position: relative;
    z-index: 1;
}

.pro-c5ae {
    margin-bottom: 1rem;
}

.primary-prev-ad07 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disabled_5f14 {
    margin-bottom: 3rem;
}

.wrapper_west_7e2c {
    margin-top: 3rem;
}

.article-37b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .article-37b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-37b8 .right-cc9e {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outer_066c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.new-fb34 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.soft_cd40 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.clean_dea5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .clean_dea5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .clean_dea5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.advanced_28fe {
    margin-bottom: 1rem;
}

.focus_stale_f387 img {
    margin-bottom: 1rem;
}

.paper_cd79 {
    color: var(--text-gray);
    line-height: 1.6;
}

.detail-039d {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.orange_162d {
    list-style: none;
}

.orange_162d li {
    margin-bottom: 0.5rem;
}

.orange_162d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.orange_162d a:hover {
    color: var(--accent-color);
}

.easy-2534 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.secondary_c293 {
    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);
}

.secondary_c293:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.east-fcf6 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.east-fcf6 p {
    margin-bottom: 0.25rem;
}

.tabs-41ed {
    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) {
    .tabs-41ed {
        flex-direction: row;
    }
}

.shade_hard_467e {
    text-align: center;
}

@media (min-width: 768px) {
    .shade_hard_467e {
        text-align: left;
    }
}

.shade_hard_467e p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.copper_d00a {
    font-size: 0.75rem !important;
}

.bright_8e6d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.basic_af5d {
    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);
    }
}

.hidden-mini-57cf {
    animation: fadeInUp 0.6s ease-out;
}

.simple-dac7 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.info-1b82 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-1b82 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.dropdown-next-7433 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown-next-7433 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_7a85 {
    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);
}

.dropdown_7a85 .gradient-474b {
    font-size: 1.25rem;
}

.dropdown_7a85 .title-eb6b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tabs-left-4bb4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tabs-left-4bb4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light-4899 {
    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);
}

.light-4899:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.lower_fe54 {
    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);
}

.notification-3c39 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.badge-liquid-ac0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.next-9ec8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_advanced_c9e5 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.list_advanced_c9e5 .orange_86de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_advanced_c9e5 .summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
}

.under-00a1 {
    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);
}

.detail_77dc {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.detail_77dc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.detail_77dc img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.medium_5d4e {
    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);
}

.heading-cbd3 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.paragraph-hot-f6b0 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.paragraph-hot-f6b0 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.paragraph-hot-f6b0 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);
}

.paragraph-hot-f6b0 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paragraph-hot-f6b0 input::placeholder {
    color: var(--text-muted);
}

.bronze-2b5b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.disabled_glass_be28 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.disabled_glass_be28 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.input_5eda {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.input_5eda:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.dropdown_stone_6804 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_stone_6804 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_red_fc37 {
    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);
}

.gallery_red_fc37 .feature_0c2e {
    font-size: 1.25rem;
}

.gallery_red_fc37 .item-hard-36d9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.card-inner-0efd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_1501 {
    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);
}

.picture_1501 .gradient-474b {
    font-size: 2rem;
    flex-shrink: 0;
}

.picture_1501 .orange_86de {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.picture_1501 .summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
}

.tooltip-11c2 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-upper-e65e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.logo-upper-e65e .main_upper_4d42 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.logo-upper-e65e .badge_red_3a3a {
    color: var(--text-gray);
    line-height: 1.6;
}

.blue_d6cd {
    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);
}

.picture-liquid-b13a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-liquid-b13a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dropdown_02c4 {
    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);
}

.dropdown_02c4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.solid-4db9 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.right_6f69 {
    flex: 1;
}

.input-9727 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notice_simple_9c69 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dynamic_8e90 {
    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);
}

.dynamic_8e90:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.up_25b7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .up_25b7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_f278 {
    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);
}

.chip_f278:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal_liquid_19a7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner_dim_e346 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.component-d935 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.box_fast_ddb6 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.down_2328 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-4f27 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hard-b733 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hard-b733 .info_silver_a952 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-b733 .plasma-d696 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fluid-5517 {
    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);
}

.box_ba88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink_b592 {
    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);
}

.pink_b592 .gradient-474b {
    font-size: 2rem;
    flex-shrink: 0;
}

.pink_b592 .orange_86de {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pink_b592 .summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
}

.dirty_1d84 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dirty_1d84 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pressed-7c2b {
    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);
}

.pressed-7c2b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.bronze-1e03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .bronze-1e03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_9a96 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail_9a96:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.large_a184 {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange_e5ea {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown_77d1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.header_22cd {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.short_dba4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.large_9b73 {
    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);
}

.large_9b73:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_ac26 {
    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);
}

.picture-bc60 {
    flex: 1;
}

.video-east-07ec {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.brown-b7b1 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.alert_38c9 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-ceda {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.white-ac10 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.white-ac10 .main_upper_4d42 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.white-ac10 .badge_red_3a3a {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_north_10e8 {
    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);
}

.row_6ded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row_6ded {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.image_bd46 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_bd46 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_2c04 {
    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);
}

.tabs_2c04:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-eb73 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery_plasma_b3d3 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silver_5cf3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.picture_black_54df {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.steel_a8bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nav-cool-73d9 {
    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);
}

.old_7f13 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_5325 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header_51f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_ba88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pink_b592 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pink_b592 .orange_86de {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pink_b592 .summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
}

.container-a43c {
    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);
}

.smooth-f48d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .smooth-f48d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .smooth-f48d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-slow-d80e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.input-slow-d80e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-a10d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.message-5ffb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.warm-4776 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.carousel-c2b5 {
    padding: 1.5rem;
}

.disabled-outer-248d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.layout_under_86c0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layout_under_86c0 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;
}

.layout_under_86c0 li:last-child {
    border-bottom: none;
}

.layout_under_86c0 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.module-17cc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .module-17cc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_out_ce1d {
    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);
}

.notification_out_ce1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.alert_wood_8430 {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth_19dd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.black_739c {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.preview_warm_fbc0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.table_1f2d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower_36fc {
    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);
}

.content-stale-6686 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-lower-531a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border-slow-b7e6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-736a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.gallery_west_5dea {
    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);
}

.title_in_5eea {
    text-align: center;
}

.light_0cc8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-1d36 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.alert_paper_df70 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden_smooth_83bf {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_smooth_83bf .orange_86de {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden_smooth_83bf .summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
}

.active-b5e1 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .active-b5e1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .active-b5e1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gas-90cf {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gas-90cf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cool-6072 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.table-3907 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.orange_86de {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.focus-full-3754 {
    padding: 1.5rem;
}

.summary-013f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.alert_huge_4dba {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert_huge_4dba 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;
}

.alert_huge_4dba li:last-child {
    border-bottom: none;
}

.alert_huge_4dba li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.accordion-b54a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.description-821d {
    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);
}

.description-821d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-8d29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite-3ec2 {
    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);
}

.lower_fe54 {
    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;
}

.notification-3c39 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge-liquid-ac0b {
    color: var(--text-gray);
    line-height: 1.6;
}

.component_south_b970 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed-7e44 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-iron-cadd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.east-ae7d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.container_soft_6bfe {
    display: flex;
    gap: 1rem;
}

.container_soft_6bfe .stale-5dd6 {
    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;
}

.caption-out-b145 {
    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);
}

.label-dynamic-c26f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.status-df7e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-df7e 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;
}

.status-df7e li:last-child {
    border-bottom: none;
}

.status-df7e li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.plasma-6192 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .plasma-6192 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma-6192 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.list-2eeb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list-2eeb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.disabled-tall-2634 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.search-wide-69fb {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info_silver_a952 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.icon_bright_c43e {
    font-size: 1rem;
}

.advanced_d687 {
    padding: 1.5rem;
}

.plasma-d696 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.right-8362 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.right-8362 .title_in_5eea {
    text-align: center;
}

.right-8362 .texture-1d36 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.right-8362 .notice-tiny-07a7 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop-complex-ba17 {
    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);
}

.backdrop-complex-ba17:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.filter_silver_7ef8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_silver_7ef8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_76e7 {
    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);
}

.overlay_76e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice_8132 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused_0c04 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.caption_hot_1831 {
    font-size: 2rem;
    flex-shrink: 0;
}

.primary_71d0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs_first_cd75 {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-right-ce6b {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.accent-silver-4021 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dropdown_ff81 {
    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);
}

.box_b646 {
    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;
}

.box_b646.popup-a7fe {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.box_b646.cold-4646 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.box_b646.preview-f187 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.box_b646.element-east-14ad {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.box_b646.menu_ee6a {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.component-2d3b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.component_2748 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_north_820e {
    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);
}

.highlight_016c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tooltip-11c2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-11c2 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;
}

.tooltip-11c2 li:last-child {
    border-bottom: none;
}

.tooltip-11c2 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.north_bce5 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .north_bce5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .north_bce5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gradient_motion_b37e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient_motion_b37e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient_motion_b37e.aside_bd7c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .gradient_motion_b37e.aside_bd7c {
        grid-column: span 3;
    }
}

.thick_220c {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.gradient_motion_b37e.aside_bd7c .thick_220c {
    background: rgba(6, 182, 212, 0.1);
}

.notice-89d3 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.focused_d8ab {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.gradient_motion_b37e.aside_bd7c .focused_d8ab {
    color: var(--info-color);
}

.gold-9686 {
    padding: 1.5rem;
    text-align: center;
}

.hot-27b6 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gradient_motion_b37e.aside_bd7c .hot-27b6 {
    color: var(--info-color);
}

.active_north_d168 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tall_a6fd {
    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 */
.gallery-159c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .gallery-159c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.blue-845d {
    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);
}

.blue-845d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.out-8536 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_1501 {
    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);
}

.feature_0c2e {
    font-size: 2rem;
    flex-shrink: 0;
}

.list_brown_ccaf {
    flex: 1;
}

.preview_3825 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cold_a806 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-smooth-84e4 {
    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);
}

.purple-637e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.aside_3695 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.basic_af5d {
    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);
}

.icon-790b {
  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);
}

.icon-790b .title_in_5eea {
    text-align: center;
}

.icon-790b .light_0cc8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.icon-790b .texture-1d36 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.overlay_green_ef3e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lower-6173 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active_5ebc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.text-warm-7552 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gallery_ea78 {
    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);
}

.up-a16d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dynamic_9870 {
    color: var(--text-gray);
    line-height: 1.6;
}

.cool_4b7e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cool_4b7e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cool_4b7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_liquid_e475 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.background_liquid_e475:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.upper-c76d {
    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);
}

.over_c0dc {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.container_south_a5b9 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.simple_953a {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.simple_953a.sort_47e1 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.simple_953a.overlay-new-2313 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.simple_953a.plasma-19dd {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.badge_c685 {
    padding: 1.5rem;
    text-align: center;
}

.nav-92d3 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block_23c9 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.block_23c9 .gold_43d2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.slow_b38a {
    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);
}

.slow_b38a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.middle_f4ae {
  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);
}

.inner-625a {
    text-align: center;
}

.inner-625a .light_0cc8 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.inner-625a .texture-1d36 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.button-dynamic-0e91 { text-align: center; }
.pressed_e848 { text-align: left; }
.modal-fce0 { text-align: right; }

.column_c8e3 { margin-bottom: 0; }
.progress_09f0 { margin-bottom: 0.5rem; }
.accordion_bright_00f0 { margin-bottom: 1rem; }
.component_right_1542 { margin-bottom: 1.5rem; }
.action_8505 { margin-bottom: 2rem; }

.preview_hard_e6f5 { margin-top: 0; }
.box-4d0e { margin-top: 0.5rem; }
.carousel_a2b9 { margin-top: 1rem; }
.upper-b470 { margin-top: 1.5rem; }
.center-034c { margin-top: 2rem; }

.fn-hidden-7873 { display: none; }
.fn-visible-7873 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .notice-in-3b4f {
        padding: 6rem 0 3rem;
    }
    
    .card_c3ae {
        text-align: center;
    }
    
    .carousel-62a0 {
        text-align: center;
    }
    
    .video-focused-b562 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .thumbnail_plasma_e6f7,
    .pattern-current-db4d,
    .article_prev_e0bc,
    .soft_cd40 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .notice-in-3b4f {
        background: none;
    }
}

/* Providers Section */
.shadow_orange_708c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail-bfc2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail-bfc2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thumbnail-bfc2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_6109 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture_6109:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.primary_cold_dd57 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.narrow-84be {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thick-8079 {
    list-style: none;
    padding: 0;
}

.thick-8079 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.thick-8079 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.dropdown-0d6f {
    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);
}

.dropdown-0d6f p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.right_494b {
    padding: var(--section-padding);
}

.badge_8184 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_8184 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.last_02a5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.last_02a5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slider-692c {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.modal-4b12 {
    display: flex;
    flex-direction: column;
}

.tiny_8bfa {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.carousel-black-cbd4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.accordion_9223 {
    color: var(--accent-color);
}

.pro_a488 {
    font-size: 1.25rem;
}

.wide-395d {
    margin-bottom: 1rem;
}

.wide-395d p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.shadow-7961 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.secondary_f3be {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.title_in_5eea {
    text-align: center;
}

.light_0cc8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.texture-1d36 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.row-6e93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-fresh-d6fa {
    margin: 2rem 0;
}

.tag_lite_7767 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.tag_lite_7767 .gradient-474b {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled-hovered-733f {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.gradient_west_59b1 {
    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;
}

.gradient_west_59b1:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fluid-77e8 {
    font-size: 2rem;
}

.hidden_d1f5 {
    display: flex;
    flex-direction: column;
}

.button-paper-04bd {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.hero_8895 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.aside-de2f {
    padding: var(--section-padding);
}

.article-wide-d834 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .article-wide-d834 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article-wide-d834 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in_11ab {
    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);
}

.in_11ab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.in_11ab .light_0cc8 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.in_11ab .texture-1d36 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.in_11ab .heading_narrow_b129 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.link-motion-63be {
    margin-top: 4rem;
}

.search_motion_ffd5 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.table-c6d7 {
    overflow-x: auto;
}

.in_e8e8 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.in_e8e8 thead {
    background: var(--accent-color);
}

.in_e8e8 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.in_e8e8 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.in_e8e8 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.in_e8e8 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.text-brown-9ea4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list-a185 {
    max-width: 900px;
    margin: 0 auto;
}

.tiny_c3dd {
    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);
}

.tiny_c3dd:hover {
    border-color: var(--accent-color);
}

.dirty-fcbe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.dirty-fcbe h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.hidden-south-0b5e {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.tiny_c3dd.fn-active-7873 .hidden-south-0b5e {
    transform: rotate(45deg);
}

.tall-5da7 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.tiny_c3dd.fn-active-7873 .tall-5da7 {
    max-height: 1000px;
}

.tall-5da7 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.main_0cdb {
    padding: var(--section-padding);
}

.detail_77dc {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.accent_d046 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label_8676 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label_8676 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.soft_1cfb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_plasma_04cb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.easy-f8e9 {
    font-size: 2rem;
}

.accordion-bright-eaf6 {
    color: var(--text-white);
    margin: 0;
}

.item_576f {
    list-style: none;
    padding: 0;
}

.item_576f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item_576f li:last-child {
    border-bottom: none;
}

.section_yellow_b648 {
    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);
}

.section_yellow_b648 p {
    color: var(--success-color);
    margin: 0;
}

.text_old_5ca3 {
    margin-top: 3rem;
}

.label-dynamic-c26f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.title_silver_d1e3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .title_silver_d1e3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.status_1b4d {
    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);
}

.badge-f1bd {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.status_1b4d p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.panel-099c {
    padding: var(--section-padding);
}

.notification_0b6e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_0b6e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_small_ffa8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.nav_small_ffa8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.column_liquid_5bbd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wrapper-c294 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.north-0cf6 {
    flex: 1;
}

.aside-upper-09b1 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.bronze_d3cb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.gradient-0e63 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed-b5b3 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-b5b3:last-child {
    border-bottom: none;
}

/* Comparison Section */
.secondary_tiny_ee50 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.breadcrumb_a04b {
    padding: var(--section-padding);
}

.gallery-3434 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.hot-009b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hot-009b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_d293 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fast-05f2, .disabled-plasma-e888, .green_5f44 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.green_5f44 {
    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 */
.pagination_a516 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.popup_c566 {
    margin: 2rem 0;
}

.steel_c768 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-action-8ba8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.smooth_fa3a {
    list-style: none;
    padding: 0;
}

.smooth_fa3a 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;
}

.smooth_fa3a li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.smooth_fa3a li:last-child {
    border-bottom: none;
}

.content_stale_8c6d {
    text-align: center;
    margin-top: 2rem;
}

.tabs_stale_9f3d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.pagination-west-39e8 {
    padding: var(--section-padding);
}

.image_e347 {
    margin: 2rem 0;
}

.article_thick_e4aa {
    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) {
    .article_thick_e4aa {
        flex-direction: column;
        align-items: flex-start;
    }
}

.article_thick_e4aa:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element_north_51e3 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.pattern-pressed-baa7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.outline_567a {
    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;
}

.disabled_liquid_0f81 {
    flex: 1;
}

.video-dirty-3db2 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.light-d4fe {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.highlight_center_b24b {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.container_liquid_10e6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .container_liquid_10e6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.dim-937b {
    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);
}

.dim-937b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim-937b .light_0cc8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-937b .texture-1d36 {
    color: var(--text-gray);
    font-size: 1rem;
}

.grid_b235 {
    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);
}

.module_tall_ff93 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.module_tall_ff93 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.module_short_74f0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .module_short_74f0 {
        grid-template-columns: 1fr 1fr;
    }
}

.pagination_complex_da7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-silver-11b9 {
    margin-bottom: 1.5rem;
}

.tag-silver-11b9 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tag-silver-11b9 input,
.tag-silver-11b9 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;
}

.tag-silver-11b9 input:focus,
.tag-silver-11b9 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.detail_7082 {
    width: 100%;
    margin-top: 1rem;
}

.accent-bright-4b7a {
    display: flex;
    align-items: center;
}

.outline-4742 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.notice_b597 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.alert_700c {
    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;
}

.notification_stale_9a6b {
    color: var(--text-gray);
}

.button_white_04df {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.easy-1d46 {
    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);
}

.easy-1d46 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tall_d73e {
    margin-top: 3rem;
}

.summary-d16c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.paper-ffaf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary-a004 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.green-af08 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.green-af08:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.active-7340 {
    padding: var(--section-padding);
}

.chip-hovered-9191 {
    margin: 2rem 0;
}

.module-ca57 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sidebar-324c {
    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;
}

.sidebar-324c:hover, .sidebar-324c.fn-active-7873 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.picture-focused-5a57 {
    display: none;
}

.picture-focused-5a57.fn-active-7873 {
    display: block;
}

.right_f644 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion_8baf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.chip-glass-ec31 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.chip-glass-ec31 ul {
    list-style: none;
    padding: 0;
}

.chip-glass-ec31 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.chip-glass-ec31 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.gas_3136 {
    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 */
.description-hard-c6e3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-28ec {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-3947 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.prev_6745 {
    color: var(--accent-color);
    margin: 0;
}

.info_1f8a {
    display: flex;
    gap: 1.5rem;
}

.status-cool-4c7f {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.image_liquid_f222 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.down_94e0 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.down_94e0.link-orange-1810 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.down_94e0.shade_solid_0e2c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.down_94e0.primary-mini-41b4 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-7e2f {
    margin-top: 2rem;
}

.first_2d0c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tag-active-3668 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .tag-active-3668 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cold_53a4 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.frame-purple-466c {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.link_in_000d {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.avatar-pro-8a91 {
    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 */
.yellow_01dc {
    padding: var(--section-padding);
}

.south_0855 {
    margin: 2rem 0;
}

.blue-b1c9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.layout-45fe {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.section-ad42 {
    list-style: none;
    padding: 0;
}

.section-ad42 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;
}

.section-ad42 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.section-ad42 li:last-child {
    border-bottom: none;
}

.hot_a2f0 {
    margin: 2rem 0;
}

.button-4496 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.icon-3ce3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .icon-3ce3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plasma-51a0 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary-4638 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tertiary_dirty_844c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.preview_hot_6bd7 {
    margin-top: 2rem;
}

.input-9727 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.short-6112 {
    list-style: none;
    padding: 0;
}

.menu_soft_3dbb {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.menu_soft_3dbb a {
    color: var(--accent-color);
    text-decoration: none;
}

.menu_soft_3dbb a:hover {
    text-decoration: underline;
}

.hard-8a50 {
    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 */
.info_up_9556 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.top-fae7 {
    margin: 2rem 0;
}

.dropdown-11ff {
    margin-bottom: 3rem;
}

.dropdown-11ff .alert-action-8ba8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pro-0bfb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.module_thick_32d2 {
    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);
}

.module_thick_32d2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.video_mini_6cb7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .video_mini_6cb7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel_095c {
    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 */
.menu-d6d9 {
    padding: var(--section-padding);
}

.upper_297c {
    margin: 2rem 0;
}

.warm-3abe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.liquid_a2a2 {
    overflow-x: auto;
    margin: 2rem 0;
}

.accent-9f8b {
    background: rgba(6, 182, 212, 0.1) !important;
}

.south_b1ec {
    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;
}

.alert-184a {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.widget-new-5985 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .widget-new-5985 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-9608 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-9608 .gradient-474b {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.module-9608 .orange_86de {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-bottom-f829 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.preview_60b2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.preview-solid-7828 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-solid-7828 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notice_current_9c06 {
    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;
}

.notice_current_9c06:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.bright-1e8b {
    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);
}

.module_pink_7fac {
    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;
}

.menu_medium_526c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.content-6749 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.chip_right_5be8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.gold-ef68 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-eaaa {
    color: var(--text-white);
    font-weight: 600;
}

.tabs-cool-77b7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.image-simple-0ab2 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.image-simple-0ab2 .stale-5dd6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.narrow-9a60 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .narrow-9a60 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-94cb {
    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);
}

.detail-94cb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.detail-94cb .light_0cc8 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-94cb .texture-1d36 {
    color: var(--text-gray);
    font-size: 1rem;
}

.banner-fresh-71ad {
    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);
}

.card_012c {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.card_012c strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.steel_a8bc {
    margin: 2rem 0;
}

.nav-cool-73d9 {
    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);
}

.nav-cool-73d9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.old_7f13 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.column_6694 {
    flex: 1;
}

.grid_5325 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.header_51f6 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.box_ba88 {
    margin: 2rem 0;
}

.pink_b592 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pink_b592 .orange_86de {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.pink_b592 .summary-013f {
    color: var(--text-gray);
    margin: 0;
}

.container-a43c {
    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);
}

.container-a43c .wood-6ce5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.preview-bottom-f829 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.hidden_ac26 {
    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;
}

.picture-bc60 {
    flex: 1;
}

.brown-b7b1 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.alert_38c9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.lower_fe54 {
    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;
}

.wrapper_huge_4532 {
    flex: 1;
}

.notification-3c39 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.badge-liquid-ac0b {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.outline-iron-cadd {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.east-ae7d {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.container_soft_6bfe {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.container_soft_6bfe .stale-5dd6 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.caption-out-b145 {
    margin-top: 2rem;
}

.caption-out-b145 .label-dynamic-c26f {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.stone_b78e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gallery_west_5dea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gallery_west_5dea {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery_west_5dea .title_in_5eea {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert_paper_df70 {
    margin: 2rem 0;
}

.hidden_smooth_83bf {
    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 */
.blue_bf40 {
    padding: var(--section-padding);
}

.focus-full-3754 {
    margin-top: 1rem;
}

.alert_huge_4dba {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.alert_huge_4dba li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.alert_huge_4dba li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.article_972e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.alert-65ea {
    margin: 2rem 0;
}

.header_2f2a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.border-right-f2ab {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stone-4278 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.footer-pressed-f5ed {
    margin: 2rem 0;
}

.paper_1d7a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.paper_1d7a .alert-action-8ba8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag-9ced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tag-9ced {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rough_6c43 {
    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);
}

.popup-8e58 {
    color: var(--text-white);
    font-weight: 600;
}

.icon_b988 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.info_stale_dccd {
    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);
}

.info_stale_dccd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.dim_a3bd {
    padding: var(--section-padding);
}

.orange-cb81 {
    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;
}

.orange-cb81:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.dim-6079 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dim-6079 .badge-f1bd {
    font-size: 2rem;
    flex-shrink: 0;
}

.dim-6079 .copper_8b8d {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.dropdown_clean_e1e8 {
    flex: 1;
}

.wood-6d83 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element_full_6b9c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.element_full_6b9c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.element_full_6b9c li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.modal_fluid_dec1 {
    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);
}

.modal_fluid_dec1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.modal_fluid_dec1 strong {
    color: var(--warning-color);
}

/* Slots Section */
.modal-e6a8 {
    padding: var(--section-padding);
}

.down_2328 {
    margin: 2rem 0;
}

/* Table Games Section */
.sort_2c08 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-4f27 {
    margin: 2rem 0;
}

.hard-b733 {
    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);
}

.hard-b733:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard-b733 .info_silver_a952 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hard-b733 .plasma-d696 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.fluid-5517 {
    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);
}

.fluid-5517 .wood-6ce5 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.left-dd47 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.image_f32c {
    margin: 2rem 0;
}

.modal_3c47 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-c9fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info_hard_7393 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hovered-7083 {
    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);
}

.hovered-7083:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hovered-7083.fn-active-7873 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section_58c1 {
    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);
}

.box_yellow_1986 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_yellow_1986 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.card_c9d2 {
    padding: var(--section-padding);
}

.border_db41 {
    margin: 2rem 0;
}

.stone-b2c9 {
    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);
}

.stone-b2c9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .stone-b2c9 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.complex-08c8 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.hard_1ddb {
    flex: 1;
}

.notification_440c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wrapper-83ba {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.large_af63 {
    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;
}

.focus_white_a197 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.description_hovered_a599 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.prev_070a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.feature_dynamic_26a0 {
    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;
}

.feature_dynamic_26a0:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.fixed_8047 {
    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);
}

.slow_4dea {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.slow_4dea strong {
    color: var(--accent-color);
}

/* New Games Section */
.first_7331 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.hero_bright_7d61 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero_bright_7d61 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero_bright_7d61 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nav-steel-5ad1 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.nav-steel-5ad1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.feature_db74 {
    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;
}

.down_af77 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.up_8a36 {
    font-size: 2rem;
}

.black_6867 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.progress-2f7f {
    flex: 1;
}

.tooltip_gold_8b46 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.gas-4024 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hard-6841 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.west-8afc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section_hard_9d04 {
    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;
}

.short_85c4 {
    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;
}

.short_85c4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.tertiary-advanced-c993 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_8129 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.north_bae9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .north_bae9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold-9676 {
    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);
}

.hero-lite-84c6 {
    color: var(--text-white);
    font-weight: 600;
}

.caption-df90 {
    color: var(--accent-color);
    font-weight: 600;
}

.shade_stale_9277 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.shade_stale_9277 strong {
    color: var(--accent-color);
}

/* Security Section */
.footer-35a0 {
    padding: var(--section-padding);
}

/* Benefits Section */
.huge_2670 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.plasma_cc31 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.button_2ec9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-clean-f033 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.thumbnail-73ba {
    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) {
    .thumbnail-73ba {
        flex-direction: column;
        gap: 1rem;
    }
}

.thumbnail-73ba:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.thumbnail-73ba .lower_fe54 {
    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;
}

.thumbnail-73ba .wrapper_huge_4532 {
    flex: 1;
}

.thumbnail-73ba .notification-3c39 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.thumbnail-73ba .badge-liquid-ac0b {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.icon-stale-5e74 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-stale-5e74 .preview_3825 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon-stale-5e74 .card-inner-0efd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-stale-5e74 .card-inner-0efd li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.icon-stale-5e74 .card-inner-0efd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.progress-fea2 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.modal-a9bf {
    padding: var(--section-padding);
}

.brown-fc58 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .brown-fc58 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.in-81c6 {
    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);
}

.in-81c6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.in-81c6 .video_warm_722d {
    font-size: 2rem;
    flex-shrink: 0;
}

.in-81c6 .gradient_motion_144a {
    flex: 1;
}

.in-81c6 .main_upper_4d42 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.in-81c6 .background-9d45 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.input-872f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-872f .media_cdf7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.input-872f .filter_pressed_f72d {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.input-872f .filter_pressed_f72d 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);
}

.input-872f .filter_pressed_f72d li:last-child {
    border-bottom: none;
}

.input-872f .filter_pressed_f72d 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;
}

.input-872f .filter_pressed_f72d li strong {
    color: var(--text-white);
}

.primary_right_ad3f {
    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);
}

.primary_right_ad3f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.primary_right_ad3f strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.primary-f845 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form-1d35 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .form-1d35 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outer-f17a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.outer-f17a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.mini_21d4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_99ec {
    font-size: 2rem;
}

.shadow-d7cb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.summary-3a3c {
    flex: 1;
}

.stone_2e08 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_2e08 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.stone_2e08 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.modal-7128 {
    margin-top: 3rem;
}

.blue-b1c9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.layout-45fe {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.section-ad42 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-ad42 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.section-ad42 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.section-ad42 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.frame-ffc6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button_211a {
    margin: 2rem 0;
}

.shadow_steel_0bf0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.shadow_steel_0bf0 .alert-action-8ba8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.icon_current_2f0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .icon_current_2f0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.label-ff20 {
    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);
}

.label-ff20:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.static-8794 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu_e593 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.filter-wood-208d {
    padding: var(--section-padding);
}

.aside-iron-731f {
    margin: 2rem 0;
}

.wood_1f88 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .wood_1f88 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wood_1f88 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_adfe {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.rough_adfe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.button_b37b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.border_inner_fa3d {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.filter-cc80 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.filter-cc80.link-aad4 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.title_basic_15dd {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.carousel_6707 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.panel_east_7639 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stone_060a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tag_3ee4 {
    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);
}

.tag_3ee4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tag_3ee4 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hover-black-81e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.element-fff5 {
    margin: 2rem 0;
}

.list-new-4b46 {
    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) {
    .list-new-4b46 {
        flex-direction: column;
        gap: 1rem;
    }
}

.list-new-4b46:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.list-new-4b46::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);
}

.avatar-out-a3d7 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.photo_gas_a234 {
    flex: 1;
}

.mask-rough-5048 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.article-b8ad {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-b8ad li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.gradient-wood-5d27 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next-956d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.prev-891d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .prev-891d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header_pressed_6c0a {
    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);
}

.down-e4bc {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.background-silver-79af {
    flex: 1;
}

.complex-a0b8 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.row_2edb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.advanced-7c7d {
    margin-top: 2rem;
    text-align: center;
}

.title-tall-62f6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.title-tall-62f6 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.filter_silver_7ef8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .filter_silver_7ef8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overlay_76e7 {
    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);
}

.overlay_76e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay_76e7 .alert_wood_8430 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay_76e7 .smooth_19dd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.overlay_76e7 .black_739c {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.overlay_76e7 .preview_warm_fbc0 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.detail_old_a26e {
    padding: var(--section-padding);
}

.focused_0c04 .carousel_c189 {
    flex: 1;
}

/* Promo Calendar Section */
.description_f2b9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row_old_1d3c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .row_old_1d3c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel_c547 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.card_2b70 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.north-839e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dirty_9f9a {
    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);
}

.breadcrumb-blue-dcd7 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.short_7f06 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.header_431f {
    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);
}

.header_431f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.header_431f strong {
    color: var(--accent-color);
}

/* Requirements Section */
.out-26a8 {
    padding: var(--section-padding);
}

.chip-clean-870d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .chip-clean-870d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.up-c0f2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_glass_bd68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.yellow_7c3b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yellow_7c3b li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.label_283a {
    margin-top: 3rem;
}

.label_283a .blue-b1c9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.label_283a .layout-45fe {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_283a .section-ad42 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.label_283a .section-ad42 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.label_283a .section-ad42 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.label_283a .section-ad42 li strong {
    color: var(--warning-color);
}

.form_clean_c29c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form_clean_c29c strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.notice-31fe {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu-black-b081 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-black-b081 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame_9de9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame_9de9 .alert-action-8ba8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.link_c7f4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner_action_d979 {
    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);
}

.banner_action_d979:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.easy-c72f {
    font-size: 2rem;
    flex-shrink: 0;
}

.accent_76ff {
    flex: 1;
}

.input_7693 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.link_selected_8825 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.notice-3dfa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.accordion-active-fc64 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.row_9742 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .row_9742 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.huge-d32a {
    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);
}

.huge-d32a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.smooth_9b96 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-723e {
    color: var(--text-gray);
    font-size: 1rem;
}

.module_tall_ff93 {
    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);
}

.stone-d7a0 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.stone-d7a0 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.texture-down-b5df { 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; }
.button-371c, .green_07ad { max-width:100%; height:auto; }

.disabled-cold-3428, .gallery-46cf, .table_bca6 { white-space:normal; }

.card_c3ae,
.carousel-62a0,
.gallery-159c,
.filter_silver_7ef8,
.box_ba88,
.cool_4b7e {
  flex-wrap:wrap;
}

[class*="grid"],
.row_9742,
.wood_1f88,
.article-37b8 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.notice-in-3b4f img,
.carousel-62a0 img,
.card-lite-2e7a img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.frame-yellow-ee17, .wood_10ec,
.pro_fd77, .background_33a6 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.table-c6d7 { width:100%; overflow-x:auto; }
.table-c6d7 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.thumbnail-bfc2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .thumbnail-bfc2 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.texture_6109 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.article-wide-d834,
.stale_75c6,
.up_23ca,
.overlay-2a64,
.container_liquid_10e6,
.row_9742,
.wood_1f88,
.article-37b8,
.middle_f4ae,
.border_db41,
.thumbnail-bfc2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .article-wide-d834,
  .stale_75c6,
  .up_23ca,
  .overlay-2a64,
  .container_liquid_10e6,
  .row_9742,
  .wood_1f88,
  .article-37b8,
  .middle_f4ae,
  .border_db41,
  .thumbnail-bfc2 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.in_11ab,
.dim-937b,
.huge-d32a,
.right-cc9e,
.rough_adfe,
.inner-625a,
.stone-b2c9,
.texture_6109 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.column-ef0b,
.focus-selected-7965,
.layout-orange-8699 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.column-ef0b > *,
.focus-selected-7965 > *,
.layout-orange-8699 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 20b6 */
.widget-item-j4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
