/* {$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;
}

.primary_4075 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.highlight-dd20 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .highlight-dd20 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .highlight-dd20 {
        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 */
.list-0a5a {
    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);
}

.list-east-161b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .list-east-161b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .surface_d370 {
        grid-column: 1;
    }
    
    .highlight-right-78ec {
        grid-column: 2;
    }
    
    .logo-steel-4571 {
        grid-column: 3;
    }
}

.surface_d370 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.surface_d370:hover img {
    transform: scale(1.05);
}

/* Navigation */
.dropdown_selected_7897 {
    display: none;
}

@media (min-width: 1024px) {
    .dropdown_selected_7897 {
        display: block;
    }
}

/* Grouped Navigation */
.last_d4d8 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.filter-light-69c1 {
    position: relative;
}

.texture-next-68dd {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.filter-light-69c1 .surface-661e {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.surface-661e {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.secondary-old-b833 {
    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;
}

.secondary-old-b833:hover,
.secondary-old-b833.fn-active-fc04 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.icon_action_07b6 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .icon_action_07b6 {
        display: flex;
    }
}

/* Mobile Register Button */
.highlight-right-78ec {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .highlight-right-78ec {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.dark_7788 {
    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;
}

.dark_7788::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 */
.logo-steel-4571 {
    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) {
    .logo-steel-4571 {
        display: none;
    }
}

.logo-steel-4571 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.logo-steel-4571.fn-active-fc04 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.logo-steel-4571.fn-active-fc04 span:nth-child(2) {
    opacity: 0;
}

.logo-steel-4571.fn-active-fc04 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hard_2856 {
    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;
}

.hard_2856.fn-active-fc04 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.main_610a {
    overflow: hidden;
}

.plasma_e0c6 {
    list-style: none;
    padding: 0.75rem 0;
}

.status_a199 {
    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;
}

.status_a199:hover,
.status_a199.fn-active-fc04 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.status_a199.accordion_green_99a8 {
    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;
}

.status_a199.accordion_green_99a8::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 */
.hover_pro_2865 {
    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;
}

.header_b696 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.header_b696:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.complex-6535 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.complex-6535:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.copper_4583 {
    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;
}

.copper_4583:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.dark-a46b {
    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;
}

.description_ce8e {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.description_ce8e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.title_b8c3 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.title_b8c3:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.motion_2ccc {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.motion_2ccc: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);
}

.gradient_stale_36a3 {
    font-size: 1em;
    font-weight: 700;
}

.element-white-da39 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.huge-7d20 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.huge-7d20::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;
}

.pressed-add2 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .pressed-add2 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.message_north_d40e {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.copper-2a21 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.upper-65e5 {
    margin-bottom: 2rem;
}

.complex_f6a3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .complex_f6a3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.content_prev_173b {
    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);
}

.wide-06ff {
    font-size: 1.5rem;
}

.disabled-next-cbbb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.element-ab9c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hard-e212 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.hard-e212:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.title-b999 {
    text-align: center;
    margin-bottom: 3rem;
}

.pattern_1778 {
    margin-bottom: 1rem;
}

.content_solid_5696 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.element-cfb8 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .element-cfb8 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .element-cfb8.input_5930 {
        direction: rtl;
    }
    
    .element-cfb8.input_5930 > * {
        direction: ltr;
    }
}

.static_7d1f {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.static_7d1f:first-child {
    margin-top: 0;
}

.title_gold_8082 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.paragraph_0f9a {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.paragraph_0f9a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.popup_light_bd01 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup_light_bd01 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-878a {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort-bronze-02b6 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.bright_48b7 {
    list-style: none;
}

.bright_48b7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bright_48b7 li:last-child {
    border-bottom: none;
}

/* Games Features */
.shadow_fluid_121e {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.row_8af5 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.accordion_mini_d9fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_16bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.large_adba {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.article-c53d {
    margin: 2rem 0;
}

.current_d4a2 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.cool-6ae8 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.accent_1df9 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.full-6198 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.plasma-7ca1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .plasma-7ca1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hovered-c556 {
    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);
}

.hovered-c556:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info_tall_47f0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.inner-2cc5 {
    font-size: 1.5rem;
}

.card_c6db {
    color: var(--accent-color);
    margin: 0;
}

.small_b317 {
    list-style: none;
}

.small_b317 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.small_b317 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.backdrop-4ea1 {
    margin: 2rem 0;
}

.input-left-25f9 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fast_9530 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .fast_9530 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_752f {
    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);
}

.medium_db8f {
    font-size: 1.25rem;
}

.backdrop_black_f14d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.lite-9243,
.overlay_c0f0 {
    text-align: center;
    margin: 2rem 0;
}

.border-41de,
.hard_291b {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.slider_steel_cfda {
    margin: 2rem 0;
    text-align: center;
}

.bronze_1c16 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bronze_1c16::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;
}

.menu-58fd {
    position: relative;
    z-index: 1;
}

.input_rough_2eed {
    margin-bottom: 1rem;
}

.tag_4585 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-2760 {
    margin-bottom: 3rem;
}

.thick-15b8 {
    margin-top: 3rem;
}

.heading-pro-78f8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .heading-pro-78f8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.heading-pro-78f8 .content_prev_173b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outline-5f83 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.cold-bcf5 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.iron_52ab {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.shadow-a997 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .shadow-a997 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow-a997 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.image_bronze_5ef5 {
    margin-bottom: 1rem;
}

.accent-d034 img {
    margin-bottom: 1rem;
}

.dropdown_selected_84ea {
    color: var(--text-gray);
    line-height: 1.6;
}

.alert_north_6b0e {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.chip-70ba {
    list-style: none;
}

.chip-70ba li {
    margin-bottom: 0.5rem;
}

.chip-70ba a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.chip-70ba a:hover {
    color: var(--accent-color);
}

.active_a1c3 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.label-blue-1ecc {
    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);
}

.label-blue-1ecc:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.outline-copper-aeab {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.outline-copper-aeab p {
    margin-bottom: 0.25rem;
}

.upper-39e9 {
    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) {
    .upper-39e9 {
        flex-direction: row;
    }
}

.orange_c46b {
    text-align: center;
}

@media (min-width: 768px) {
    .orange_c46b {
        text-align: left;
    }
}

.orange_c46b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.north-a85c {
    font-size: 0.75rem !important;
}

.middle_6747 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.carousel_fa62 {
    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);
    }
}

.gas-c5a2 {
    animation: fadeInUp 0.6s ease-out;
}

.light_d5b5 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hidden_05f1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hidden_05f1 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.lower-98e8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .lower-98e8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-e434 {
    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);
}

.notice-e434 .accordion_mini_d9fc {
    font-size: 1.25rem;
}

.notice-e434 .hidden-2868 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.tag_8ff3 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag_8ff3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.active_10bc {
    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);
}

.active_10bc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.paper_b866 {
    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);
}

.sidebar_d2f0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.layout_green_13e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon-static-7140 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.filter_medium_5b26 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.filter_medium_5b26 .secondary_16bc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.filter_medium_5b26 .large_adba {
    color: var(--text-gray);
    line-height: 1.6;
}

.layout-ead7 {
    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);
}

.left_cf24 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.left_cf24 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.left_cf24 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.gradient-advanced-68bb {
    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);
}

