/* {$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;
}

.container-334a {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.surface_pink_4618 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .surface_pink_4618 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .surface_pink_4618 {
        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 */
.dark-7e53 {
    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);
}

.red_eb65 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .red_eb65 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .info-a067 {
        grid-column: 1;
    }
    
    .north-914c {
        grid-column: 2;
    }
    
    .preview_ab0a {
        grid-column: 3;
    }
}

.info-a067 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.info-a067:hover img {
    transform: scale(1.05);
}

/* Navigation */
.backdrop_9527 {
    display: none;
}

@media (min-width: 1024px) {
    .backdrop_9527 {
        display: block;
    }
}

/* Grouped Navigation */
.red-3642 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.active-9f96 {
    position: relative;
}

.dark-e942 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.active-9f96 .pro-c7b3 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.pro-c7b3 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.alert_fluid_21df {
    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;
}

.alert_fluid_21df:hover,
.alert_fluid_21df.fn-active-59e2 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.primary-fluid-bdb0 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .primary-fluid-bdb0 {
        display: flex;
    }
}

/* Mobile Register Button */
.north-914c {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .north-914c {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.pro-fff1 {
    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;
}

.pro-fff1::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 */
.preview_ab0a {
    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) {
    .preview_ab0a {
        display: none;
    }
}

.preview_ab0a span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.preview_ab0a.fn-active-59e2 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.preview_ab0a.fn-active-59e2 span:nth-child(2) {
    opacity: 0;
}

.preview_ab0a.fn-active-59e2 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.video_3dd9 {
    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;
}

.video_3dd9.fn-active-59e2 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.article_next_5ed8 {
    overflow: hidden;
}

.notification_46f7 {
    list-style: none;
    padding: 0.75rem 0;
}

.module-f0f4 {
    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;
}

.module-f0f4:hover,
.module-f0f4.fn-active-59e2 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.module-f0f4.chip_b486 {
    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;
}

.module-f0f4.chip_b486::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 */
.badge_bd19 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.chip_gold_1e2f {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.chip_gold_1e2f:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.pattern_pro_2784 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.pattern_pro_2784:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.link_c55b {
    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;
}

.link_c55b:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.advanced_b22e {
    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;
}

.grid-full-02e1 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.grid-full-02e1:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hovered_00d5 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.hovered_00d5:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.dropdown_3b65 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.dropdown_3b65: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);
}

.shadow-cool-4a2c {
    font-size: 1em;
    font-weight: 700;
}

.west-25c2 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.hidden_lite_a66e {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hidden_lite_a66e::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;
}

.mask-09a3 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .mask-09a3 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.message_11ac {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wood-2d59 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.container_west_f086 {
    margin-bottom: 2rem;
}

.pro-6927 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pro-6927 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_c10d {
    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);
}

.warm_3473 {
    font-size: 1.5rem;
}

.primary_upper_5e01 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.static-8aa5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-ead3 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.notification-ead3:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.static-a4b5 {
    text-align: center;
    margin-bottom: 3rem;
}

.glass-2069 {
    margin-bottom: 1rem;
}

.backdrop_b421 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.layout-ebaf {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .layout-ebaf {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .layout-ebaf.row-bb15 {
        direction: rtl;
    }
    
    .layout-ebaf.row-bb15 > * {
        direction: ltr;
    }
}

.center_ae71 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.center_ae71:first-child {
    margin-top: 0;
}

.secondary_edce {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.detail-center-552e {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.detail-center-552e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.icon-640e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .icon-640e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.over-8b81 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.label-dc1c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.accent-ca9c {
    list-style: none;
}

.accent-ca9c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accent-ca9c li:last-child {
    border-bottom: none;
}

/* Games Features */
.new-6c48 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.gas_9c86 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.component_bf52 {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail_b4a8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.outline-a3a3 {
    margin: 2rem 0;
}

.layout-full-6669 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hot_f21b {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.block_lower_046e {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.down_cebf {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.dropdown_e800 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_e800 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-1c14 {
    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);
}

.hero-1c14:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.clean-0414 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.advanced-a17a {
    font-size: 1.5rem;
}

.status-prev-42eb {
    color: var(--accent-color);
    margin: 0;
}

.notification_green_eaa4 {
    list-style: none;
}

.notification_green_eaa4 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.notification_green_eaa4 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.slow_edc9 {
    margin: 2rem 0;
}

.header_tall_5dcc {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.silver-c2c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .silver-c2c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-d566 {
    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);
}

.popup_purple_775e {
    font-size: 1.25rem;
}

.pressed_bf32 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.feature_6c56,
.box_794e {
    text-align: center;
    margin: 2rem 0;
}

.row-in-fa25,
.west_d3bc {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.nav-first-b39d {
    margin: 2rem 0;
    text-align: center;
}

.easy-0d86 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.easy-0d86::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;
}

.photo_90cd {
    position: relative;
    z-index: 1;
}

.tertiary-0f35 {
    margin-bottom: 1rem;
}

.tabs_hard_4955 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card_large_b9af {
    margin-bottom: 3rem;
}

.pagination_7213 {
    margin-top: 3rem;
}

.tabs-250f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tabs-250f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs-250f .focus_c10d {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-yellow-da97 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.article-eeb3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.tag_5114 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.shade-wide-690d {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .shade-wide-690d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shade-wide-690d {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.hover-next-dd9a {
    margin-bottom: 1rem;
}

.article_ad4b img {
    margin-bottom: 1rem;
}

.orange_3e1d {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-9812 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.wood-ee88 {
    list-style: none;
}

.wood-ee88 li {
    margin-bottom: 0.5rem;
}

.wood-ee88 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.wood-ee88 a:hover {
    color: var(--accent-color);
}

.medium_c2d7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.light_db90 {
    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);
}

.light_db90:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.frame_basic_0db6 {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.frame_basic_0db6 p {
    margin-bottom: 0.25rem;
}

.complex-f16b {
    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) {
    .complex-f16b {
        flex-direction: row;
    }
}

.outline-fluid-a359 {
    text-align: center;
}

@media (min-width: 768px) {
    .outline-fluid-a359 {
        text-align: left;
    }
}

.outline-fluid-a359 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cool_3fed {
    font-size: 0.75rem !important;
}

.pagination_green_cfbb {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.info_silver_fc7b {
    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);
    }
}

.section-middle-8699 {
    animation: fadeInUp 0.6s ease-out;
}

.backdrop-9b5f {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.button-36d4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .button-36d4 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.container-active-c610 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-active-c610 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out_c8c3 {
    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);
}

.out_c8c3 .component_bf52 {
    font-size: 1.25rem;
}

.out_c8c3 .hero_fb19 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.old_26e5 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .old_26e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-d988 {
    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);
}

.article-d988:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-huge-da3d {
    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);
}

.panel_dim_3a62 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.gradient_0782 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-prev-10e1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.layout-medium-27b4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.layout-medium-27b4 .detail_b4a8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.layout-medium-27b4 .iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
}

.iron_6c85 {
    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);
}

.disabled-f973 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.disabled-f973 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.disabled-f973 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.white_220e {
    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);
}

.secondary_huge_f231 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blue-5bc4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blue-5bc4 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.blue-5bc4 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);
}

.blue-5bc4 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.blue-5bc4 input::placeholder {
    color: var(--text-muted);
}

.notice_tiny_3705 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.first-497e {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.first-497e input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.primary-new-97b6 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.primary-new-97b6:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.silver-c2c9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .silver-c2c9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hard-d566 {
    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);
}

.hard-d566 .popup_purple_775e {
    font-size: 1.25rem;
}

.hard-d566 .pressed_bf32 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.cold_6539 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_2d14 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.alert_2d14 .component_bf52 {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert_2d14 .detail_b4a8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.alert_2d14 .iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
}

.mask-first-0ba6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.out_c4ec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.out_c4ec .filter-stale-0021 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.out_c4ec .status-pro-34db {
    color: var(--text-gray);
    line-height: 1.6;
}

.warm-8317 {
    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);
}

.element-f7bb {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-f7bb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popup_over_f5df {
    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);
}

.popup_over_f5df:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.component-c161 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pattern-fast-d581 {
    flex: 1;
}

.logo_fixed_da16 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.surface_orange_ffd4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-liquid-65ff {
    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);
}

.module-liquid-65ff:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.overlay_lower_18a7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay_lower_18a7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hot_0fe1 {
    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);
}

