/* {$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;
}

.avatar-6b85 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.notice-c28d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .notice-c28d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .notice-c28d {
        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 */
.notification-7b38 {
    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);
}

.fixed-5e41 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .fixed-5e41 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .sidebar_hard_54d8 {
        grid-column: 1;
    }
    
    .inner-74bd {
        grid-column: 2;
    }
    
    .up-aef0 {
        grid-column: 3;
    }
}

.sidebar_hard_54d8 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.sidebar_hard_54d8:hover img {
    transform: scale(1.05);
}

/* Navigation */
.frame_next_6e8c {
    display: none;
}

@media (min-width: 1024px) {
    .frame_next_6e8c {
        display: block;
    }
}

/* Grouped Navigation */
.card-east-9162 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mini-51bf {
    position: relative;
}

.article-light-2da0 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.mini-51bf .content-068f {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.content-068f {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.notification-silver-03d9 {
    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;
}

.notification-silver-03d9:hover,
.notification-silver-03d9.fn-active-349c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.full_d877 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .full_d877 {
        display: flex;
    }
}

/* Mobile Register Button */
.inner-74bd {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .inner-74bd {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.chip-0289 {
    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;
}

.chip-0289::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 */
.up-aef0 {
    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) {
    .up-aef0 {
        display: none;
    }
}

.up-aef0 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.up-aef0.fn-active-349c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.up-aef0.fn-active-349c span:nth-child(2) {
    opacity: 0;
}

.up-aef0.fn-active-349c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.west-16f2 {
    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;
}

.west-16f2.fn-active-349c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.popup-hovered-6fd5 {
    overflow: hidden;
}

.form_next_0663 {
    list-style: none;
    padding: 0.75rem 0;
}

.north-1869 {
    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;
}

.north-1869:hover,
.north-1869.fn-active-349c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.north-1869.surface-upper-a947 {
    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;
}

.north-1869.surface-upper-a947::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 */
.pagination-mini-d662 {
    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;
}

.highlight_39c2 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.highlight_39c2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.filter-active-271b {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.filter-active-271b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.backdrop_fresh_a736 {
    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;
}

.backdrop_fresh_a736:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.fresh-17bd {
    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;
}

.section-86d3 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.section-86d3:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.selected_184b {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.selected_184b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.backdrop_slow_efee {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.backdrop_slow_efee: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);
}

.notice_liquid_63a4 {
    font-size: 1em;
    font-weight: 700;
}

.up-4566 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.outer-f6e1 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.outer-f6e1::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;
}

.preview_c661 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .preview_c661 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-first-32b1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.full_5bc7 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hover_65ec {
    margin-bottom: 2rem;
}

.orange_9b15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .orange_9b15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.full-0a45 {
    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);
}

.hot_769c {
    font-size: 1.5rem;
}

.article_easy_6af7 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.card-middle-30cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table_white_2e2e {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.table_white_2e2e:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.module_slow_b022 {
    text-align: center;
    margin-bottom: 3rem;
}

.section_prev_be98 {
    margin-bottom: 1rem;
}

.medium_24f9 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tag_large_08de {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tag_large_08de {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .tag_large_08de.pagination-clean-bde5 {
        direction: rtl;
    }
    
    .tag_large_08de.pagination-clean-bde5 > * {
        direction: ltr;
    }
}

.text-short-9218 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.text-short-9218:first-child {
    margin-top: 0;
}

.simple_7075 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.block_short_497b {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.block_short_497b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.purple_30a4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .purple_30a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.light_0495 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tiny-51c7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.inner_31bd {
    list-style: none;
}

.inner_31bd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner_31bd li:last-child {
    border-bottom: none;
}

/* Games Features */
.silver_42ac {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.narrow-b2d4 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.filter-d6ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark_7cdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.stale_c61c {
    margin: 2rem 0;
}

.hot-8629 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.motion-e389 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.wood-1635 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.panel-short-b378 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.pressed-e0a4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pressed-e0a4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.west-4263 {
    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);
}

.west-4263:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.box-5da2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-last-30cb {
    font-size: 1.5rem;
}

.thumbnail-fluid-879f {
    color: var(--accent-color);
    margin: 0;
}

.north-3080 {
    list-style: none;
}

.north-3080 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.north-3080 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.disabled-brown-e0e8 {
    margin: 2rem 0;
}

.carousel_ef2a {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.iron_bdba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .iron_bdba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_hovered_0c65 {
    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);
}

.new-c5aa {
    font-size: 1.25rem;
}

.small-67df {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.popup-662c,
.icon-north-897d {
    text-align: center;
    margin: 2rem 0;
}

.easy-2ade,
.outline_pro_1a9f {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.item_blue_b394 {
    margin: 2rem 0;
    text-align: center;
}

.green_e74e {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.green_e74e::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;
}

.button-97cc {
    position: relative;
    z-index: 1;
}

.description-4692 {
    margin-bottom: 1rem;
}

.border-lite-8494 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.layout_8313 {
    margin-bottom: 3rem;
}

.element-f7ee {
    margin-top: 3rem;
}

.advanced_1473 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .advanced_1473 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_1473 .full-0a45 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.red_44f2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.black-8e2e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.hidden_dim_4b08 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.motion_b9e5 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .motion_b9e5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .motion_b9e5 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.liquid_17e6 {
    margin-bottom: 1rem;
}

.secondary_up_24d5 img {
    margin-bottom: 1rem;
}

.notification-e5b5 {
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar-a347 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.block-dcb9 {
    list-style: none;
}

.block-dcb9 li {
    margin-bottom: 0.5rem;
}

.block-dcb9 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.block-dcb9 a:hover {
    color: var(--accent-color);
}

.brown-85cd {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.up-4f2b {
    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);
}

.up-4f2b:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.nav-full-c0ef {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.nav-full-c0ef p {
    margin-bottom: 0.25rem;
}

.backdrop-31a9 {
    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) {
    .backdrop-31a9 {
        flex-direction: row;
    }
}

.smooth_8623 {
    text-align: center;
}

@media (min-width: 768px) {
    .smooth_8623 {
        text-align: left;
    }
}

.smooth_8623 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sidebar-6f83 {
    font-size: 0.75rem !important;
}

.footer_47d7 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tertiary-d86b {
    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);
    }
}

.wood-a391 {
    animation: fadeInUp 0.6s ease-out;
}

.paper-fdef {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.info_gold_fb0b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info_gold_fb0b {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.outline-outer-74cb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-outer-74cb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-basic-7342 {
    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);
}

.photo-basic-7342 .filter-d6ef {
    font-size: 1.25rem;
}

.photo-basic-7342 .soft_8c4c {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.medium-99c4 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .medium-99c4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_7eab {
    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);
}

.search_7eab:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_old_fd82 {
    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);
}

.south_40f1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.box-5b66 {
    color: var(--text-gray);
    line-height: 1.6;
}

.photo-new-8d79 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bottom_232d {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.bottom_232d .dark_7cdd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bottom_232d .hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_selected_005f {
    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);
}

.filter_07dc {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.filter_07dc img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.filter_07dc img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.content-d2dd {
    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);
}

.border_lower_bd68 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fast-137d {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fast-137d label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.fast-137d 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);
}

.fast-137d input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.fast-137d input::placeholder {
    color: var(--text-muted);
}

.content-south-96e2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.section_rough_702d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.section_rough_702d input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.cool-8018 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.cool-8018:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.iron_bdba {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .iron_bdba {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_hovered_0c65 {
    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);
}

.input_hovered_0c65 .new-c5aa {
    font-size: 1.25rem;
}

.input_hovered_0c65 .small-67df {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.hero-blue-8b88 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_upper_2c98 {
    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);
}

.tertiary_upper_2c98 .filter-d6ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_upper_2c98 .dark_7cdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tertiary_upper_2c98 .hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
}

.description_west_27c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma-be70 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.plasma-be70 .east_84da {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.plasma-be70 .blue_d86a {
    color: var(--text-gray);
    line-height: 1.6;
}

.complex_acbb {
    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);
}

.banner-purple-bca5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .banner-purple-bca5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-inner-84ca {
    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);
}

.widget-inner-84ca:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.action_7c77 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.disabled-e1e6 {
    flex: 1;
}

.avatar_dark_ce88 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.block_12fc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.grid_052a {
    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);
}

.grid_052a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.active-f9e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active-f9e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-warm-82b0 {
    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);
}

.card-warm-82b0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast_0f27 {
    font-size: 2rem;
    flex-shrink: 0;
}

.background-d5b5 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-cf61 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.video-d37a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_full_d345 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.yellow-f260 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper_silver_3445 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.wrapper_silver_3445 .large_0a9f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper_silver_3445 .preview-d8df {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed-5df0 {
    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);
}

.outline-purple-e5d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_pro_3eed {
    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);
}

.sort_pro_3eed .filter-d6ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.sort_pro_3eed .dark_7cdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sort_pro_3eed .hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider-333f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .slider-333f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_4fc2 {
    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);
}

.pink_4fc2:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.summary-e86f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary-e86f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.banner_341f {
    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);
}