.outline-brown-696a {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section_fast_ffd8 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section_fast_ffd8 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.section_fast_ffd8 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);
}

.section_fast_ffd8 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.section_fast_ffd8 input::placeholder {
    color: var(--text-muted);
}

.title_458f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.short_695b {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.short_695b input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.border_3d24 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.border_3d24:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.fast_9530 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fast_9530 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice_752f {
    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);
}

.notice_752f .medium_db8f {
    font-size: 1.25rem;
}

.notice_752f .backdrop_black_f14d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.gas_281a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_76e6 {
    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);
}

.fixed_76e6 .accordion_mini_d9fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.fixed_76e6 .secondary_16bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.fixed_76e6 .large_adba {
    color: var(--text-gray);
    line-height: 1.6;
}

.menu_4508 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.soft-b82f {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.soft-b82f .wood-508d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.soft-b82f .modal_blue_ed70 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pressed_707f {
    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);
}

.primary_abef {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary_abef {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner_c680 {
    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);
}

.banner_c680:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status_basic_0335 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.out_6db9 {
    flex: 1;
}

.pattern_e52d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hot-7e35 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.picture_6663 {
    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);
}

.picture_6663:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.text-da9c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .text-da9c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-99a6 {
    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);
}

.mask-99a6:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.north-18a8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_e6fb {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.popup-down-97e9 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.bronze_e9f8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.light_3910 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal-out-1cce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.simple_23fb {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple_23fb .label-next-6b21 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple_23fb .feature-d999 {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-50dc {
    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);
}

.article_short_a7ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_glass_2a32 {
    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);
}

.tag_glass_2a32 .accordion_mini_d9fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.tag_glass_2a32 .secondary_16bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tag_glass_2a32 .large_adba {
    color: var(--text-gray);
    line-height: 1.6;
}

.basic_930c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .basic_930c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-4467 {
    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);
}

.description-4467:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.banner-e150 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .banner-e150 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.progress_fixed_e9b4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.progress_fixed_e9b4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.search-narrow-fa8f {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron-cc35 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cool-6ae8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.gallery_3b53 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.hover_current_2f9b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero_275c {
    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);
}

.hero_275c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.banner-fresh-1039 {
    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);
}

.row-a10a {
    flex: 1;
}