.hot_0fe1:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gold-95c6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.box_fa5f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.solid-2313 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.main_fabb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.section-paper-a22d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pressed_d904 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hidden-a6d6 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.hidden-a6d6 .header_inner_da0f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-a6d6 .block_501e {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-6094 {
    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);
}

.message_upper_0115 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_812f {
    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);
}

.form_812f .component_bf52 {
    font-size: 2rem;
    flex-shrink: 0;
}

.form_812f .detail_b4a8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form_812f .iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
}

.label-6079 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-6079 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.old_3c60 {
    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);
}

.old_3c60:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.carousel_a234 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .carousel_a234 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.basic-17c0 {
    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);
}

.basic-17c0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.next_1ccb {
    font-size: 2rem;
    flex-shrink: 0;
}

.layout_solid_e553 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hot_f21b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.solid_7bad {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shadow-up-e77a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.preview-ab89 {
    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);
}

.preview-ab89:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link_east_1877 {
    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);
}

.sidebar-dim-19f4 {
    flex: 1;
}

.heading_b950 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.column_82a0 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.panel_79be {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline_pink_1228 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.description-144f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.description-144f .filter-stale-0021 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description-144f .status-pro-34db {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_794e {
    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);
}

.secondary_7ff6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .secondary_7ff6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.info-05c7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-05c7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_b491 {
    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);
}

.badge_b491:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.south_7c10 {
    font-size: 2rem;
    flex-shrink: 0;
}

.complex_d57b {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.video-7a89 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.blue-0933 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.summary_smooth_dc68 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.input_green_35e3 {
    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);
}