.banner_341f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_right_652b {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_liquid_a01e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.motion-e389 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.basic-2ee5 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.soft_8e3a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slider-590d {
    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);
}

.slider-590d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_3be2 {
    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);
}

.modal_light_7f7b {
    flex: 1;
}

.article_7b9b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.alert_f80a {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.highlight_white_16dc {
    color: var(--text-gray);
    line-height: 1.6;
}

.box-yellow-1531 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze-8f81 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.bronze-8f81 .east_84da {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bronze-8f81 .blue_d86a {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-north-897d {
    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);
}

.outline-bronze-5fcd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-bronze-5fcd {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.header_8d5d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_8d5d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pattern-black-edd1 {
    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);
}

.pattern-black-edd1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.content-fc8a {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade_south_1d60 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.green_4faa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.accent_huge_6a8b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.frame-paper-63f6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout_97eb {
    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);
}

.hover_first_0e36 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero_46fe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action-e300 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-purple-e5d5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_pro_3eed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sort_pro_3eed .dark_7cdd {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sort_pro_3eed .hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
}

.main_middle_8809 {
    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);
}

.rough-32ef {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .rough-32ef {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rough-32ef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dropdown_19fb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dropdown_19fb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south_aae3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.white-a4af {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.message_8dd6 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.filter_fast_193e {
    padding: 1.5rem;
}

.thumbnail-left-4d08 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture-1e29 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.picture-1e29 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;
}

.picture-1e29 li:last-child {
    border-bottom: none;
}

.picture-1e29 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.fluid_03db {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fluid_03db {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification_lite_ab3b {
    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_lite_ab3b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge_c3a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-1b71 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focused_c214 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.black_a3cd {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.slider-left-e5c9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.section_right_9e82 {
    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);
}

.bottom-bfd7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-narrow-aa8f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dirty-dc6b {
    color: var(--text-gray);
    line-height: 1.6;
}

.grid-289d {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.input-d9f9 {
    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);
}

.frame-fresh-930e {
    text-align: center;
}

.alert-aba2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge-4ade {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.in_86f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.plasma-f23a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma-f23a .dark_7cdd {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.plasma-f23a .hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
}

.slider_bright_6775 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .slider_bright_6775 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider_bright_6775 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_1a84 {
    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_1a84:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hidden_f6d4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.label_warm_3a90 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dark_7cdd {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.tooltip-hard-983f {
    padding: 1.5rem;
}

.hover_under_f905 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-4c9d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-4c9d 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;
}

.form-4c9d li:last-child {
    border-bottom: none;
}

.form-4c9d li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.outline_first_8bc1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature_soft_4ccd {
    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);
}

.feature_soft_4ccd:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.grid-a97f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.last-ca15 {
    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);
}

.tertiary_old_fd82 {
    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;
}

.south_40f1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box-5b66 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-8c2b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.box_58e4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.photo-red-a324 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.element-wide-f6f8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.steel_0677 {
    display: flex;
    gap: 1rem;
}

.steel_0677 .north-b009 {
    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;
}

.hero_1643 {
    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);
}

.picture-up-89e8 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.disabled_e22c {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disabled_e22c 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;
}

.disabled_e22c li:last-child {
    border-bottom: none;
}

.disabled_e22c li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.block-3d17 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block-3d17 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block-3d17 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort-0579 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.sort-0579:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shade_b8b1 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.footer_7a8f {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.large_0a9f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.breadcrumb_pro_2058 {
    font-size: 1rem;
}

.filter-e5f3 {
    padding: 1.5rem;
}

.preview-d8df {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.thumbnail-soft-0ae4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.thumbnail-soft-0ae4 .frame-fresh-930e {
    text-align: center;
}

.thumbnail-soft-0ae4 .badge-4ade {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.thumbnail-soft-0ae4 .old-6dbd {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.primary_6d2b {
    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);
}

.primary_6d2b:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.card-liquid-8790 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-liquid-8790 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid-df19 {
    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);
}

.fluid-df19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex-b320 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list_right_2df6 {
    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);
}

.east_dceb {
    font-size: 2rem;
    flex-shrink: 0;
}

.box-soft-a3b8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button-8177 {
    color: var(--text-gray);
    line-height: 1.6;
}

.backdrop_9591 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bottom-f015 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pagination_f5e0 {
    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);
}

.tabs-prev-ef07 {
    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;
}

.tabs-prev-ef07.chip-1ff4 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.tabs-prev-ef07.list_c7dc {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.tabs-prev-ef07.tall_2d45 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.tabs-prev-ef07.fixed-a217 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.tabs-prev-ef07.overlay-full-38df {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.slider-0db6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focus-fresh-6152 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gold-243a {
    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);
}

.alert-slow-ac42 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.description_west_27c7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description_west_27c7 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;
}

.description_west_27c7 li:last-child {
    border-bottom: none;
}

.description_west_27c7 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.input_first_a06b {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .input_first_a06b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .input_first_a06b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero_fb09 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero_fb09:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero_fb09.tabs_4d8a {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .hero_fb09.tabs_4d8a {
        grid-column: span 3;
    }
}

.upper_1373 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.hero_fb09.tabs_4d8a .upper_1373 {
    background: rgba(6, 182, 212, 0.1);
}

.orange_4274 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.new_bdf7 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.hero_fb09.tabs_4d8a .new_bdf7 {
    color: var(--info-color);
}

.picture-advanced-ccf9 {
    padding: 1.5rem;
    text-align: center;
}

.pressed-7f6d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.hero_fb09.tabs_4d8a .pressed-7f6d {
    color: var(--info-color);
}

.form_next_f9a5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.notice-1d74 {
    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 */
.hover_simple_aef1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_simple_aef1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.paragraph_next_80e7 {
    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);
}

.paragraph_next_80e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-huge-d40e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tertiary_upper_2c98 {
    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);
}

.new-c5aa {
    font-size: 2rem;
    flex-shrink: 0;
}

.stone-ccf6 {
    flex: 1;
}

.carousel_ef2a {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lower_a9dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.red-a556 {
    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);
}

.status-liquid-5fff {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.info_d575 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tertiary-d86b {
    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);
}

.footer-3c34 {
  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);
}

.footer-3c34 .frame-fresh-930e {
    text-align: center;
}

.footer-3c34 .alert-aba2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.footer-3c34 .badge-4ade {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.motion_9218 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.old-b0b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-east-ef17 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.green_9f17 {
    color: var(--text-gray);
    line-height: 1.6;
}

.lower-6c4f {
    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);
}

.element-fluid-51e4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.main-e625 {
    color: var(--text-gray);
    line-height: 1.6;
}

.gold-217a {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gold-217a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gold-217a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.large_3481 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.large_3481:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.warm-7d31 {
    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);
}

.picture-3129 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hot_5d76 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.new_5732 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new_5732.liquid-8f00 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.new_5732.yellow-7e91 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.new_5732.shadow-orange-ac25 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.last-ff01 {
    padding: 1.5rem;
    text-align: center;
}

.pro_7245 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.block-9853 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.block-9853 .tabs_center_4d1e {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.video_dark_9f19 {
    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);
}

.video_dark_9f19:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.input_simple_8c8c {
  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);
}

.bronze-f3b1 {
    text-align: center;
}

.bronze-f3b1 .alert-aba2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.bronze-f3b1 .badge-4ade {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.gradient_d990 { text-align: center; }
.disabled_addc { text-align: left; }
.east_7bbe { text-align: right; }

.active-stale-6f6c { margin-bottom: 0; }
.pressed-ae82 { margin-bottom: 0.5rem; }
.inner_be5f { margin-bottom: 1rem; }
.east_faa2 { margin-bottom: 1.5rem; }
.dim_eecf { margin-bottom: 2rem; }

.menu-c79f { margin-top: 0; }
.fast_ef83 { margin-top: 0.5rem; }
.form_a4b0 { margin-top: 1rem; }
.banner-rough-5ed3 { margin-top: 1.5rem; }
.secondary-soft-97cb { margin-top: 2rem; }

.fn-hidden-349c { display: none; }
.fn-visible-349c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .outer-f6e1 {
        padding: 6rem 0 3rem;
    }
    
    .preview_c661 {
        text-align: center;
    }
    
    .tag_large_08de {
        text-align: center;
    }
    
    .orange_9b15 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .notification-7b38,
    .west-16f2,
    .green_e74e,
    .hidden_dim_4b08 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .outer-f6e1 {
        background: none;
    }
}

/* Providers Section */
.sort-e6e5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.wide_1dd5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .wide_1dd5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wide_1dd5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plasma-1e6d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.plasma-1e6d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.section_wide_debe {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rough-d05a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tabs-out-55c3 {
    list-style: none;
    padding: 0;
}

.tabs-out-55c3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.tabs-out-55c3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.summary-6af0 {
    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);
}

.summary-6af0 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.thumbnail-c1aa {
    padding: var(--section-padding);
}

.paragraph-stale-b7d3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph-stale-b7d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.red_f95c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.red_f95c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.background_complex_7e20 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.motion_9567 {
    display: flex;
    flex-direction: column;
}

.info_north_3bb6 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.plasma-6c13 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.list-bottom-797c {
    color: var(--accent-color);
}

.silver-914d {
    font-size: 1.25rem;
}

.hover_8c8e {
    margin-bottom: 1rem;
}

.hover_8c8e p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.grid-66a4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gallery-gold-38aa {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.frame-fresh-930e {
    text-align: center;
}

.alert-aba2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.badge-4ade {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.item_next_b490 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gradient-large-2ab4 {
    margin: 2rem 0;
}

.basic_dc68 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.basic_dc68 .filter-d6ef {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo_9456 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.component_stale_25c8 {
    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;
}

.component_stale_25c8:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph-paper-c6ea {
    font-size: 2rem;
}

.column-blue-7990 {
    display: flex;
    flex-direction: column;
}

.background_5c71 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dim-9a00 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.banner-9889 {
    padding: var(--section-padding);
}

.outline-tiny-594e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .outline-tiny-594e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .outline-tiny-594e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.easy-3bbc {
    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);
}

.easy-3bbc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.easy-3bbc .alert-aba2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.easy-3bbc .badge-4ade {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.easy-3bbc .small-ecc0 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.warm_f55c {
    margin-top: 4rem;
}

.cool-80a2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.table-black-7824 {
    overflow-x: auto;
}

.title-6c74 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.title-6c74 thead {
    background: var(--accent-color);
}

.title-6c74 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.title-6c74 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.title-6c74 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.title-6c74 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.link-bright-778b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice_out_27da {
    max-width: 900px;
    margin: 0 auto;
}

.list-2cae {
    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);
}

.list-2cae:hover {
    border-color: var(--accent-color);
}

.warm-4bae {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.warm-4bae h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.bronze-70a1 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.list-2cae.fn-active-349c .bronze-70a1 {
    transform: rotate(45deg);
}

.mask_3390 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.list-2cae.fn-active-349c .mask_3390 {
    max-height: 1000px;
}

.mask_3390 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.tag-0526 {
    padding: var(--section-padding);
}

.filter_07dc {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.disabled_63fb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow-c3a8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-c3a8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-active-8816 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon_over_ee8f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shade-gas-b433 {
    font-size: 2rem;
}

.summary-glass-eb8d {
    color: var(--text-white);
    margin: 0;
}

.up-6808 {
    list-style: none;
    padding: 0;
}

.up-6808 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.up-6808 li:last-child {
    border-bottom: none;
}

.status_light_b8d4 {
    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);
}

.status_light_b8d4 p {
    color: var(--success-color);
    margin: 0;
}

.black-d156 {
    margin-top: 3rem;
}

.picture-up-89e8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.grid_512f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid_512f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content_0b67 {
    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);
}

.main-4143 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.content_0b67 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.tertiary_last_269e {
    padding: var(--section-padding);
}

.gold-605e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gold-605e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-99bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.icon-99bb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blue_1957 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-ef2e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.gold-71e3 {
    flex: 1;
}

.overlay-wide-3f54 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hard_f718 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.info_active_c227 {
    color: var(--text-gray);
    line-height: 1.6;
}

.huge-7a5c {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.huge-7a5c:last-child {
    border-bottom: none;
}

/* Comparison Section */
.hidden-ec37 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.sidebar_13d9 {
    padding: var(--section-padding);
}

.outer_4780 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.narrow-d4d3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .narrow-d4d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-fixed-b847 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle-1fb3, .media-hard-b449, .tabs-d356 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.tabs-d356 {
    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 */
.prev-1cea {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.grid-outer-5f6a {
    margin: 2rem 0;
}

.carousel_cool_ad92 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.item-dim-56d1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.small_55ee {
    list-style: none;
    padding: 0;
}

.small_55ee 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;
}

.small_55ee li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.small_55ee li:last-child {
    border-bottom: none;
}

.outline_15f8 {
    text-align: center;
    margin-top: 2rem;
}

.pattern_current_d1bf {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.feature-pro-3229 {
    padding: var(--section-padding);
}

.sort_gold_a742 {
    margin: 2rem 0;
}

.motion_7ab7 {
    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) {
    .motion_7ab7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.motion_7ab7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.icon-210f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.input_76c7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.avatar-middle-0f14 {
    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;
}

.widget-91f5 {
    flex: 1;
}

.item-dynamic-cae4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.aside_f7d4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.media-8e17 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.highlight_west_b8ef {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .highlight_west_b8ef {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gradient_0598 {
    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);
}

.gradient_0598:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gradient_0598 .alert-aba2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gradient_0598 .badge-4ade {
    color: var(--text-gray);
    font-size: 1rem;
}

.background_1f7d {
    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);
}

.backdrop-bc43 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.backdrop-bc43 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.input-df51 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .input-df51 {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-1b72 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.thick_8d19 {
    margin-bottom: 1.5rem;
}

.thick_8d19 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.thick_8d19 input,
.thick_8d19 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;
}

.thick_8d19 input:focus,
.thick_8d19 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.mask_51ba {
    width: 100%;
    margin-top: 1rem;
}

.soft-5de2 {
    display: flex;
    align-items: center;
}

.photo-dc64 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.pagination-clean-6806 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.right-3189 {
    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;
}

.search-2608 {
    color: var(--text-gray);
}

.steel_79a0 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.filter_0ad6 {
    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);
}

.filter_0ad6 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.row_bronze_79f4 {
    margin-top: 3rem;
}

.pagination_glass_c432 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.slider-basic-98cc {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full_3408 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.alert_c2bf {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert_c2bf:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.breadcrumb-9f7f {
    padding: var(--section-padding);
}

.carousel-cold-c0ad {
    margin: 2rem 0;
}

.status-f790 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.overlay-d1c6 {
    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;
}

.overlay-d1c6:hover, .overlay-d1c6.fn-active-349c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.simple-07e3 {
    display: none;
}

.simple-07e3.fn-active-349c {
    display: block;
}

.image_light_3dc8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container_plasma_14a6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-light-edd4 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.footer-light-edd4 ul {
    list-style: none;
    padding: 0;
}

.footer-light-edd4 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.footer-light-edd4 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.stone-ed49 {
    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 */
.wood-0fd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table_645f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface_prev_01aa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gradient-7948 {
    color: var(--accent-color);
    margin: 0;
}

.liquid-8ba3 {
    display: flex;
    gap: 1.5rem;
}

.copper-cf5a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tooltip-73a7 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.column_cool_6f52 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.column_cool_6f52.dynamic-115a {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.column_cool_6f52.avatar-b751 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.column_cool_6f52.paragraph_4f96 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.box-paper-6efa {
    margin-top: 2rem;
}

.main_tiny_f163 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fixed-99bd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .fixed-99bd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver_f2f8 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.link_128b {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.carousel_right_a6bc {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.fast-2671 {
    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 */
.active-9a64 {
    padding: var(--section-padding);
}

.widget_short_03f8 {
    margin: 2rem 0;
}

.item_e1ae {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.pressed_fccc {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.cool_1bde {
    list-style: none;
    padding: 0;
}

.cool_1bde 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;
}

.cool_1bde li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.cool_1bde li:last-child {
    border-bottom: none;
}

.smooth_6927 {
    margin: 2rem 0;
}

.orange_872a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.carousel-7e70 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .carousel-7e70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.next_71d5 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.disabled_12dc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.slider-inner-dd0b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.surface-2974 {
    margin-top: 2rem;
}

.avatar_dark_ce88 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.brown_cae9 {
    list-style: none;
    padding: 0;
}

.highlight-fast-464a {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.highlight-fast-464a a {
    color: var(--accent-color);
    text-decoration: none;
}

.highlight-fast-464a a:hover {
    text-decoration: underline;
}

.shadow_outer_1a7a {
    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 */
.hidden-e2d6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.row-stale-69b4 {
    margin: 2rem 0;
}

.item_fluid_ad50 {
    margin-bottom: 3rem;
}

.item_fluid_ad50 .item-dim-56d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gas-d7b6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.orange_ac6d {
    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);
}

.orange_ac6d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.fast_5135 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .fast_5135 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-f7ad {
    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 */
.tertiary_green_f11f {
    padding: var(--section-padding);
}

.cold_3170 {
    margin: 2rem 0;
}

.module-stone-823b {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider-fad4 {
    overflow-x: auto;
    margin: 2rem 0;
}

.pro_cf36 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.slow_cc10 {
    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;
}

.image_024c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.status-down-dc11 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .status-down-dc11 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade-e2b3 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shade-e2b3 .filter-d6ef {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.shade-e2b3 .dark_7cdd {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.box_394b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.photo_f003 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_759d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video_759d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_pressed_1a91 {
    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;
}

.gallery_pressed_1a91:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.preview-first-16d9 {
    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);
}

.input-next-e5b9 {
    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;
}

.motion_aeeb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lite_d736 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.active_east_fdc7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.short-08ef {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.media_7c59 {
    color: var(--text-white);
    font-weight: 600;
}

.clean-bc36 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dirty-0c82 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dirty-0c82 .north-b009 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.highlight_121a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .highlight_121a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.chip_iron_9413 {
    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);
}

.chip_iron_9413:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.chip_iron_9413 .alert-aba2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.chip_iron_9413 .badge-4ade {
    color: var(--text-gray);
    font-size: 1rem;
}

.action-9c0a {
    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);
}

.layout-basic-49c2 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.layout-basic-49c2 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.frame-paper-63f6 {
    margin: 2rem 0;
}

.layout_97eb {
    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);
}

.layout_97eb:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.hover_first_0e36 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.steel-d64b {
    flex: 1;
}

.hero_46fe {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action-e300 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.outline-purple-e5d5 {
    margin: 2rem 0;
}

.sort_pro_3eed {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_pro_3eed .dark_7cdd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.sort_pro_3eed .hover_under_f905 {
    color: var(--text-gray);
    margin: 0;
}

.main_middle_8809 {
    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);
}

.main_middle_8809 .easy-2ade {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.box_394b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.heading_3be2 {
    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;
}

.modal_light_7f7b {
    flex: 1;
}

.alert_f80a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.highlight_white_16dc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.tertiary_old_fd82 {
    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;
}

.gradient_center_5b55 {
    flex: 1;
}

.south_40f1 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.box-5b66 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.photo-red-a324 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.element-wide-f6f8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.steel_0677 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.steel_0677 .north-b009 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hero_1643 {
    margin-top: 2rem;
}

.hero_1643 .picture-up-89e8 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.message_dim_55b1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-d9f9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .input-d9f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input-d9f9 .frame-fresh-930e {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.in_86f0 {
    margin: 2rem 0;
}

.plasma-f23a {
    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 */
.form_5262 {
    padding: var(--section-padding);
}

.tooltip-hard-983f {
    margin-top: 1rem;
}

.form-4c9d {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.form-4c9d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.form-4c9d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.dropdown_easy_5b7e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.copper_7c75 {
    margin: 2rem 0;
}

.progress_a3fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.tabs_cool_cced {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-medium-babf {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.info_d2ba {
    margin: 2rem 0;
}

.badge_stale_7246 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.badge_stale_7246 .item-dim-56d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.banner-wood-653c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .banner-wood-653c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.east_e430 {
    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);
}

.hover_4f14 {
    color: var(--text-white);
    font-weight: 600;
}

.fresh_4d26 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.top_2706 {
    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);
}

.top_2706 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.carousel-1805 {
    padding: var(--section-padding);
}

.hovered-1cd2 {
    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;
}

.hovered-1cd2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.description_6bcd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.description_6bcd .main-4143 {
    font-size: 2rem;
    flex-shrink: 0;
}

.description_6bcd .west-3194 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.focused_fd49 {
    flex: 1;
}

.primary_9089 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.component_copper_1492 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component_copper_1492 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.component_copper_1492 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.upper_9a56 {
    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);
}

.upper_9a56 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.upper_9a56 strong {
    color: var(--warning-color);
}

/* Slots Section */
.dynamic_007f {
    padding: var(--section-padding);
}

.outline_full_d345 {
    margin: 2rem 0;
}

/* Table Games Section */
.label-light-8c10 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.yellow-f260 {
    margin: 2rem 0;
}

.wrapper_silver_3445 {
    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);
}

.wrapper_silver_3445:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.wrapper_silver_3445 .large_0a9f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper_silver_3445 .preview-d8df {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.pressed-5df0 {
    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);
}

.pressed-5df0 .easy-2ade {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.module-bronze-833f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_352a {
    margin: 2rem 0;
}

.filter-glass-5573 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gold_7a08 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card_mini_aa71 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.next-018e {
    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);
}

.next-018e:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.next-018e.fn-active-349c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort-new-1510 {
    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);
}

.small_ad41 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.small_ad41 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.dropdown-clean-0121 {
    padding: var(--section-padding);
}

.main_513b {
    margin: 2rem 0;
}

.footer_a076 {
    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);
}

.footer_a076:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .footer_a076 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.small-bba3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tall_d920 {
    flex: 1;
}

.blue-8b67 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.accent_selected_4520 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.surface-west-82cb {
    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;
}

.box_large_52bf {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disabled-inner-a752 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tag_lower_7c70 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pattern_short_c219 {
    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;
}

.pattern_short_c219:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-fluid-6085 {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.detail_wide_ddd5 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.detail_wide_ddd5 strong {
    color: var(--accent-color);
}

/* New Games Section */
.down_bdcd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.in_8603 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in_8603 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in_8603 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.frame-tall-6855 {
    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;
}

.frame-tall-6855:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.description-5c71 {
    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;
}

.paragraph_yellow_f6c8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.filter_liquid_41c5 {
    font-size: 2rem;
}

.shadow-0fe7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.hard-70a1 {
    flex: 1;
}

.image-323b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.alert-thick-f4ae {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mask-prev-3ae7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.media-soft-7464 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blue_190f {
    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;
}

.gas_c79a {
    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;
}

.gas_c79a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.element-upper-ccc2 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.rough-cb96 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block_advanced_cfba {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .block_advanced_cfba {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup-fast-6ae9 {
    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);
}

.filter-simple-105c {
    color: var(--text-white);
    font-weight: 600;
}

.caption-de37 {
    color: var(--accent-color);
    font-weight: 600;
}

.tall_3467 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tall_3467 strong {
    color: var(--accent-color);
}

/* Security Section */
.preview-iron-ae4d {
    padding: var(--section-padding);
}

/* Benefits Section */
.main-west-b792 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.middle_1105 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.paper-d4f6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-6353 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.button_fresh_9d85 {
    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) {
    .button_fresh_9d85 {
        flex-direction: column;
        gap: 1rem;
    }
}

.button_fresh_9d85:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.button_fresh_9d85 .tertiary_old_fd82 {
    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;
}

.button_fresh_9d85 .gradient_center_5b55 {
    flex: 1;
}

.button_fresh_9d85 .south_40f1 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.button_fresh_9d85 .box-5b66 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.photo_a15d {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_a15d .carousel_ef2a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.photo_a15d .hero-blue-8b88 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo_a15d .hero-blue-8b88 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.photo_a15d .hero-blue-8b88 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.iron_e111 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.in-e6c0 {
    padding: var(--section-padding);
}

.breadcrumb_current_1482 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .breadcrumb_current_1482 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-south-32de {
    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);
}

.grid-south-32de:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.grid-south-32de .hidden-36fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid-south-32de .detail-64ef {
    flex: 1;
}

.grid-south-32de .east_84da {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-south-32de .picture-b4f9 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.module-858a {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-858a .outline-dark-1998 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.module-858a .grid_smooth_ca38 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.module-858a .grid_smooth_ca38 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);
}

.module-858a .grid_smooth_ca38 li:last-child {
    border-bottom: none;
}

.module-858a .grid_smooth_ca38 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;
}

.module-858a .grid_smooth_ca38 li strong {
    color: var(--text-white);
}

.layout_basic_5a7d {
    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);
}

.layout_basic_5a7d p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.layout_basic_5a7d strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.white-147b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.widget-1d0d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .widget-1d0d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content_293b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.content_293b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.component-29a4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary_47b7 {
    font-size: 2rem;
}

.table_right_3ed7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.complex_68c8 {
    flex: 1;
}

.active_west_e31a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active_west_e31a li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.active_west_e31a li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.button_86d9 {
    margin-top: 3rem;
}

.item_e1ae {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.pressed_fccc {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.cool_1bde {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cool_1bde li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.cool_1bde li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.cool_1bde li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.filter-7645 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_wood_72f6 {
    margin: 2rem 0;
}

.pink_2955 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pink_2955 .item-dim-56d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tertiary_hot_28fd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tertiary_hot_28fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.breadcrumb_liquid_331a {
    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);
}

.breadcrumb_liquid_331a:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.yellow-34ca {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advanced-4890 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.narrow-151e {
    padding: var(--section-padding);
}

.alert-huge-4ace {
    margin: 2rem 0;
}

.link-9341 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .link-9341 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .link-9341 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article_dim_f467 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.article_dim_f467:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.solid-36ce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mini_c416 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.current_5593 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.current_5593.inner-6f0f {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.filter-c551 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.green-c604 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.row-4505 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb_dark_a189 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.left_aaa0 {
    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);
}

.left_aaa0 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.left_aaa0 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.carousel_8dc9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.background_42d9 {
    margin: 2rem 0;
}

.disabled-clean-a7e7 {
    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) {
    .disabled-clean-a7e7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.disabled-clean-a7e7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.disabled-clean-a7e7::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);
}

.item_b7a6 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.texture-dcc5 {
    flex: 1;
}

.popup-steel-5b60 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.huge_2806 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.huge_2806 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.hover_basic_bbcf {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text_50f3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wood-bc1b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wood-bc1b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dark_6c69 {
    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);
}

.lite-15d3 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.small_185b {
    flex: 1;
}

.aside_7919 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.liquid-bd4e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.shadow_13f0 {
    margin-top: 2rem;
    text-align: center;
}

.info_8575 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.info_8575 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.card-liquid-8790 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-liquid-8790 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid-df19 {
    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);
}

.fluid-df19:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.fluid-df19 .huge_c3a9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-df19 .tooltip-1b71 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.fluid-df19 .focused_c214 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.fluid-df19 .black_a3cd {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.logo-beef {
    padding: var(--section-padding);
}

.list_right_2df6 .carousel_ffcd {
    flex: 1;
}

/* Promo Calendar Section */
.focus-next-44da {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.box-7055 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .box-7055 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow_59e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outer-55a2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.block-short-7320 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-485f {
    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_67cc {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.aside-7da6 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.button-short-8690 {
    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);
}

.button-short-8690 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.button-short-8690 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hero_52f2 {
    padding: var(--section-padding);
}

.hidden_438f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hidden_438f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inner_501e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_6416 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.orange_f238 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orange_f238 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.sidebar_fb2a {
    margin-top: 3rem;
}

.sidebar_fb2a .item_e1ae {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.sidebar_fb2a .pressed_fccc {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sidebar_fb2a .cool_1bde {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.sidebar_fb2a .cool_1bde li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.sidebar_fb2a .cool_1bde li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.sidebar_fb2a .cool_1bde li strong {
    color: var(--warning-color);
}

.paper_976c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.paper_976c strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.content_complex_e462 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_a4a2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_a4a2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-ffbb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.steel-ffbb .item-dim-56d1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.plasma-e292 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overlay-full-7dd3 {
    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);
}

.overlay-full-7dd3:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.chip-small-d7d4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-stale-8984 {
    flex: 1;
}

.paragraph-ba4e {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.notification-152b {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.top_0806 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.article_0296 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.media-center-bab5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .media-center-bab5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-7d97 {
    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-7d97:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.card-fluid-7d34 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.grid-f395 {
    color: var(--text-gray);
    font-size: 1rem;
}

.backdrop-bc43 {
    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);
}

.hard-9318 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.hard-9318 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.notice-c28d { 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; }
.table_white_2e2e, .block_short_497b { max-width:100%; height:auto; }

.pagination-mini-d662, .backdrop_fresh_a736, .fresh-17bd { white-space:normal; }

.preview_c661,
.tag_large_08de,
.hover_simple_aef1,
.card-liquid-8790,
.outline-purple-e5d5,
.gold-217a {
  flex-wrap:wrap;
}

[class*="grid"],
.media-center-bab5,
.link-9341,
.advanced_1473 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.outer-f6e1 img,
.tag_large_08de img,
.card-middle-30cc img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.hero-first-32b1, .full_5bc7,
.section_prev_be98, .medium_24f9 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.table-black-7824 { width:100%; overflow-x:auto; }
.table-black-7824 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.wide_1dd5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .wide_1dd5 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.plasma-1e6d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.outline-tiny-594e,
.fresh_53ef,
.tooltip-952f,
.tag_brown_a834,
.highlight_west_b8ef,
.media-center-bab5,
.link-9341,
.advanced_1473,
.input_simple_8c8c,
.main_513b,
.wide_1dd5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .outline-tiny-594e,
  .fresh_53ef,
  .tooltip-952f,
  .tag_brown_a834,
  .highlight_west_b8ef,
  .media-center-bab5,
  .link-9341,
  .advanced_1473,
  .input_simple_8c8c,
  .main_513b,
  .wide_1dd5 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.easy-3bbc,
.gradient_0598,
.detail-7d97,
.full-0a45,
.article_dim_f467,
.bronze-f3b1,
.footer_a076,
.plasma-1e6d {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.summary-smooth-c153,
.article_liquid_409b,
.carousel_ec63 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.summary-smooth-c153 > *,
.article_liquid_409b > *,
.carousel_ec63 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 86d4 */
.ghost-box-a0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.3;
}