.action_1c6e {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.column_white_bbe5 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.notification-16cc {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_1cdb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.short-4033 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.short-4033 .wood-508d {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.short-4033 .modal_blue_ed70 {
    color: var(--text-gray);
    line-height: 1.6;
}

.overlay_c0f0 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.outline-slow-4afe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-slow-4afe {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.tag_aeef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tag_aeef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.input_short_63bb {
    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);
}

.input_short_63bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section-hot-168e {
    font-size: 2rem;
    flex-shrink: 0;
}

.rough-9fdf {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slow-72c6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.pagination-f396 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.heading_c90a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.backdrop_9178 {
    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);
}

.north_fbf5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.advanced-e7c5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature_6fc4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.article_short_a7ca {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_glass_2a32 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag_glass_2a32 .secondary_16bc {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_glass_2a32 .large_adba {
    color: var(--text-gray);
    line-height: 1.6;
}

.module_82f2 {
    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);
}

.thick-8bbc {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thick-8bbc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .thick-8bbc {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert_bronze_ffd0 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.alert_bronze_ffd0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.stone_e1a3 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pressed-9f4a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.description_479d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.chip-out-0101 {
    padding: 1.5rem;
}

.sidebar_e686 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.media_purple_4241 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media_purple_4241 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;
}

.media_purple_4241 li:last-child {
    border-bottom: none;
}

.media_purple_4241 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.blue_4f36 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .blue_4f36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion_bottom_e675 {
    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);
}

.accordion_bottom_e675:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.modal-be84 {
    font-size: 2rem;
    flex-shrink: 0;
}

.dark_c116 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.icon-3d72 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.avatar_red_4630 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header_static_fc99 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary_2dc3 {
    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);
}

.secondary_yellow_9400 {
    font-size: 2rem;
    flex-shrink: 0;
}

.shade-stone-34da {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.detail-f7b4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.pro_75fd {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.icon_next_bae2 {
    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);
}

.smooth-04c7 {
    text-align: center;
}

.breadcrumb_gold_3ff7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.under-0da7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.header-9e5a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.button_6a71 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.button_6a71 .secondary_16bc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.button_6a71 .large_adba {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture-plasma-4720 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .picture-plasma-4720 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .picture-plasma-4720 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-tiny-3083 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-tiny-3083:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-black-ea1b {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.row-f197 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.secondary_16bc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.primary-hard-716a {
    padding: 1.5rem;
}

.large_adba {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.background_fast_5540 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.background_fast_5540 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;
}

.background_fast_5540 li:last-child {
    border-bottom: none;
}

.background_fast_5540 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.progress-a5fd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.form_a508 {
    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);
}

.form_a508:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination_silver_6bcf {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_bc67 {
    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);
}

.paper_b866 {
    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;
}

.sidebar_d2f0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.layout_green_13e0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.plasma-451c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.block_over_0d7c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.clean-4f9f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.container-c957 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overlay-ed6c {
    display: flex;
    gap: 1rem;
}

.overlay-ed6c .outline-89b6 {
    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;
}

.info-c073 {
    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);
}

.pink_7e20 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.purple-e9c1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purple-e9c1 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;
}

.purple-e9c1 li:last-child {
    border-bottom: none;
}

.purple-e9c1 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.breadcrumb_focused_a181 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .breadcrumb_focused_a181 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breadcrumb_focused_a181 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.complex_5656 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.complex_5656:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hover-last-26f8 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.mask-dim-5d87 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.label-next-6b21 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.east_cc28 {
    font-size: 1rem;
}

.list-22a1 {
    padding: 1.5rem;
}

.feature-d999 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.info-a9dd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.info-a9dd .smooth-04c7 {
    text-align: center;
}

.info-a9dd .under-0da7 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.info-a9dd .dim_f18d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.section_small_29c4 {
    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);
}

.section_small_29c4:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.border_9282 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_9282 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-cool-8c66 {
    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);
}

.gradient-cool-8c66:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.caption-3241 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.basic_b849 {
    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);
}

.shadow-plasma-1c91 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fluid-0df7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pressed_e6c2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-new-a6a4 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.shade-solid-2bc5 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu_solid_921b {
    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);
}

.label_185b {
    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;
}

.label_185b.header-901e {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.label_185b.alert_ed17 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.label_185b.basic-7950 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.label_185b.list_2ede {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.label_185b.aside_3cc2 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.container_old_6b3b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.blue-7cec {
    color: var(--text-gray);
    line-height: 1.6;
}

.logo-west-cd0f {
    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);
}

.button-out-068c {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.menu_4508 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu_4508 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;
}

.menu_4508 li:last-child {
    border-bottom: none;
}

.menu_4508 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.column_prev_18a5 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column_prev_18a5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column_prev_18a5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-a542 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.pro-a542:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pro-a542.container-small-152c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .pro-a542.container-small-152c {
        grid-column: span 3;
    }
}