.over-1e27 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip-27c0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-left-ece2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.message_upper_0115 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.form_812f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form_812f .detail_b4a8 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.form_812f .iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_west_576a {
    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);
}

.picture-0456 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-0456 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-0456 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.main-advanced-1662 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.main-advanced-1662:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-5b5d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop-0ea5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary-51a0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.pattern-wide-337b {
    padding: 1.5rem;
}

.footer_old_e1b4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-silver-fd63 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-silver-fd63 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;
}

.progress-silver-fd63 li:last-child {
    border-bottom: none;
}

.progress-silver-fd63 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.item-29a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .item-29a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thumbnail_c762 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.thumbnail_c762:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar_bb19 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-29c1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-9279 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.search_9ea8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.summary-3e32 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dark-2f30 {
    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);
}

.text-7d04 {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel_medium_f71c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.box_e0c7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini-7bc0 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.light-63de {
    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);
}

.pagination_79db {
    text-align: center;
}

.card_6b2f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short_53de {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.wrapper_e2f8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-5da7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-5da7 .detail_b4a8 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.frame-5da7 .iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_d344 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block_d344 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block_d344 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link_pink_8818 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.link_pink_8818:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_7c77 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav_easy_d0d8 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.detail_b4a8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.top-7616 {
    padding: 1.5rem;
}

.iron-b59f {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pro-853d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-853d 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;
}

.pro-853d li:last-child {
    border-bottom: none;
}

.pro-853d li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.media_8592 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.motion-0f29 {
    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);
}

.motion-0f29:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.main-action-86a1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.caption-west-96ab {
    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);
}

.texture-huge-da3d {
    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;
}

.panel_dim_3a62 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gradient_0782 {
    color: var(--text-gray);
    line-height: 1.6;
}

.top-99bf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.element_prev_0aec {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.tabs-4202 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.preview-active-312b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article_0b86 {
    display: flex;
    gap: 1rem;
}

.article_0b86 .inner_2b6c {
    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;
}

.description-ead7 {
    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);
}

.accent_3d95 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.modal-last-875b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-last-875b 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;
}

.modal-last-875b li:last-child {
    border-bottom: none;
}

.modal-last-875b li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.popup-under-68e8 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .popup-under-68e8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popup-under-68e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sort_up_1161 {
    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_up_1161:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.layout-130a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.info_3696 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.header_inner_da0f {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.video-wide-ac28 {
    font-size: 1rem;
}

.info-red-1a5e {
    padding: 1.5rem;
}

.block_501e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-narrow-42be {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-narrow-42be .pagination_79db {
    text-align: center;
}

.footer-narrow-42be .short_53de {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-narrow-42be .slow-abfc {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.outer_2817 {
    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);
}

.outer_2817:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.under_4a03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_4a03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_9efa {
    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);
}

.grid_9efa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first-bfc4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text-complex-c949 {
    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);
}

.copper_5a40 {
    font-size: 2rem;
    flex-shrink: 0;
}

.overlay-ae35 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.mask_5fde {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar_fixed_eafd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.slider-2b2d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.silver-8424 {
    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);
}

.static_3c3e {
    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;
}

.static_3c3e.primary_left_8478 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.static_3c3e.active-dirty-7e00 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.static_3c3e.grid_6aa9 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.static_3c3e.pattern_full_140b {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.static_3c3e.mask_medium_8254 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.glass-c396 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.section-7b14 {
    color: var(--text-gray);
    line-height: 1.6;
}

.box_copper_ab51 {
    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);
}

.shade-0ad8 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.mask-first-0ba6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mask-first-0ba6 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;
}

.mask-first-0ba6 li:last-child {
    border-bottom: none;
}

.mask-first-0ba6 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.focus-a78d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .focus-a78d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus-a78d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-pro-47cc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.texture-pro-47cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-pro-47cc.module_new_d0f0 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .texture-pro-47cc.module_new_d0f0 {
        grid-column: span 3;
    }
}

.breadcrumb-1aa8 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.texture-pro-47cc.module_new_d0f0 .breadcrumb-1aa8 {
    background: rgba(6, 182, 212, 0.1);
}

.plasma-db0f {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.prev-3ac3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.texture-pro-47cc.module_new_d0f0 .prev-3ac3 {
    color: var(--info-color);
}

.video-659e {
    padding: 1.5rem;
    text-align: center;
}

.tooltip_fresh_77a7 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.texture-pro-47cc.module_new_d0f0 .tooltip_fresh_77a7 {
    color: var(--info-color);
}

.box-left-d219 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.button_e711 {
    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 */
.header-dynamic-2e58 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .header-dynamic-2e58 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface-under-c255 {
    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);
}

.surface-under-c255:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tall_101f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_2d14 {
    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);
}

.popup_purple_775e {
    font-size: 2rem;
    flex-shrink: 0;
}

.huge_54dd {
    flex: 1;
}

.header_tall_5dcc {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pagination_bright_c016 {
    color: var(--text-gray);
    line-height: 1.6;
}

.panel-b5ce {
    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);
}

.focused-3652 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.form_full_27e4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info_silver_fc7b {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stone_b478 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone_b478 .pagination_79db {
    text-align: center;
}

.stone_b478 .card_6b2f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.stone_b478 .short_53de {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focus_0f41 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.picture_gas_2868 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-wide-16e0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.heading_ee7b {
    color: var(--text-gray);
    line-height: 1.6;
}

.table_thick_7605 {
    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);
}

.dim_effc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.over_c6f6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.black_fe52 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .black_fe52 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .black_fe52 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool_88c5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.cool_88c5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading-df5e {
    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);
}

.table_f97d {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.grid_135a {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.hovered-1826 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hovered-1826.frame_32d6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.hovered-1826.label-d35c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.hovered-1826.breadcrumb_e18d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.container-narrow-34e6 {
    padding: 1.5rem;
    text-align: center;
}

.shadow-basic-668c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notification-first-7da1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.notification-first-7da1 .action-f226 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.gold-4f13 {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: var(--primary-bg);
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--accent-color);
}

.gold-4f13:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.panel-west-2202 {
  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);
}

.list-8c34 {
    text-align: center;
}

.list-8c34 .card_6b2f {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.list-8c34 .short_53de {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.iron_14bc { text-align: center; }
.breadcrumb_3135 { text-align: left; }
.nav-b220 { text-align: right; }

.focus_copper_6cf6 { margin-bottom: 0; }
.full_ab8c { margin-bottom: 0.5rem; }
.glass-a261 { margin-bottom: 1rem; }
.component-cold-7161 { margin-bottom: 1.5rem; }
.tabs-glass-0152 { margin-bottom: 2rem; }

.plasma-bdc1 { margin-top: 0; }
.orange-b6c7 { margin-top: 0.5rem; }
.bottom_234d { margin-top: 1rem; }
.mini_f9c5 { margin-top: 1.5rem; }
.detail-5434 { margin-top: 2rem; }

.fn-hidden-59e2 { display: none; }
.fn-visible-59e2 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .hidden_lite_a66e {
        padding: 6rem 0 3rem;
    }
    
    .mask-09a3 {
        text-align: center;
    }
    
    .layout-ebaf {
        text-align: center;
    }
    
    .pro-6927 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .dark-7e53,
    .video_3dd9,
    .easy-0d86,
    .tag_5114 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hidden_lite_a66e {
        background: none;
    }
}

/* Providers Section */
.avatar-selected-8824 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-south-a36c {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .chip-south-a36c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .chip-south-a36c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fluid_5742 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.fluid_5742:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title-motion-fe7c {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shadow-gold-9a9f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.new_b91d {
    list-style: none;
    padding: 0;
}

.new_b91d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.new_b91d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.media-fixed-c0e7 {
    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);
}

.media-fixed-c0e7 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.layout-ed44 {
    padding: var(--section-padding);
}

.summary_wood_2815 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_wood_2815 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-liquid-d33b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.gallery-liquid-d33b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.action-26db {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.texture_3560 {
    display: flex;
    flex-direction: column;
}

.form-dynamic-bba4 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.green_2658 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.rough_79e6 {
    color: var(--accent-color);
}

.hard_ed99 {
    font-size: 1.25rem;
}

.thick_fac2 {
    margin-bottom: 1rem;
}

.thick_fac2 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.widget-copper-634f {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.aside_new_b767 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.pagination_79db {
    text-align: center;
}

.card_6b2f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.short_53de {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.last_4527 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer-large-ac98 {
    margin: 2rem 0;
}

.nav_8312 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.nav_8312 .component_bf52 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-09c7 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.first-ebb6 {
    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;
}

.first-ebb6:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb-eee1 {
    font-size: 2rem;
}

.button-7ea8 {
    display: flex;
    flex-direction: column;
}

.dim_2055 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.light_231b {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.first-2f9a {
    padding: var(--section-padding);
}

.border_045a {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .border_045a {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .border_045a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.media-south-26f5 {
    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);
}

.media-south-26f5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.media-south-26f5 .card_6b2f {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.media-south-26f5 .short_53de {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.media-south-26f5 .button_in_5f07 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.purple-8069 {
    margin-top: 4rem;
}

.backdrop-b7f2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.item-1fc3 {
    overflow-x: auto;
}

.middle_43f4 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.middle_43f4 thead {
    background: var(--accent-color);
}

.middle_43f4 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.middle_43f4 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_43f4 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.middle_43f4 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.form-7898 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.button-glass-e61d {
    max-width: 900px;
    margin: 0 auto;
}

.slider_05e3 {
    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);
}

.slider_05e3:hover {
    border-color: var(--accent-color);
}

.background_first_1a17 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.background_first_1a17 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.icon-4bf9 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.slider_05e3.fn-active-59e2 .icon-4bf9 {
    transform: rotate(45deg);
}

.button-motion-3d6b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.slider_05e3.fn-active-59e2 .button-motion-3d6b {
    max-height: 1000px;
}

.button-motion-3d6b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.content-dark-0112 {
    padding: var(--section-padding);
}

.disabled-f973 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.block-a6b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.full_987c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full_987c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.paragraph_motion_7da7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_rough_55a1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar-463f {
    font-size: 2rem;
}

.tabs-af93 {
    color: var(--text-white);
    margin: 0;
}

.footer-d7fc {
    list-style: none;
    padding: 0;
}

.footer-d7fc li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-d7fc li:last-child {
    border-bottom: none;
}

.input-2c3e {
    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);
}

.input-2c3e p {
    color: var(--success-color);
    margin: 0;
}

.left_2886 {
    margin-top: 3rem;
}

.accent_3d95 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.black-4565 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .black-4565 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.button-3248 {
    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);
}

.preview_6f82 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.button-3248 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.frame-dff2 {
    padding: var(--section-padding);
}

.link_smooth_3c2f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link_smooth_3c2f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upper_c5b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.upper_c5b2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pagination_6d27 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.short-59a3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.layout-warm-e25e {
    flex: 1;
}

.popup-black-c367 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.secondary_4b82 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.logo-tiny-2f1c {
    color: var(--text-gray);
    line-height: 1.6;
}

.hidden_cold_4784 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden_cold_4784:last-child {
    border-bottom: none;
}

/* Comparison Section */
.white_d18b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.highlight-over-6654 {
    padding: var(--section-padding);
}

.card-basic-d3c1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.summary_fresh_0005 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .summary_fresh_0005 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro_3fa8 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside_a8cd, .wrapper-b9f3, .mask_89dd {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.mask_89dd {
    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 */
.message_new_2972 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media-da9f {
    margin: 2rem 0;
}

.banner_e649 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_basic_87b7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.medium_2699 {
    list-style: none;
    padding: 0;
}

.medium_2699 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;
}

.medium_2699 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.medium_2699 li:last-child {
    border-bottom: none;
}

.nav_726e {
    text-align: center;
    margin-top: 2rem;
}

.photo_old_5e20 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.gold-1aa7 {
    padding: var(--section-padding);
}

.background_2b51 {
    margin: 2rem 0;
}

.wrapper-huge-a799 {
    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) {
    .wrapper-huge-a799 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.wrapper-huge-a799:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.container-top-d07a {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.background-d14a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.shadow_fluid_be1f {
    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;
}

.in-5556 {
    flex: 1;
}

.wrapper-2a4c {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.light_bcb2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.accent_b91e {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.title_d47b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .title_d47b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.hot_6f35 {
    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);
}

.hot_6f35:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.hot_6f35 .card_6b2f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hot_6f35 .short_53de {
    color: var(--text-gray);
    font-size: 1rem;
}

.secondary-9a83 {
    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);
}

.current_ae9d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.current_ae9d strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.large_ac78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .large_ac78 {
        grid-template-columns: 1fr 1fr;
    }
}

.heading-ce67 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_1fa5 {
    margin-bottom: 1.5rem;
}

.image_1fa5 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image_1fa5 input,
.image_1fa5 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;
}

.image_1fa5 input:focus,
.image_1fa5 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.media-4298 {
    width: 100%;
    margin-top: 1rem;
}

.paper_8c2a {
    display: flex;
    align-items: center;
}

.content_c710 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.thumbnail-40ef {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.border_silver_9864 {
    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;
}

.summary_ac45 {
    color: var(--text-gray);
}

.large-6b8c {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.primary_bright_61e8 {
    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);
}

.primary_bright_61e8 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.component-stone-d995 {
    margin-top: 3rem;
}

.border_b9d2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.surface-glass-469d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.static-b23b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.tabs-a4e4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-a4e4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hover_slow_5771 {
    padding: var(--section-padding);
}

.modal-selected-d895 {
    margin: 2rem 0;
}

.component_e649 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.notification_large_a3af {
    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;
}

.notification_large_a3af:hover, .notification_large_a3af.fn-active-59e2 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.media_stone_6842 {
    display: none;
}

.media_stone_6842.fn-active-59e2 {
    display: block;
}

.disabled-smooth-f15b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dropdown_fluid_c2d0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.nav-ac15 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.nav-ac15 ul {
    list-style: none;
    padding: 0;
}

.nav-ac15 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.nav-ac15 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.simple-abfb {
    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 */
.inner_ead1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description-8f3b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent-under-21f0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.disabled-fresh-e767 {
    color: var(--accent-color);
    margin: 0;
}

.block_easy_ce14 {
    display: flex;
    gap: 1.5rem;
}

.video-center-9b4c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.red_af3a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.article-blue-a53e {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.article-blue-a53e.footer_selected_cd67 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.article-blue-a53e.button-f893 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.article-blue-a53e.down-c70d {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.popup-1e9f {
    margin-top: 2rem;
}

.content_0e59 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.west_fc1b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .west_fc1b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.logo-light-e63f {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.slider-7c31 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.thumbnail-action-0814 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.sidebar_fast_1b4b {
    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 */
.focused-0044 {
    padding: var(--section-padding);
}

.gradient-inner-b641 {
    margin: 2rem 0;
}

.accent-f943 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.paragraph_8fff {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.alert_02ea {
    list-style: none;
    padding: 0;
}

.alert_02ea 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;
}

.alert_02ea li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.alert_02ea li:last-child {
    border-bottom: none;
}

.background_e722 {
    margin: 2rem 0;
}

.disabled-fast-8ba6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shadow_hot_d09b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shadow_hot_d09b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-4e76 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small-9d99 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.media_0618 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tag-thick-21d2 {
    margin-top: 2rem;
}

.logo_fixed_da16 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.media_fast_ce5c {
    list-style: none;
    padding: 0;
}

.header-fixed-62b9 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.header-fixed-62b9 a {
    color: var(--accent-color);
    text-decoration: none;
}

.header-fixed-62b9 a:hover {
    text-decoration: underline;
}

.row_wood_8d1a {
    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 */
.overlay-focused-41f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.accordion-short-42f6 {
    margin: 2rem 0;
}

.menu_orange_da2f {
    margin-bottom: 3rem;
}

.menu_orange_da2f .photo_basic_87b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hero_thick_eb46 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article_36f2 {
    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);
}

.article_36f2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.image-blue-610d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .image-blue-610d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.box_copper_427c {
    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 */
.gallery_0642 {
    padding: var(--section-padding);
}

.image_3e9b {
    margin: 2rem 0;
}

.shadow-813e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.grid_east_3f16 {
    overflow-x: auto;
    margin: 2rem 0;
}

.feature_effc {
    background: rgba(6, 182, 212, 0.1) !important;
}

.panel_iron_a110 {
    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;
}

.table-dark-5cce {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.green_4605 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .green_4605 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture-wood-955d {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.texture-wood-955d .component_bf52 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.texture-wood-955d .detail_b4a8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.backdrop_south_594c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.active_first_5481 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container_hard_95c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_hard_95c9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fast-526c {
    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;
}

.fast-526c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tag-b3cd {
    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);
}

.full_16ed {
    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;
}

.bottom-cf51 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.focused-4de0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.panel_rough_bfc8 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.mini_9301 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chip-7086 {
    color: var(--text-white);
    font-weight: 600;
}

.logo_gas_6ab3 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame-6840 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-6840 .inner_2b6c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.disabled-1432 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled-1432 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tabs_f67e {
    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);
}

.tabs_f67e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tabs_f67e .card_6b2f {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tabs_f67e .short_53de {
    color: var(--text-gray);
    font-size: 1rem;
}

.modal_iron_00b7 {
    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);
}

.article_east_fe6d {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.article_east_fe6d strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.summary_smooth_dc68 {
    margin: 2rem 0;
}

.input_green_35e3 {
    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);
}

.input_green_35e3:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.over-1e27 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.thick_fb41 {
    flex: 1;
}

.chip-27c0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.grid-left-ece2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.message_upper_0115 {
    margin: 2rem 0;
}

.form_812f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.form_812f .detail_b4a8 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.form_812f .iron-b59f {
    color: var(--text-gray);
    margin: 0;
}

.hidden_west_576a {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.hidden_west_576a .row-in-fa25 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.backdrop_south_594c {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.link_east_1877 {
    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;
}

.sidebar-dim-19f4 {
    flex: 1;
}

.column_82a0 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.panel_79be {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.texture-huge-da3d {
    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;
}

.info-gold-5c29 {
    flex: 1;
}

.panel_dim_3a62 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.gradient_0782 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.tabs-4202 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.preview-active-312b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.article_0b86 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.article_0b86 .inner_2b6c {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.description-ead7 {
    margin-top: 2rem;
}

.description-ead7 .accent_3d95 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.photo-lower-541f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.light-63de {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .light-63de {
        grid-template-columns: repeat(4, 1fr);
    }
}

.light-63de .pagination_79db {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper_e2f8 {
    margin: 2rem 0;
}

.frame-5da7 {
    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 */
.element_light_d609 {
    padding: var(--section-padding);
}

.top-7616 {
    margin-top: 1rem;
}

.pro-853d {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pro-853d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.pro-853d li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.progress-light-1a42 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_fresh_30d0 {
    margin: 2rem 0;
}

.item-1901 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.breadcrumb_current_27c5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.block-mini-1a5d {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.layout_fixed_b61a {
    margin: 2rem 0;
}

.block_2276 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.block_2276 .photo_basic_87b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.medium-0043 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .medium-0043 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-old-a3e6 {
    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);
}

.old-6f5f {
    color: var(--text-white);
    font-weight: 600;
}

.gallery-1d27 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.red-16b6 {
    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);
}

.red-16b6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.outer-4e98 {
    padding: var(--section-padding);
}

.footer-4ae5 {
    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;
}

.footer-4ae5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.focus-copper-f72e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-copper-f72e .preview_6f82 {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-copper-f72e .layout_3e16 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.chip_a8bd {
    flex: 1;
}

.fresh-9667 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hot-9295 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-9295 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hot-9295 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.overlay_4444 {
    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);
}

.overlay_4444 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_4444 strong {
    color: var(--warning-color);
}

/* Slots Section */
.column-smooth-48af {
    padding: var(--section-padding);
}

.section-paper-a22d {
    margin: 2rem 0;
}

/* Table Games Section */
.gallery_next_9093 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pressed_d904 {
    margin: 2rem 0;
}

.hidden-a6d6 {
    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);
}

.hidden-a6d6:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hidden-a6d6 .header_inner_da0f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hidden-a6d6 .block_501e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.avatar-6094 {
    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);
}

.avatar-6094 .row-in-fa25 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.left-bfc1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search-slow-8837 {
    margin: 2rem 0;
}

.chip_82f7 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.text-medium-b0c9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.brown-bd95 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.up-1fd7 {
    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);
}

.up-1fd7:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.up-1fd7.fn-active-59e2 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north_0967 {
    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);
}

.west-1835 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.west-1835 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.rough_165f {
    padding: var(--section-padding);
}

.dark_bd5e {
    margin: 2rem 0;
}

.form-959d {
    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);
}

.form-959d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .form-959d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.outline-362d {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.accordion-liquid-ce59 {
    flex: 1;
}

.over-ff5b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.last-1fb1 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.stale-7750 {
    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;
}

.smooth-5235 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.search-under-d676 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.input_8f9d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.section-green-b44f {
    padding: 0.875rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    color: var(--primary-bg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.section-green-b44f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.heading-03f2 {
    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);
}

.middle-b90a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.middle-b90a strong {
    color: var(--accent-color);
}

/* New Games Section */
.gallery_0f6d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass-6e08 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .glass-6e08 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .glass-6e08 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_short_889e {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.row_short_889e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.table-846c {
    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;
}

.notice-364f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.menu-fixed-231d {
    font-size: 2rem;
}

.pagination-bronze-45fb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.summary_dim_f7ec {
    flex: 1;
}

.component_711a {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.inner_0b33 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bottom_7afb {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.yellow_b107 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cool-6a4b {
    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;
}

.frame_eaac {
    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;
}

.frame_eaac:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.silver-4bdf {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.center_51e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.detail-glass-50ee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .detail-glass-50ee {
        grid-template-columns: repeat(3, 1fr);
    }
}

.disabled-e185 {
    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);
}

.sort_orange_d42e {
    color: var(--text-white);
    font-weight: 600;
}

.picture_bd44 {
    color: var(--accent-color);
    font-weight: 600;
}

.first-88c3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.first-88c3 strong {
    color: var(--accent-color);
}

/* Security Section */
.badge_complex_b4dd {
    padding: var(--section-padding);
}

/* Benefits Section */
.banner_hard_1bfb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.label-medium-cef6 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.accordion-825a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.clean_aa26 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.mini-b1d7 {
    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) {
    .mini-b1d7 {
        flex-direction: column;
        gap: 1rem;
    }
}

.mini-b1d7:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mini-b1d7 .texture-huge-da3d {
    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;
}

.mini-b1d7 .info-gold-5c29 {
    flex: 1;
}

.mini-b1d7 .panel_dim_3a62 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.mini-b1d7 .gradient_0782 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.plasma_6ec6 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.plasma_6ec6 .header_tall_5dcc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.plasma_6ec6 .cold_6539 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plasma_6ec6 .cold_6539 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.plasma_6ec6 .cold_6539 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.under-218b {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.prev-4b23 {
    padding: var(--section-padding);
}

.cool-dc8d {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cool-dc8d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-1e02 {
    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);
}

.tooltip-1e02:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.tooltip-1e02 .input_2d9f {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip-1e02 .aside-f8e7 {
    flex: 1;
}

.tooltip-1e02 .filter-stale-0021 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tooltip-1e02 .search-hot-3edc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wood_a0bd {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wood_a0bd .header-b68d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wood_a0bd .hot_1f1b {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.wood_a0bd .hot_1f1b 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);
}

.wood_a0bd .hot_1f1b li:last-child {
    border-bottom: none;
}

.wood_a0bd .hot_1f1b 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;
}

.wood_a0bd .hot_1f1b li strong {
    color: var(--text-white);
}

.steel-9c5b {
    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);
}

.steel-9c5b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.steel-9c5b strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.white_1718 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article_solid_5629 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .article_solid_5629 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.silver_da3e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.silver_da3e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sort_e958 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-ada1 {
    font-size: 2rem;
}

.narrow_3c38 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.slow_bd0c {
    flex: 1;
}

.static-7561 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-7561 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.static-7561 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.soft_31a0 {
    margin-top: 3rem;
}

.accent-f943 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.paragraph_8fff {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.alert_02ea {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert_02ea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.alert_02ea li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.alert_02ea li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.thumbnail_basic_79d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dirty-e024 {
    margin: 2rem 0;
}

.last-43e2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.last-43e2 .photo_basic_87b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.outline_50f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .outline_50f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.medium_b1c4 {
    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);
}

.medium_b1c4:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.stone-c869 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.module-clean-dcb8 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.background-071f {
    padding: var(--section-padding);
}

.hidden-6212 {
    margin: 2rem 0;
}

.preview_47f5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .preview_47f5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview_47f5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text_eb45 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.text_eb45:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.badge_large_aa08 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu_e5f3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.lower-eb6f {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lower-eb6f.block_8ad6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.chip_4933 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.icon-d70d {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.article-in-21e9 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message-c5da {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.media-red-4293 {
    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);
}

.media-red-4293 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.media-red-4293 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.background_6025 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_hot_14c9 {
    margin: 2rem 0;
}

.hard_3640 {
    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) {
    .hard_3640 {
        flex-direction: column;
        gap: 1rem;
    }
}

.hard_3640:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard_3640::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);
}

.carousel_fluid_91a5 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.disabled_a919 {
    flex: 1;
}

.notification-20dd {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.backdrop_a402 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backdrop_a402 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.black-8fd9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro_d248 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mask_cold_269a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mask_cold_269a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.motion-a073 {
    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);
}

.sort-da15 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media-hard-d3a8 {
    flex: 1;
}

.module_tiny_56e6 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hero_hot_ed08 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.small-1bf0 {
    margin-top: 2rem;
    text-align: center;
}

.search_dirty_6861 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.search_dirty_6861 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.under_4a03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .under_4a03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid_9efa {
    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);
}

.grid_9efa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.grid_9efa .avatar_bb19 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_9efa .hovered-29c1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.grid_9efa .card-9279 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.grid_9efa .search_9ea8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.info-basic-0613 {
    padding: var(--section-padding);
}

.text-complex-c949 .sort-0845 {
    flex: 1;
}

/* Promo Calendar Section */
.picture_yellow_eab2 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.input-738b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .input-738b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.notification_east_924f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy-b260 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.article-e735 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.green-ccba {
    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);
}

.card-hard-683c {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.caption-3cfc {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.shade_iron_3fe4 {
    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);
}

.shade_iron_3fe4 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.shade_iron_3fe4 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.modal-pro-9fcc {
    padding: var(--section-padding);
}

.backdrop_cold_6c30 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .backdrop_cold_6c30 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link-center-e6bb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-lite-3f87 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fixed-d04f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-d04f li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-active-842d {
    margin-top: 3rem;
}

.carousel-active-842d .accent-f943 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.carousel-active-842d .paragraph_8fff {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.carousel-active-842d .alert_02ea {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.carousel-active-842d .alert_02ea li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.carousel-active-842d .alert_02ea li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.carousel-active-842d .alert_02ea li strong {
    color: var(--warning-color);
}

.backdrop_5276 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.backdrop_5276 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.description_bright_957b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-pro-bd09 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-pro-bd09 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-818f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.action-818f .photo_basic_87b7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.lower_9339 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-324e {
    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);
}

.alert-324e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pressed_a466 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary-c9f4 {
    flex: 1;
}

.preview_ee45 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.slider-d91d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.texture_8686 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.tall_ec6b {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.secondary-narrow-5268 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .secondary-narrow-5268 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row-42a9 {
    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);
}

.row-42a9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.texture_right_6e10 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outer_162f {
    color: var(--text-gray);
    font-size: 1rem;
}

.current_ae9d {
    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);
}

.box-d0ef {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.box-d0ef strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.surface_pink_4618 { 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; }
.notification-ead3, .detail-center-552e { max-width:100%; height:auto; }

.badge_bd19, .link_c55b, .advanced_b22e { white-space:normal; }

.mask-09a3,
.layout-ebaf,
.header-dynamic-2e58,
.under_4a03,
.message_upper_0115,
.black_fe52 {
  flex-wrap:wrap;
}

[class*="grid"],
.secondary-narrow-5268,
.preview_47f5,
.tabs-250f {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.hidden_lite_a66e img,
.layout-ebaf img,
.static-8aa5 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.message_11ac, .wood-2d59,
.glass-2069, .backdrop_b421 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.item-1fc3 { width:100%; overflow-x:auto; }
.item-1fc3 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.chip-south-a36c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .chip-south-a36c {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.fluid_5742 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.border_045a,
.right_8a3c,
.gold_6d84,
.modal_adb9,
.title_d47b,
.secondary-narrow-5268,
.preview_47f5,
.tabs-250f,
.panel-west-2202,
.dark_bd5e,
.chip-south-a36c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .border_045a,
  .right_8a3c,
  .gold_6d84,
  .modal_adb9,
  .title_d47b,
  .secondary-narrow-5268,
  .preview_47f5,
  .tabs-250f,
  .panel-west-2202,
  .dark_bd5e,
  .chip-south-a36c {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.media-south-26f5,
.hot_6f35,
.row-42a9,
.focus_c10d,
.text_eb45,
.list-8c34,
.form-959d,
.fluid_5742 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.caption-purple-c4a5,
.plasma_0c9b,
.row-9e8a {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.caption-purple-c4a5 > *,
.plasma_0c9b > *,
.row-9e8a > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 41d2 */
.shadow-element-f8 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