.cool-0fcc {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.pro-a542.container-small-152c .cool-0fcc {
    background: rgba(6, 182, 212, 0.1);
}

.brown_4fab {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.notification_small_024d {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.pro-a542.container-small-152c .notification_small_024d {
    color: var(--info-color);
}

.tiny_a192 {
    padding: 1.5rem;
    text-align: center;
}

.mini-3f1c {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pro-a542.container-small-152c .mini-3f1c {
    color: var(--info-color);
}

.center_f082 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.icon_hard_941e {
    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 */
.selected_4b8c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .selected_4b8c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar-84eb {
    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);
}

.sidebar-84eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.link-33c7 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.fixed_76e6 {
    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);
}

.medium_db8f {
    font-size: 2rem;
    flex-shrink: 0;
}

.banner_e0f3 {
    flex: 1;
}

.input-left-25f9 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search_5fe6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel_2eb3 {
    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);
}

.shade-8f4e {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.badge-full-695a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.carousel_fa62 {
    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);
}

.overlay-plasma-9b26 {
  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);
}

.overlay-plasma-9b26 .smooth-04c7 {
    text-align: center;
}

.overlay-plasma-9b26 .breadcrumb_gold_3ff7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.overlay-plasma-9b26 .under-0da7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.liquid-14b3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.alert_4b20 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.frame-bfcc {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.advanced_8404 {
    color: var(--text-gray);
    line-height: 1.6;
}

.top_c5ed {
    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);
}

.description_39ab {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.label_f18f {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast-0273 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .fast-0273 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fast-0273 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carousel-bc5d {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel-bc5d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.top-8976 {
    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);
}

.disabled-8b6c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pink-661b {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.shadow-4922 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shadow-4922.solid-5304 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.shadow-4922.container_next_6a8c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.shadow-4922.new_60fc {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.widget-black-b622 {
    padding: 1.5rem;
    text-align: center;
}

.section-23e1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.current_6126 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.current_6126 .primary_hard_1648 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.hero_rough_a0d6 {
    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);
}

.hero_rough_a0d6:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.secondary-pro-9ee5 {
  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);
}

.popup_c843 {
    text-align: center;
}

.popup_c843 .breadcrumb_gold_3ff7 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.popup_c843 .under-0da7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.outline-new-c778 { text-align: center; }
.module-rough-3547 { text-align: left; }
.card-old-80eb { text-align: right; }

.frame_active_434a { margin-bottom: 0; }
.medium_ab6a { margin-bottom: 0.5rem; }
.footer_7fb2 { margin-bottom: 1rem; }
.content_3fef { margin-bottom: 1.5rem; }
.button_26ab { margin-bottom: 2rem; }

.content_62f7 { margin-top: 0; }
.hover-dim-2783 { margin-top: 0.5rem; }
.narrow_ae1b { margin-top: 1rem; }
.short_753a { margin-top: 1.5rem; }
.dim_ccac { margin-top: 2rem; }

.fn-hidden-fc04 { display: none; }
.fn-visible-fc04 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .huge-7d20 {
        padding: 6rem 0 3rem;
    }
    
    .pressed-add2 {
        text-align: center;
    }
    
    .element-cfb8 {
        text-align: center;
    }
    
    .complex_f6a3 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .list-0a5a,
    .hard_2856,
    .bronze_1c16,
    .iron_52ab {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .huge-7d20 {
        background: none;
    }
}

/* Providers Section */
.logo_light_2167 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gas_6583 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .gas_6583 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gas_6583 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_clean_0f39 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.focus_clean_0f39:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.disabled_35b9 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shade-5e05 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hard-5573 {
    list-style: none;
    padding: 0;
}

.hard-5573 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.hard-5573 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.notification-9aee {
    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);
}

.notification-9aee p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.warm_1a9a {
    padding: var(--section-padding);
}

.component_bde5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .component_bde5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-b0c7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tabs-b0c7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.shadow-hard-ae37 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.panel-medium-4b9e {
    display: flex;
    flex-direction: column;
}

.title-south-8d4b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.module-fluid-c5ca {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.paragraph_basic_9450 {
    color: var(--accent-color);
}

.breadcrumb-tiny-90e1 {
    font-size: 1.25rem;
}

.dark-3faa {
    margin-bottom: 1rem;
}

.dark-3faa p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.focus_dim_5bde {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.video-0662 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.smooth-04c7 {
    text-align: center;
}

.breadcrumb_gold_3ff7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.under-0da7 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.detail-f410 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-inner-5fbb {
    margin: 2rem 0;
}

.section-3b3e {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.section-3b3e .accordion_mini_d9fc {
    font-size: 2rem;
    flex-shrink: 0;
}

.image-b9a5 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge_right_4fd5 {
    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;
}

.badge_right_4fd5:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.west_b72b {
    font-size: 2rem;
}

.east_f76b {
    display: flex;
    flex-direction: column;
}

.item-narrow-483f {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pro-48b5 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.west-0edf {
    padding: var(--section-padding);
}

.advanced_61d3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .advanced_61d3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advanced_61d3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-515e {
    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);
}

.next-515e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.next-515e .breadcrumb_gold_3ff7 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.next-515e .under-0da7 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.next-515e .stone-a63e {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.status_left_c542 {
    margin-top: 4rem;
}

.texture_d5c4 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.shade-red-87a2 {
    overflow-x: auto;
}

.input_8643 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.input_8643 thead {
    background: var(--accent-color);
}

.input_8643 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.input_8643 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.input_8643 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.input_8643 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.video-left-5b33 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.summary_2f44 {
    max-width: 900px;
    margin: 0 auto;
}

.silver_34f5 {
    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);
}

.silver_34f5:hover {
    border-color: var(--accent-color);
}

.fluid-9ca5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.fluid-9ca5 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.overlay-hard-e2dd {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.silver_34f5.fn-active-fc04 .overlay-hard-e2dd {
    transform: rotate(45deg);
}

.table_last_6cf0 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.silver_34f5.fn-active-fc04 .table_last_6cf0 {
    max-height: 1000px;
}

.table_last_6cf0 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.highlight_1197 {
    padding: var(--section-padding);
}

.left_cf24 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.caption_blue_1f5a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.table-active-8e21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-active-8e21 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input_inner_5e18 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.lower_6853 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pressed_3d17 {
    font-size: 2rem;
}

.iron-1e83 {
    color: var(--text-white);
    margin: 0;
}

.under-9ed9 {
    list-style: none;
    padding: 0;
}

.under-9ed9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.under-9ed9 li:last-child {
    border-bottom: none;
}

.thick_51c5 {
    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);
}

.thick_51c5 p {
    color: var(--success-color);
    margin: 0;
}

.gallery_cc2f {
    margin-top: 3rem;
}

.pink_7e20 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sidebar-pressed-d915 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sidebar-pressed-d915 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.first-7162 {
    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);
}

.search-96fa {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.first-7162 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.red-11c3 {
    padding: var(--section-padding);
}

.badge_4558 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge_4558 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.table-fixed-c61a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.table-fixed-c61a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.progress_small_dfb2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.black_6fd0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cool_578b {
    flex: 1;
}

.advanced_51ca {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.search-4c37 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.mask-dark-82ef {
    color: var(--text-gray);
    line-height: 1.6;
}

.item_294e {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item_294e:last-child {
    border-bottom: none;
}

/* Comparison Section */
.chip-8c31 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.dirty_3ba3 {
    padding: var(--section-padding);
}

.pro_f70d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.background-d5ce {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-d5ce {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery_bb66 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.breadcrumb_cdda, .right_9a26, .lite-7be2 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.lite-7be2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 0.75rem;
}

/* Terms Section */
.pagination_slow_ab12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.chip-867e {
    margin: 2rem 0;
}

.slow_8db1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.slider_2e2a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.column-easy-2299 {
    list-style: none;
    padding: 0;
}

.column-easy-2299 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;
}

.column-easy-2299 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.column-easy-2299 li:last-child {
    border-bottom: none;
}

.bronze-3a97 {
    text-align: center;
    margin-top: 2rem;
}

.column-bottom-738c {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.tooltip-center-a94d {
    padding: var(--section-padding);
}

.chip_wood_89f8 {
    margin: 2rem 0;
}

.modal_large_4777 {
    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) {
    .modal_large_4777 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.modal_large_4777:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.column_hard_0326 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.copper-214f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.focus_bottom_ff56 {
    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;
}

.element-8401 {
    flex: 1;
}

.cold-d6b4 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.logo-out-e6d0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.last-cde9 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.complex-e5ec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .complex-e5ec {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.dim-03da {
    text-align: center;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.dim-03da:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dim-03da .breadcrumb_gold_3ff7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dim-03da .under-0da7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.form_8e7a {
    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);
}

.liquid_93ce {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.liquid_93ce strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.filter-orange-66f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .filter-orange-66f6 {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight_prev_b070 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_fluid_39c6 {
    margin-bottom: 1.5rem;
}

.video_fluid_39c6 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video_fluid_39c6 input,
.video_fluid_39c6 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;
}

.video_fluid_39c6 input:focus,
.video_fluid_39c6 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.paragraph-steel-2ef6 {
    width: 100%;
    margin-top: 1rem;
}

.in-e583 {
    display: flex;
    align-items: center;
}

.title_north_b1c3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.notice_left_b918 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.header-black-7060 {
    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;
}

.row_small_c8db {
    color: var(--text-gray);
}

.form_out_ce23 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.cold-5def {
    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);
}

.cold-5def p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.summary_up_2a90 {
    margin-top: 3rem;
}

.footer-e2cd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.green-d099 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.carousel_rough_11f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.tertiary-fast-8186 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tertiary-fast-8186:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.hot_ea1a {
    padding: var(--section-padding);
}

.banner_glass_e0a7 {
    margin: 2rem 0;
}

.glass_c704 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero_64ab {
    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;
}

.hero_64ab:hover, .hero_64ab.fn-active-fc04 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.cold-52b7 {
    display: none;
}

.cold-52b7.fn-active-fc04 {
    display: block;
}

.detail-d012 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hidden_0b47 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.summary_6691 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.summary_6691 ul {
    list-style: none;
    padding: 0;
}

.summary_6691 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.summary_6691 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.filter-lite-6965 {
    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 */
.dim-cee1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dark-785d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.photo_solid_97ac {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.notice_fast_c151 {
    color: var(--accent-color);
    margin: 0;
}

.south-6876 {
    display: flex;
    gap: 1.5rem;
}

.texture-16c6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.thumbnail-19c6 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.hover-ea56 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.hover-ea56.shade-ce4e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hover-ea56.inner_d658 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hover-ea56.carousel_tall_18dd {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.panel-inner-36bd {
    margin-top: 2rem;
}

.smooth_9932 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider_bottom_2867 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .slider_bottom_2867 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notification-old-578e {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.texture-over-8ef2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.module_wood_5e0c {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.list-1f86 {
    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 */
.layout_action_98b3 {
    padding: var(--section-padding);
}

.summary_over_47d2 {
    margin: 2rem 0;
}

.tertiary-dark-88d3 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.message-tiny-1b1f {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.fast_0ab5 {
    list-style: none;
    padding: 0;
}

.fast_0ab5 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;
}

.fast_0ab5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.fast_0ab5 li:last-child {
    border-bottom: none;
}

.gallery_f7d2 {
    margin: 2rem 0;
}

.east_59aa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shadow-under-c1a0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shadow-under-c1a0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-591c {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_2fa9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.nav-first-3c0f {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.badge_white_88af {
    margin-top: 2rem;
}

.pattern_e52d {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.focused_1dc4 {
    list-style: none;
    padding: 0;
}

.hovered-0af2 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.hovered-0af2 a {
    color: var(--accent-color);
    text-decoration: none;
}

.hovered-0af2 a:hover {
    text-decoration: underline;
}

.caption-ef02 {
    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 */
.accent-0634 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.basic-79d0 {
    margin: 2rem 0;
}

.over_68a2 {
    margin-bottom: 3rem;
}

.over_68a2 .slider_2e2a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.input_8f2c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.selected_28fb {
    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);
}

.selected_28fb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.preview-887b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .preview-887b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east_a6ac {
    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 */
.pattern_complex_856b {
    padding: var(--section-padding);
}

.wood_a27a {
    margin: 2rem 0;
}

.lower_cdc7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bronze-80ae {
    overflow-x: auto;
    margin: 2rem 0;
}

.component-hovered-1481 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.picture-7563 {
    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;
}

.basic-c29c {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.yellow_f5eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .yellow_f5eb {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-08a7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-08a7 .accordion_mini_d9fc {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-08a7 .secondary_16bc {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.focus-over-01db {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.large-4b69 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-hard-10d6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outline-hard-10d6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask-e917 {
    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;
}

.mask-e917:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.input-inner-bc59 {
    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);
}

.search-purple-198b {
    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;
}

.text-e727 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video-up-2e4e {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.dark_9c8b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tabs-copper-7384 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-yellow-cab9 {
    color: var(--text-white);
    font-weight: 600;
}

.banner_3137 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item_white_ecfb {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.item_white_ecfb .outline-89b6 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.tag_e6b6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .tag_e6b6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outline-db4e {
    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);
}

.outline-db4e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.outline-db4e .breadcrumb_gold_3ff7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.outline-db4e .under-0da7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.alert-dim-f60c {
    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);
}

.description-old-a416 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.description-old-a416 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.heading_c90a {
    margin: 2rem 0;
}

.backdrop_9178 {
    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);
}

.backdrop_9178:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.north_fbf5 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.component-blue-7e9f {
    flex: 1;
}

.advanced-e7c5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature_6fc4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.article_short_a7ca {
    margin: 2rem 0;
}

.tag_glass_2a32 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_glass_2a32 .secondary_16bc {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.tag_glass_2a32 .large_adba {
    color: var(--text-gray);
    margin: 0;
}

.module_82f2 {
    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);
}

.module_82f2 .border-41de {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.focus-over-01db {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.banner-fresh-1039 {
    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;
}

.row-a10a {
    flex: 1;
}

.column_white_bbe5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.notification-16cc {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.paper_b866 {
    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;
}

.texture-b454 {
    flex: 1;
}

.sidebar_d2f0 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.layout_green_13e0 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.clean-4f9f {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.container-c957 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.overlay-ed6c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.overlay-ed6c .outline-89b6 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.info-c073 {
    margin-top: 2rem;
}

.info-c073 .pink_7e20 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.bronze_a57e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.icon_next_bae2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .icon_next_bae2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_next_bae2 .smooth-04c7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header-9e5a {
    margin: 2rem 0;
}

.button_6a71 {
    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 */
.picture-a340 {
    padding: var(--section-padding);
}

.primary-hard-716a {
    margin-top: 1rem;
}

.background_fast_5540 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.background_fast_5540 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.background_fast_5540 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.picture_soft_64e7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.liquid_87a1 {
    margin: 2rem 0;
}

.module_bfba {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.photo-79ea {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stone-b76b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.list-liquid-e707 {
    margin: 2rem 0;
}

.filter_purple_60b6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.filter_purple_60b6 .slider_2e2a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.small-3953 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .small-3953 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.selected_510f {
    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);
}

.picture-white-c2df {
    color: var(--text-white);
    font-weight: 600;
}

.hard_75f4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.north_b3dd {
    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);
}

.north_b3dd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.avatar_lite_8e8c {
    padding: var(--section-padding);
}

.current-670b {
    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;
}

.current-670b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.bright_f28b {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bright_f28b .search-96fa {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright_f28b .old-0711 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.tag-fb28 {
    flex: 1;
}

.border_1d4f {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus-6598 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-6598 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focus-6598 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.focused_0241 {
    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);
}

.focused_0241 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.focused_0241 strong {
    color: var(--warning-color);
}

/* Slots Section */
.clean-3106 {
    padding: var(--section-padding);
}

.light_3910 {
    margin: 2rem 0;
}

/* Table Games Section */
.mask-silver-36a3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.modal-out-1cce {
    margin: 2rem 0;
}

.simple_23fb {
    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);
}

.simple_23fb:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.simple_23fb .label-next-6b21 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.simple_23fb .feature-d999 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.selected-50dc {
    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);
}

.selected-50dc .border-41de {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.lite-030c {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_south_d84d {
    margin: 2rem 0;
}

.iron-dc30 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-b8fc {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue_2f46 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.new_2fe1 {
    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);
}

.new_2fe1:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.new_2fe1.fn-active-fc04 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.shadow-huge-131b {
    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);
}

.gas_6edf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gas_6edf strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.block_e4e9 {
    padding: var(--section-padding);
}

.prev-a529 {
    margin: 2rem 0;
}

.grid_pro_5ee0 {
    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);
}

.grid_pro_5ee0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .grid_pro_5ee0 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tooltip_789f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.slider_f4bf {
    flex: 1;
}

.shadow_37f0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-blue-2335 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.active-hard-7492 {
    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;
}

.accordion-full-6196 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focus_d4d9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature_rough_f64d {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.overlay_dark_9093 {
    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;
}

.overlay_dark_9093:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.column-large-6e73 {
    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);
}

.description-d52d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.description-d52d strong {
    color: var(--accent-color);
}

/* New Games Section */
.last_8c71 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-7f70 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .column-7f70 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column-7f70 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info_dynamic_7346 {
    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;
}

.info_dynamic_7346:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.block-3c3c {
    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;
}

.accordion_east_ce7f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.title-south-7cc4 {
    font-size: 2rem;
}

.shadow_eedb {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.media-slow-d464 {
    flex: 1;
}

.feature_ff51 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.table-orange-97d2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tertiary-6a6a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.primary-narrow-cd96 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accent-f3af {
    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;
}

.box-2be3 {
    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;
}

.box-2be3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.up-bd47 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-west-8569 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.avatar_a6e5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .avatar_a6e5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pink_7043 {
    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);
}

.title-1fcd {
    color: var(--text-white);
    font-weight: 600;
}

.narrow_c065 {
    color: var(--accent-color);
    font-weight: 600;
}

.secondary_fa8d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.secondary_fa8d strong {
    color: var(--accent-color);
}

/* Security Section */
.tooltip_7537 {
    padding: var(--section-padding);
}

/* Benefits Section */
.caption_52a7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.pattern_static_e1ab {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.banner_1111 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.sort_3514 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.pro-a62d {
    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) {
    .pro-a62d {
        flex-direction: column;
        gap: 1rem;
    }
}

.pro-a62d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.pro-a62d .paper_b866 {
    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;
}

.pro-a62d .texture-b454 {
    flex: 1;
}

.pro-a62d .sidebar_d2f0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pro-a62d .layout_green_13e0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.soft-60e5 {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.soft-60e5 .input-left-25f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.soft-60e5 .gas_281a {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soft-60e5 .gas_281a li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.soft-60e5 .gas_281a li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.center_be86 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.gradient-8e13 {
    padding: var(--section-padding);
}

.current-2797 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .current-2797 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-1e52 {
    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);
}

.action-1e52:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.action-1e52 .wrapper_inner_a2e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.action-1e52 .soft_e484 {
    flex: 1;
}

.action-1e52 .wood-508d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.action-1e52 .center_f9d1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.surface-4a5f {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.surface-4a5f .center-3466 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.surface-4a5f .wide-4d91 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.surface-4a5f .wide-4d91 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);
}

.surface-4a5f .wide-4d91 li:last-child {
    border-bottom: none;
}

.surface-4a5f .wide-4d91 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;
}

.surface-4a5f .wide-4d91 li strong {
    color: var(--text-white);
}

.overlay-bcd9 {
    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);
}

.overlay-bcd9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay-bcd9 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.cold_e59e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow_steel_a565 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .shadow_steel_a565 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-next-1b1d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.video-next-1b1d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.element-30b9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.south-1da8 {
    font-size: 2rem;
}

.disabled_motion_e2b6 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.fixed-cf09 {
    flex: 1;
}

.tag-3e25 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-3e25 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tag-3e25 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.list-middle-3e1e {
    margin-top: 3rem;
}

.tertiary-dark-88d3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.message-tiny-1b1f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.fast_0ab5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fast_0ab5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.fast_0ab5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.fast_0ab5 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.accordion_fluid_f6ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notice-eed0 {
    margin: 2rem 0;
}

.white_8bc6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.white_8bc6 .slider_2e2a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.main_old_4ff3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .main_old_4ff3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stone-6672 {
    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);
}

.stone-6672:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.notification_bronze_1fab {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.accordion-c5d6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.image_e84d {
    padding: var(--section-padding);
}

.selected-b347 {
    margin: 2rem 0;
}

.list-f941 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .list-f941 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list-f941 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-ffb5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.icon-ffb5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shadow-cdff {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.message-f903 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.grid_f09c {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.grid_f09c.under-d5e6 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.secondary_glass_ad07 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.shade-warm-15b3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.backdrop_plasma_7f03 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.over_b798 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notice_stone_74f3 {
    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);
}

.notice_stone_74f3 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notice_stone_74f3 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.list-upper-85b8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.outline-easy-aa61 {
    margin: 2rem 0;
}

.paper-e508 {
    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) {
    .paper-e508 {
        flex-direction: column;
        gap: 1rem;
    }
}

.paper-e508:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paper-e508::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);
}

.button_5d17 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.progress-23ea {
    flex: 1;
}

.list_cd6d {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chip-6fca {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chip-6fca li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.disabled-39fb {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_4307 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.heading-809a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .heading-809a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breadcrumb-clean-6331 {
    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);
}

.light_df1f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.secondary_left_1641 {
    flex: 1;
}

.element_advanced_cf9b {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.alert_upper_9d77 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.left_0714 {
    margin-top: 2rem;
    text-align: center;
}

.box_3531 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.box_3531 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.border_9282 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .border_9282 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient-cool-8c66 {
    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);
}

.gradient-cool-8c66:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.gradient-cool-8c66 .modal-be84 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gradient-cool-8c66 .dark_c116 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.gradient-cool-8c66 .icon-3d72 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.gradient-cool-8c66 .avatar_red_4630 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.over_1cf4 {
    padding: var(--section-padding);
}

.basic_b849 .preview_bright_4e53 {
    flex: 1;
}

/* Promo Calendar Section */
.south_dc33 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.avatar-6830 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar-6830 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_7c11 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tertiary_old_3291 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.carousel-motion-3ad8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outline_iron_ffc5 {
    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);
}

.progress_clean_94bb {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.icon-east-1c8d {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.plasma_cb01 {
    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);
}

.plasma_cb01 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.plasma_cb01 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.content_old_6d24 {
    padding: var(--section-padding);
}

.top-7d5c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .top-7d5c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.north_2b05 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.red-0022 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popup-e9c0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-e9c0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.primary-862a {
    margin-top: 3rem;
}

.primary-862a .tertiary-dark-88d3 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.primary-862a .message-tiny-1b1f {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.primary-862a .fast_0ab5 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.primary-862a .fast_0ab5 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.primary-862a .fast_0ab5 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.primary-862a .fast_0ab5 li strong {
    color: var(--warning-color);
}

.element_hovered_3e0c {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.element_hovered_3e0c strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.focused-75a8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_ec79 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_ec79 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sidebar_b294 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sidebar_b294 .slider_2e2a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.block_0c9a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module_e09e {
    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);
}

.module_e09e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hovered-b317 {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange-a176 {
    flex: 1;
}

.layout-2fd6 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.huge-7a76 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bright_0c03 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.pink_5699 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.banner-gold-5f8f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .banner-gold-5f8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.east_9fd2 {
    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);
}

.east_9fd2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.highlight-large-8ba7 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gradient-5b3a {
    color: var(--text-gray);
    font-size: 1rem;
}

.liquid_93ce {
    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);
}

.east-2506 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.east-2506 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.highlight-dd20 { 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; }
.hard-e212, .paragraph_0f9a { max-width:100%; height:auto; }

.hover_pro_2865, .copper_4583, .dark-a46b { white-space:normal; }

.pressed-add2,
.element-cfb8,
.selected_4b8c,
.border_9282,
.article_short_a7ca,
.fast-0273 {
  flex-wrap:wrap;
}

[class*="grid"],
.banner-gold-5f8f,
.list-f941,
.heading-pro-78f8 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.huge-7d20 img,
.element-cfb8 img,
.element-ab9c img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.message_north_d40e, .copper-2a21,
.pattern_1778, .content_solid_5696 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.shade-red-87a2 { width:100%; overflow-x:auto; }
.shade-red-87a2 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.gas_6583 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .gas_6583 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.focus_clean_0f39 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.advanced_61d3,
.preview-c5a5,
.box-fresh-9c94,
.stale_5fda,
.complex-e5ec,
.banner-gold-5f8f,
.list-f941,
.heading-pro-78f8,
.secondary-pro-9ee5,
.prev-a529,
.gas_6583 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .advanced_61d3,
  .preview-c5a5,
  .box-fresh-9c94,
  .stale_5fda,
  .complex-e5ec,
  .banner-gold-5f8f,
  .list-f941,
  .heading-pro-78f8,
  .secondary-pro-9ee5,
  .prev-a529,
  .gas_6583 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.next-515e,
.dim-03da,
.east_9fd2,
.content_prev_173b,
.icon-ffb5,
.popup_c843,
.grid_pro_5ee0,
.focus_clean_0f39 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.section_5c5b,
.feature-c322,
.plasma-fb4e {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.section_5c5b > *,
.feature-c322 > *,
.plasma-fb4e > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: de47 */
.shadow-element-u4 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
