/* {$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;
}

.stone_4e7f {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.info_e54f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .info_e54f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .info_e54f {
        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 */
.heading-thick-fb3e {
    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);
}

.gold-bf8b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .gold-bf8b {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .title-e6d6 {
        grid-column: 1;
    }
    
    .right_d4fa {
        grid-column: 2;
    }
    
    .tabs-upper-5f00 {
        grid-column: 3;
    }
}

.title-e6d6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.title-e6d6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.heading_f060 {
    display: none;
}

@media (min-width: 1024px) {
    .heading_f060 {
        display: block;
    }
}

/* Grouped Navigation */
.header_fea4 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.primary-3af1 {
    position: relative;
}

.section_liquid_62cf {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.primary-3af1 .primary_3dae {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.primary_3dae {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.slider_liquid_b123 {
    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;
}

.slider_liquid_b123:hover,
.slider_liquid_b123.fn-active-657c {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.logo-a8de {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .logo-a8de {
        display: flex;
    }
}

/* Mobile Register Button */
.right_d4fa {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .right_d4fa {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.gallery-in-1986 {
    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;
}

.gallery-in-1986::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 */
.tabs-upper-5f00 {
    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) {
    .tabs-upper-5f00 {
        display: none;
    }
}

.tabs-upper-5f00 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tabs-upper-5f00.fn-active-657c span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.tabs-upper-5f00.fn-active-657c span:nth-child(2) {
    opacity: 0;
}

.tabs-upper-5f00.fn-active-657c span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dropdown_87ac {
    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;
}

.dropdown_87ac.fn-active-657c {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.block_06bc {
    overflow: hidden;
}

.notification-full-da94 {
    list-style: none;
    padding: 0.75rem 0;
}

.hidden-e220 {
    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;
}

.hidden-e220:hover,
.hidden-e220.fn-active-657c {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.hidden-e220.upper-947d {
    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;
}

.hidden-e220.upper-947d::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 */
.paper-1ae6 {
    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;
}

.accent-fed4 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.accent-fed4:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.backdrop_gold_fb18 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.backdrop_gold_fb18:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.east-d401 {
    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;
}

.east-d401:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.complex-ccaa {
    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;
}

.frame-0f6f {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.frame-0f6f:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.footer-f1c5 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.footer-f1c5:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hidden_1645 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.hidden_1645: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);
}

.stone-dafe {
    font-size: 1em;
    font-weight: 700;
}

.shade-d6c0 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.background-fluid-1976 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.background-fluid-1976::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;
}

.feature_e984 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .feature_e984 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.huge-4c96 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.image-bd66 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.active_prev_591b {
    margin-bottom: 2rem;
}

.icon-bc5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .icon-bc5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-current-bd6b {
    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);
}

.heading_up_3ffa {
    font-size: 1.5rem;
}

.in_c0f2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.message_db07 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_copper_afca {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.nav_copper_afca:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.glass_b73c {
    text-align: center;
    margin-bottom: 3rem;
}

.nav-6bfd {
    margin-bottom: 1rem;
}

.description_silver_db66 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.blue-5d7c {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .blue-5d7c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .blue-5d7c.form_silver_684c {
        direction: rtl;
    }
    
    .blue-5d7c.form_silver_684c > * {
        direction: ltr;
    }
}

.photo-narrow-482c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.photo-narrow-482c:first-child {
    margin-top: 0;
}

.solid-fd26 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tertiary-e1a6 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.tertiary-e1a6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.header_c83b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .header_c83b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.summary-a8ed {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.content-blue-eb65 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hard-6dfe {
    list-style: none;
}

.hard-6dfe li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hard-6dfe li:last-child {
    border-bottom: none;
}

/* Games Features */
.texture-968d {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.shade-up-bbb3 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pink_5a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.active-25a3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.down-0aac {
    margin: 2rem 0;
}

.breadcrumb-wood-4511 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.title-9e1b {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.detail_5ba2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.module-brown-dba5 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.focus_north_e1b4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .focus_north_e1b4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orange_4263 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.orange_4263:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tertiary-red-df86 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.texture_liquid_c7d8 {
    font-size: 1.5rem;
}

.logo_silver_99d1 {
    color: var(--accent-color);
    margin: 0;
}

.next-b48b {
    list-style: none;
}

.next-b48b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.next-b48b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.progress-motion-b93a {
    margin: 2rem 0;
}

.under-f2d7 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.white-2224 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .white-2224 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_liquid_b4b0 {
    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);
}

.active-4bf6 {
    font-size: 1.25rem;
}

.accent_9a37 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.steel_c6cf,
.fast_d35a {
    text-align: center;
    margin: 2rem 0;
}

.logo-up-f4bf,
.pattern-rough-6394 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.over-44ff {
    margin: 2rem 0;
    text-align: center;
}

.solid-b10d {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solid-b10d::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;
}

.outline_3cf6 {
    position: relative;
    z-index: 1;
}

.active-fresh-c52d {
    margin-bottom: 1rem;
}

.chip_3e4a {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel_fixed_2fa6 {
    margin-bottom: 3rem;
}

.section_advanced_266c {
    margin-top: 3rem;
}

.out_83c0 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .out_83c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.out_83c0 .avatar-current-bd6b {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.heading-9e39 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.silver_6125 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.modal-easy-2100 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.paragraph_yellow_856e {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .paragraph_yellow_856e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .paragraph_yellow_856e {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.warm_a420 {
    margin-bottom: 1rem;
}

.aside-9049 img {
    margin-bottom: 1rem;
}

.pagination_narrow_14a7 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block_simple_f1cc {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pink_e771 {
    list-style: none;
}

.pink_e771 li {
    margin-bottom: 0.5rem;
}

.pink_e771 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.pink_e771 a:hover {
    color: var(--accent-color);
}

.chip_b374 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.popup-140c {
    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);
}

.popup-140c:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.solid-36ca {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.solid-36ca p {
    margin-bottom: 0.25rem;
}

.icon-9478 {
    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) {
    .icon-9478 {
        flex-direction: row;
    }
}

.header-266a {
    text-align: center;
}

@media (min-width: 768px) {
    .header-266a {
        text-align: left;
    }
}

.header-266a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.carousel_down_311b {
    font-size: 0.75rem !important;
}

.panel_33bb {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.title_middle_2d3b {
    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);
    }
}

.nav-tiny-7cd1 {
    animation: fadeInUp 0.6s ease-out;
}

.image_bb59 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.hover_solid_5476 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .hover_solid_5476 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.notification_e9e3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notification_e9e3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_6b22 {
    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);
}

.aside_6b22 .pink_5a30 {
    font-size: 1.25rem;
}

.aside_6b22 .widget_orange_0b01 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.photo-iron-a9fa {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo-iron-a9fa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion-action-405b {
    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);
}

.accordion-action-405b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture_383e {
    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);
}

.stale_bc28 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.large_fec8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.title_d9fb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.table-motion-2fd4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.table-motion-2fd4 .active-25a3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.table-motion-2fd4 .lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notice_daaf {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.input-short-5ca3 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.input-short-5ca3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.input-short-5ca3 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.outer_6e0b {
    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);
}

.warm_5d88 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tabs_3710 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tabs_3710 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.tabs_3710 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);
}

.tabs_3710 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.tabs_3710 input::placeholder {
    color: var(--text-muted);
}

.dim-c49e {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-d794 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.gallery-d794 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.hovered_36c3 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.hovered_36c3:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.white-2224 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .white-2224 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.text_liquid_b4b0 {
    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);
}

.text_liquid_b4b0 .active-4bf6 {
    font-size: 1.25rem;
}

.text_liquid_b4b0 .accent_9a37 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.out-d2ba {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-1384 {
    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);
}

.logo-1384 .pink_5a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.logo-1384 .active-25a3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.logo-1384 .lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
}

.link_short_119b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.icon_80e0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.icon_80e0 .gradient-4d7f {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.icon_80e0 .outline_9fa2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.input-fast-a852 {
    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);
}

.thick-d760 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .thick-d760 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-86f2 {
    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);
}

.hero-86f2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-74f0 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.full_d300 {
    flex: 1;
}

.black_df29 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hero_f56c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.last_f03c {
    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);
}

.last_f03c:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.surface_210a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .surface_210a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.alert-soft-6373 {
    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);
}

.alert-soft-6373:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.article_bottom_000b {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar_wood_70dd {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form_clean_33fa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.highlight-3fe3 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.south_3445 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer_9f9e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.paragraph_9ef2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.paragraph_9ef2 .bronze_82da {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_9ef2 .tiny_6974 {
    color: var(--text-gray);
    line-height: 1.6;
}

.current_9fb1 {
    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);
}

.narrow-f866 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-b587 {
    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);
}

.link-b587 .pink_5a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-b587 .active-25a3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.link-b587 .lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-complex-896f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .card-complex-896f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.frame-plasma-12ad {
    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);
}

.frame-plasma-12ad:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.preview-7bfd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-7bfd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.icon_0ba0 {
    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);
}

.icon_0ba0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sidebar_green_dec6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_371c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.title-9e1b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.easy_52d1 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.shadow_9257 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.under_57cc {
    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);
}

.under_57cc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notification_wood_bd76 {
    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);
}

.badge-da89 {
    flex: 1;
}

.bronze-3a03 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.focus-left-68ca {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.slider_bright_211b {
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-471b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pattern_large_3b32 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern_large_3b32 .gradient-4d7f {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pattern_large_3b32 .outline_9fa2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.fast_d35a {
    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);
}

.cool_4245 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cool_4245 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.fixed_7bd3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .fixed_7bd3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.texture_7600 {
    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);
}

.texture_7600:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced_9088 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight_cool_abf7 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input-cdd8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.row_23e9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.outline_4002 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze_31b0 {
    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);
}

.row-soft-b3f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-east-90fb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark-08f4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.narrow-f866 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.link-b587 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.link-b587 .active-25a3 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.link-b587 .lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
}

.outline-fb69 {
    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);
}

.aside_full_4b49 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .aside_full_4b49 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .aside_full_4b49 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lite-692c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.lite-692c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.first_0c6e {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.black-fb7a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.focus-53c5 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.pressed_e0e7 {
    padding: 1.5rem;
}

.notification_tall_0c8d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slow_833f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slow_833f 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;
}

.slow_833f li:last-child {
    border-bottom: none;
}

.slow_833f li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.accordion-active-462f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-active-462f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.active-a22a {
    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);
}

.active-a22a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input-ee6d {
    font-size: 2rem;
    flex-shrink: 0;
}

.up_b6e8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-outer-94ee {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.sidebar_thick_c5f9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice_83bc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cold_9544 {
    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);
}

.table-cool-472d {
    font-size: 2rem;
    flex-shrink: 0;
}

.table_8657 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.tabs-outer-f2de {
    color: var(--text-gray);
    line-height: 1.6;
}

.south_a1eb {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.container-e3cf {
    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);
}

.column-066b {
    text-align: center;
}

.caption_5b3c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel_3c5a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.hover-advanced-a4ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused-fb65 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.focused-fb65 .active-25a3 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.focused-fb65 .lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
}

.block-19d7 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .block-19d7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block-19d7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_b567 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.disabled_b567:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-middle-0d7d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.heading_black_a765 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.active-25a3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.focus-d0fa {
    padding: 1.5rem;
}

.lite-4848 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hover_in_2ece {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover_in_2ece 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;
}

.hover_in_2ece li:last-child {
    border-bottom: none;
}

.hover_in_2ece li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.feature-a875 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.left_3157 {
    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);
}

.left_3157:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.fast-611f {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south-8205 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.texture_383e {
    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;
}

.stale_bc28 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.large_fec8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-41bb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cool-5d86 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.sort_7225 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.purple-a2b2 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.solid_7e0c {
    display: flex;
    gap: 1rem;
}

.solid_7e0c .status-2ba0 {
    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;
}

.new-b889 {
    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);
}

.popup_85f5 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.stone_0fbb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stone_0fbb 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;
}

.stone_0fbb li:last-child {
    border-bottom: none;
}

.stone_0fbb li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.yellow_037e {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .yellow_037e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .yellow_037e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.narrow-40fc {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.narrow-40fc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.text_red_cf41 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hard_4a7a {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bronze_82da {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.last-7bc0 {
    font-size: 1rem;
}

.media_hovered_c124 {
    padding: 1.5rem;
}

.tiny_6974 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.chip-smooth-dc0c {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.chip-smooth-dc0c .column-066b {
    text-align: center;
}

.chip-smooth-dc0c .steel_3c5a {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.chip-smooth-dc0c .section-advanced-dd95 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.gradient-dynamic-ee6d {
    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);
}

.gradient-dynamic-ee6d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.accordion-west-fd5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-west-fd5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-8296 {
    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);
}

.detail-8296:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.static-132a {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_9f68 {
    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);
}

.thumbnail_advanced_9583 {
    font-size: 2rem;
    flex-shrink: 0;
}

.button-7548 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pro-9f3c {
    color: var(--text-gray);
    line-height: 1.6;
}

.red-0c47 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb_c8b8 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.blue-6c6e {
    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);
}

.glass_8094 {
    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;
}

.glass_8094.overlay_1452 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.glass_8094.purple_bca0 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.glass_8094.backdrop_c3ed {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.glass_8094.pro_1c40 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.glass_8094.mask-c273 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.focus_4e28 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.stale_fdaa {
    color: var(--text-gray);
    line-height: 1.6;
}

.pagination-dirty-b7cd {
    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);
}

.complex-7ae1 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.link_short_119b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link_short_119b 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;
}

.link_short_119b li:last-child {
    border-bottom: none;
}

.link_short_119b li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.cool-818d {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cool-818d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cool-818d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-17d2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.list-17d2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list-17d2.glass_a449 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .list-17d2.glass_a449 {
        grid-column: span 3;
    }
}

.background_huge_438e {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.list-17d2.glass_a449 .background_huge_438e {
    background: rgba(6, 182, 212, 0.1);
}

.slow-bdaa {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.widget_97bc {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.list-17d2.glass_a449 .widget_97bc {
    color: var(--info-color);
}

.prev-34f2 {
    padding: 1.5rem;
    text-align: center;
}

.sort_fast_6b4b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.list-17d2.glass_a449 .sort_fast_6b4b {
    color: var(--info-color);
}

.photo_f6b4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.narrow-e020 {
    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 */
.background-paper-59d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .background-paper-59d0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outer_62d8 {
    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);
}

.outer_62d8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.wrapper_ccc9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-1384 {
    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);
}

.active-4bf6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hovered-169c {
    flex: 1;
}

.under-f2d7 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-15a8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.widget_790a {
    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);
}

.video_bce1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.solid_befb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.title_middle_2d3b {
    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);
}

.plasma_a082 {
  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);
}

.plasma_a082 .column-066b {
    text-align: center;
}

.plasma_a082 .caption_5b3c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.plasma_a082 .steel_3c5a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.notice-aeb0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bronze-e738 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced-bcdb {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.section_up_fac8 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tiny-6d12 {
    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);
}

.west-f083 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.warm_255d {
    color: var(--text-gray);
    line-height: 1.6;
}

.media_c75c {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .media_c75c {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media_c75c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.element_cfa5 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.element_cfa5:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.heading_6da2 {
    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);
}

.notice-019c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tall_642e {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.bronze_933f {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bronze_933f.light_f366 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.bronze_933f.column_upper_fe7c {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.bronze_933f.backdrop_16ca {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.hidden_up_46d0 {
    padding: 1.5rem;
    text-align: center;
}

.popup-large-4cfe {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accent-6e83 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.accent-6e83 .paragraph-up-7577 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.picture_0732 {
    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);
}

.picture_0732:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.aside_prev_b9a0 {
  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);
}

.overlay-iron-e298 {
    text-align: center;
}

.overlay-iron-e298 .caption_5b3c {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.overlay-iron-e298 .steel_3c5a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.container_rough_f62d { text-align: center; }
.sidebar-33de { text-align: left; }
.preview-0c3e { text-align: right; }

.active_active_45cc { margin-bottom: 0; }
.logo-0d08 { margin-bottom: 0.5rem; }
.table_d63c { margin-bottom: 1rem; }
.paper-7961 { margin-bottom: 1.5rem; }
.popup-bronze-8ce8 { margin-bottom: 2rem; }

.middle-e9f2 { margin-top: 0; }
.panel-soft-8f90 { margin-top: 0.5rem; }
.description_fixed_2e03 { margin-top: 1rem; }
.button_white_03db { margin-top: 1.5rem; }
.list_gold_0733 { margin-top: 2rem; }

.fn-hidden-657c { display: none; }
.fn-visible-657c { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .background-fluid-1976 {
        padding: 6rem 0 3rem;
    }
    
    .feature_e984 {
        text-align: center;
    }
    
    .blue-5d7c {
        text-align: center;
    }
    
    .icon-bc5f {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .heading-thick-fb3e,
    .dropdown_87ac,
    .solid-b10d,
    .modal-easy-2100 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .background-fluid-1976 {
        background: none;
    }
}

/* Providers Section */
.narrow-801b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress-b9f2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .progress-b9f2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .progress-b9f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-purple-8c87 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.tag-purple-8c87:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.title_wide_7e2b {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.grid_7c3c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.right_0ab3 {
    list-style: none;
    padding: 0;
}

.right_0ab3 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.right_0ab3 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.sort_bronze_02ba {
    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);
}

.sort_bronze_02ba p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.progress_0f10 {
    padding: var(--section-padding);
}

.overlay-pink-4021 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .overlay-pink-4021 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.west-26f6 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.west-26f6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.next_77fb {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.list-86f5 {
    display: flex;
    flex-direction: column;
}

.status_west_0102 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.next_3844 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.table_83c0 {
    color: var(--accent-color);
}

.nav_down_6d8e {
    font-size: 1.25rem;
}

.tag-yellow-b1b3 {
    margin-bottom: 1rem;
}

.tag-yellow-b1b3 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.silver-d568 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.overlay-easy-02b4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.column-066b {
    text-align: center;
}

.caption_5b3c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.steel_3c5a {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.label_lower_cd12 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gold_c8b4 {
    margin: 2rem 0;
}

.carousel_iron_0291 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.carousel_iron_0291 .pink_5a30 {
    font-size: 2rem;
    flex-shrink: 0;
}

.small-b911 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tooltip-b534 {
    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;
}

.tooltip-b534:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.tiny-f67a {
    font-size: 2rem;
}

.modal_9bbc {
    display: flex;
    flex-direction: column;
}

.filter-brown-f7ac {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.section-9c67 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.new_f614 {
    padding: var(--section-padding);
}

.alert_1056 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .alert_1056 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_1056 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sort_stale_e299 {
    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);
}

.sort_stale_e299:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.sort_stale_e299 .caption_5b3c {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.sort_stale_e299 .steel_3c5a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.sort_stale_e299 .up-c584 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.pagination_dirty_a8f5 {
    margin-top: 4rem;
}

.inner-e123 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.menu-selected-bba2 {
    overflow-x: auto;
}

.focus-yellow-fb1b {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.focus-yellow-fb1b thead {
    background: var(--accent-color);
}

.focus-yellow-fb1b th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.focus-yellow-fb1b td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.focus-yellow-fb1b tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.focus-yellow-fb1b tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.logo_static_e57e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.short_aaca {
    max-width: 900px;
    margin: 0 auto;
}

.simple-125c {
    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);
}

.simple-125c:hover {
    border-color: var(--accent-color);
}

.bright-30c3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.bright-30c3 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.texture_full_fa6b {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.simple-125c.fn-active-657c .texture_full_fa6b {
    transform: rotate(45deg);
}

.slow-67a9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.simple-125c.fn-active-657c .slow-67a9 {
    max-height: 1000px;
}

.slow-67a9 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.rough_82e4 {
    padding: var(--section-padding);
}

.input-short-5ca3 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.background_57c8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.list_413c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .list_413c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.south-3dbb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-a363 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cool-d872 {
    font-size: 2rem;
}

.feature_fe2a {
    color: var(--text-white);
    margin: 0;
}

.accent_bronze_07c0 {
    list-style: none;
    padding: 0;
}

.accent_bronze_07c0 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accent_bronze_07c0 li:last-child {
    border-bottom: none;
}

.table-8efd {
    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);
}

.table-8efd p {
    color: var(--success-color);
    margin: 0;
}

.disabled_9c62 {
    margin-top: 3rem;
}

.popup_85f5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary_gas_8703 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .summary_gas_8703 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu_over_f1e5 {
    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);
}

.glass-a0d9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.menu_over_f1e5 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.label-6304 {
    padding: var(--section-padding);
}

.full-a163 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .full-a163 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background-0848 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.background-0848:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.message-4804 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.border-fcda {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.modal_90d0 {
    flex: 1;
}

.grid-pink-b19f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.pagination_large_180f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.status_copper_a8e2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column-be87 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-be87:last-child {
    border-bottom: none;
}

/* Comparison Section */
.yellow_9880 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.primary-bc67 {
    padding: var(--section-padding);
}

.fast-f518 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.accordion_ab21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_ab21 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form_d5ec {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-ff3b, .frame_8c9f, .hard_8b77 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.hard_8b77 {
    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 */
.overlay-east-916f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.cool-bb81 {
    margin: 2rem 0;
}

.picture-2447 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-short-3087 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.box-2401 {
    list-style: none;
    padding: 0;
}

.box-2401 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;
}

.box-2401 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.box-2401 li:last-child {
    border-bottom: none;
}

.wrapper-4780 {
    text-align: center;
    margin-top: 2rem;
}

.plasma_b44b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.module_pro_d5e0 {
    padding: var(--section-padding);
}

.tertiary_lite_f51f {
    margin: 2rem 0;
}

.pink-d4b9 {
    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) {
    .pink-d4b9 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pink-d4b9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.slow-6c21 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.modal-6ef8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.lower-6fb0 {
    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;
}

.pagination_north_55e8 {
    flex: 1;
}

.info-b72a {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.orange-199a {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.wrapper_simple_8587 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.center_09bd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .center_09bd {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.overlay-b131 {
    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);
}

.overlay-b131:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.overlay-b131 .caption_5b3c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-b131 .steel_3c5a {
    color: var(--text-gray);
    font-size: 1rem;
}

.purple_b9a2 {
    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);
}

.large-4ace {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.large-4ace strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.outline-2706 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .outline-2706 {
        grid-template-columns: 1fr 1fr;
    }
}

.input-slow-e064 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex_7d08 {
    margin-bottom: 1.5rem;
}

.complex_7d08 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.complex_7d08 input,
.complex_7d08 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;
}

.complex_7d08 input:focus,
.complex_7d08 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.middle_15dd {
    width: 100%;
    margin-top: 1rem;
}

.cold_dd83 {
    display: flex;
    align-items: center;
}

.aside-a4b0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb_66e1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.hero-down-b9ab {
    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;
}

.box-south-a211 {
    color: var(--text-gray);
}

.warm_4176 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.form-ab21 {
    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);
}

.form-ab21 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.tertiary_4359 {
    margin-top: 3rem;
}

.border-7e3e {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.static-8b61 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow_dc68 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.green-f5d4 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.green-f5d4:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.tall_2861 {
    padding: var(--section-padding);
}

.detail_84b0 {
    margin: 2rem 0;
}

.smooth-3467 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-f7bb {
    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-f7bb:hover, .hero-f7bb.fn-active-657c {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.active_6262 {
    display: none;
}

.active_6262.fn-active-657c {
    display: block;
}

.in_e4ce {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.complex_3868 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.simple-0690 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.simple-0690 ul {
    list-style: none;
    padding: 0;
}

.simple-0690 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.simple-0690 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.inner_8e18 {
    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 */
.footer-hot-9d27 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focused-0183 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark_0010 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-solid-566a {
    color: var(--accent-color);
    margin: 0;
}

.large_47f3 {
    display: flex;
    gap: 1.5rem;
}

.box-fresh-ce2a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.narrow_a6c8 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.slider_dirty_0ab4 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.slider_dirty_0ab4.logo-c962 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.slider_dirty_0ab4.up-372b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.slider_dirty_0ab4.hero_d2ba {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hover-red-7c33 {
    margin-top: 2rem;
}

.hidden-ff56 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.article_7d28 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .article_7d28 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-874e {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.text-complex-6b1f {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.modal-ee73 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.basic-c661 {
    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 */
.paper-c65f {
    padding: var(--section-padding);
}

.hot-4482 {
    margin: 2rem 0;
}

.component_solid_4b44 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.notice-63e5 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.notification-6a94 {
    list-style: none;
    padding: 0;
}

.notification-6a94 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;
}

.notification-6a94 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.notification-6a94 li:last-child {
    border-bottom: none;
}

.dirty_adbc {
    margin: 2rem 0;
}

.gas-3ec2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.slider-4191 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .slider-4191 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside-smooth-2289 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.next_638d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu_yellow_5821 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.stale_2c5b {
    margin-top: 2rem;
}

.black_df29 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.main_b841 {
    list-style: none;
    padding: 0;
}

.picture_smooth_b0d0 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.picture_smooth_b0d0 a {
    color: var(--accent-color);
    text-decoration: none;
}

.picture_smooth_b0d0 a:hover {
    text-decoration: underline;
}

.feature-basic-d1e6 {
    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 */
.sort-0a93 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.search_f47f {
    margin: 2rem 0;
}

.badge_db68 {
    margin-bottom: 3rem;
}

.badge_db68 .badge-short-3087 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hard-12b0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.black_1684 {
    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);
}

.black_1684:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.disabled_hard_f83b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .disabled_hard_f83b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.silver-4bd7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Odds Comparison Section */
.carousel-11c6 {
    padding: var(--section-padding);
}

.card_red_bc44 {
    margin: 2rem 0;
}

.tertiary-green-9279 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero_simple_34d4 {
    overflow-x: auto;
    margin: 2rem 0;
}

.container-d40a {
    background: rgba(6, 182, 212, 0.1) !important;
}

.popup_9d35 {
    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;
}

.header_copper_a461 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.filter-next-f295 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .filter-next-f295 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_hovered_326b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.panel_hovered_326b .pink_5a30 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.panel_hovered_326b .active-25a3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.disabled_active_0b43 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.black-099a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_south_7b0b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .status_south_7b0b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message-2578 {
    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;
}

.message-2578:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.medium-05cf {
    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);
}

.notification-black-9ca8 {
    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;
}

.hover_gas_1b8c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.advanced_4b1a {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.hero_0b1c {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.south-8c17 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-5092 {
    color: var(--text-white);
    font-weight: 600;
}

.bronze-6d08 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.nav-hard-63e7 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-hard-63e7 .status-2ba0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.left-6b07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .left-6b07 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_506b {
    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);
}

.border_506b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.border_506b .caption_5b3c {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.border_506b .steel_3c5a {
    color: var(--text-gray);
    font-size: 1rem;
}

.under-b5d2 {
    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);
}

.footer_orange_81a7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.footer_orange_81a7 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.outline_4002 {
    margin: 2rem 0;
}

.bronze_31b0 {
    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);
}

.bronze_31b0:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.row-soft-b3f4 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.out-8939 {
    flex: 1;
}

.highlight-east-90fb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dark-08f4 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.narrow-f866 {
    margin: 2rem 0;
}

.link-b587 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.link-b587 .active-25a3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.link-b587 .lite-4848 {
    color: var(--text-gray);
    margin: 0;
}

.outline-fb69 {
    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);
}

.outline-fb69 .logo-up-f4bf {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.disabled_active_0b43 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.notification_wood_bd76 {
    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;
}

.badge-da89 {
    flex: 1;
}

.focus-left-68ca {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.slider_bright_211b {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.texture_383e {
    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;
}

.border_large_6d25 {
    flex: 1;
}

.stale_bc28 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.large_fec8 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.sort_7225 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.purple-a2b2 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.solid_7e0c {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.solid_7e0c .status-2ba0 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.new-b889 {
    margin-top: 2rem;
}

.new-b889 .popup_85f5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.dirty_442b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.container-e3cf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .container-e3cf {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-e3cf .column-066b {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hover-advanced-a4ce {
    margin: 2rem 0;
}

.focused-fb65 {
    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 */
.shade_54e2 {
    padding: var(--section-padding);
}

.focus-d0fa {
    margin-top: 1rem;
}

.hover_in_2ece {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hover_in_2ece li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hover_in_2ece li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.large_5a46 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.border-north-8e1e {
    margin: 2rem 0;
}

.plasma_9c77 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.aside_045c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.copper_e829 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.element_eed4 {
    margin: 2rem 0;
}

.clean_51dc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.clean_51dc .badge-short-3087 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard_8721 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hard_8721 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.popup-yellow-d364 {
    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);
}

.paragraph_west_9ea7 {
    color: var(--text-white);
    font-weight: 600;
}

.avatar-orange-7020 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hover_c376 {
    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);
}

.hover_c376 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.complex_3249 {
    padding: var(--section-padding);
}

.selected_f541 {
    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;
}

.selected_f541:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.top-b1d0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-b1d0 .glass-a0d9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.top-b1d0 .shadow-6e8a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.next-c132 {
    flex: 1;
}

.bright_77c3 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.green-6d17 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.green-6d17 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.green-6d17 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.right_d0d6 {
    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);
}

.right_d0d6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.right_d0d6 strong {
    color: var(--warning-color);
}

/* Slots Section */
.column_hovered_357a {
    padding: var(--section-padding);
}

.south_3445 {
    margin: 2rem 0;
}

/* Table Games Section */
.green_28b0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.footer_9f9e {
    margin: 2rem 0;
}

.paragraph_9ef2 {
    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);
}

.paragraph_9ef2:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.paragraph_9ef2 .bronze_82da {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.paragraph_9ef2 .tiny_6974 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.current_9fb1 {
    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);
}

.current_9fb1 .logo-up-f4bf {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.pressed_661f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-72af {
    margin: 2rem 0;
}

.tertiary-f26c {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.advanced_0ef9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table_lower_1389 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.description_aa02 {
    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);
}

.description_aa02:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.description_aa02.fn-active-657c {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.input_0478 {
    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);
}

.prev_11be {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.prev_11be strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.west_ab16 {
    padding: var(--section-padding);
}

.box_fdfc {
    margin: 2rem 0;
}

.widget_37ed {
    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);
}

.widget_37ed:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .widget_37ed {
        flex-direction: column;
        align-items: flex-start;
    }
}

.surface-c12b {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.plasma_6d24 {
    flex: 1;
}

.gradient_warm_2eb0 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.down_df4f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.notice-b1fa {
    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;
}

.inner_4018 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.element-b6f9 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wrapper-dim-01cd {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hot_3025 {
    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;
}

.hot_3025:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pattern-top-24a8 {
    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);
}

.list-brown-7645 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.list-brown-7645 strong {
    color: var(--accent-color);
}

/* New Games Section */
.blue-1164 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth_1acd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .smooth_1acd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .smooth_1acd {
        grid-template-columns: repeat(4, 1fr);
    }
}

.border_8396 {
    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;
}

.border_8396:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.overlay-green-a13d {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--warning-color);
    border-radius: var(--radius-full);
    color: var(--primary-bg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.down-eaa5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.simple_f54e {
    font-size: 2rem;
}

.column_easy_745c {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.accordion_ee43 {
    flex: 1;
}

.liquid_1f08 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.texture-orange-df18 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-d21b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video-2974 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.label-slow-2369 {
    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;
}

.media-acaa {
    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;
}

.media-acaa:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.primary-prev-d3e5 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.current-d517 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture-15b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .picture-15b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tabs-fresh-4ca2 {
    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);
}

.right-8cbb {
    color: var(--text-white);
    font-weight: 600;
}

.wide_3c71 {
    color: var(--accent-color);
    font-weight: 600;
}

.tag_wood_97a7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tag_wood_97a7 strong {
    color: var(--accent-color);
}

/* Security Section */
.dropdown_ab9c {
    padding: var(--section-padding);
}

/* Benefits Section */
.shadow-lite-0d98 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.stale_36d6 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.accent-dark-9a3a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.filter-smooth-5f5e {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.dropdown-95fd {
    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) {
    .dropdown-95fd {
        flex-direction: column;
        gap: 1rem;
    }
}

.dropdown-95fd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.dropdown-95fd .texture_383e {
    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;
}

.dropdown-95fd .border_large_6d25 {
    flex: 1;
}

.dropdown-95fd .stale_bc28 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.dropdown-95fd .large_fec8 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.feature_cold_0e3e {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature_cold_0e3e .under-f2d7 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature_cold_0e3e .out-d2ba {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_cold_0e3e .out-d2ba li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature_cold_0e3e .out-d2ba li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.border-93b0 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.silver-b4f2 {
    padding: var(--section-padding);
}

.middle_cb5b {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .middle_cb5b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.plasma_4496 {
    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);
}

.plasma_4496:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.plasma_4496 .aside_tiny_506f {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma_4496 .hover-prev-fba6 {
    flex: 1;
}

.plasma_4496 .gradient-4d7f {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.plasma_4496 .box-b8f3 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.progress-fbfc {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-fbfc .up_12b6 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-fbfc .full_8510 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.progress-fbfc .full_8510 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);
}

.progress-fbfc .full_8510 li:last-child {
    border-bottom: none;
}

.progress-fbfc .full_8510 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;
}

.progress-fbfc .full_8510 li strong {
    color: var(--text-white);
}

.caption-black-42ae {
    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);
}

.caption-black-42ae p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.caption-black-42ae strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.mask-west-d52f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.right_7df7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .right_7df7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.widget-602e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.widget-602e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.south-b0cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status_top_d06e {
    font-size: 2rem;
}

.upper_1805 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pressed_2fe2 {
    flex: 1;
}

.accent-warm-a832 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-warm-a832 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accent-warm-a832 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.row_13c3 {
    margin-top: 3rem;
}

.component_solid_4b44 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.notice-63e5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notification-6a94 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-6a94 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.notification-6a94 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.notification-6a94 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shade_large_ba65 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.stone_ccc5 {
    margin: 2rem 0;
}

.filter-2d5e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.filter-2d5e .badge-short-3087 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.list_2bf4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .list_2bf4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.frame-5be9 {
    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);
}

.frame-5be9:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.grid-cool-a3d1 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.secondary_f028 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.icon_stale_e2dd {
    padding: var(--section-padding);
}

.list_silver_161d {
    margin: 2rem 0;
}

.highlight_west_f08b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .highlight_west_f08b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlight_west_f08b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.message_6a2d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.message_6a2d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.video_52c9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chip-8b28 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.yellow_addd {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.yellow_addd.rough_4c59 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.old_094c {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.highlight-north-9fca {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.texture-huge-673f {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info_0223 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_6b8b {
    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);
}

.hovered_6b8b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.hovered_6b8b strong {
    color: var(--accent-color);
}

/* Update Log Section */
.hard-3ef1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.green-e9ac {
    margin: 2rem 0;
}

.card_copper_b425 {
    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) {
    .card_copper_b425 {
        flex-direction: column;
        gap: 1rem;
    }
}

.card_copper_b425:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.card_copper_b425::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);
}

.card_focused_22f2 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.logo_over_fa00 {
    flex: 1;
}

.stone-57b0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sort_down_93be {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort_down_93be li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph_hovered_72e0 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.fixed-7d49 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient-active-8d36 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .gradient-active-8d36 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-6bb4 {
    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);
}

.pattern-west-2d8b {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.medium_629c {
    flex: 1;
}

.badge-south-5cee {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.filter-green-ca90 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.nav_1685 {
    margin-top: 2rem;
    text-align: center;
}

.lite-dce7 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.lite-dce7 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.accordion-west-fd5f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion-west-fd5f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-8296 {
    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);
}

.detail-8296:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail-8296 .input-ee6d {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-8296 .up_b6e8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.detail-8296 .detail-outer-94ee {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.detail-8296 .sidebar_thick_c5f9 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.red_75af {
    padding: var(--section-padding);
}

.title_9f68 .disabled_e911 {
    flex: 1;
}

/* Promo Calendar Section */
.purple-8c13 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.complex-8b25 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex-8b25 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hover-3386 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid-bb68 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.down-d56e {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.picture_2ae2 {
    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);
}

.wrapper-middle-0133 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.left_0f4f {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.gallery-lower-288c {
    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);
}

.gallery-lower-288c p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery-lower-288c strong {
    color: var(--accent-color);
}

/* Requirements Section */
.hero-narrow-9faa {
    padding: var(--section-padding);
}

.status_mini_36a4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .status_mini_36a4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fixed_3887 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.popup-039c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tabs_c352 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs_c352 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.button_ee4f {
    margin-top: 3rem;
}

.button_ee4f .component_solid_4b44 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.button_ee4f .notice-63e5 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button_ee4f .notification-6a94 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.button_ee4f .notification-6a94 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.button_ee4f .notification-6a94 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.button_ee4f .notification-6a94 li strong {
    color: var(--warning-color);
}

.basic_c4ac {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.basic_c4ac strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.glass_a36b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary_e84f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .tertiary_e84f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress-6771 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-6771 .badge-short-3087 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tooltip-a2d7 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item_baa9 {
    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);
}

.item_baa9:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.media_stone_a814 {
    font-size: 2rem;
    flex-shrink: 0;
}

.over_221b {
    flex: 1;
}

.warm_5af0 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.last_8f43 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.fluid_26ee {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.sidebar-copper-88b0 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.message-new-c5ac {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .message-new-c5ac {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container-south-5b68 {
    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);
}

.container-south-5b68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.dropdown_d210 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aside-stone-57f7 {
    color: var(--text-gray);
    font-size: 1rem;
}

.large-4ace {
    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);
}

.label_112f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.label_112f strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.info_e54f { 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; }
.nav_copper_afca, .tertiary-e1a6 { max-width:100%; height:auto; }

.paper-1ae6, .east-d401, .complex-ccaa { white-space:normal; }

.feature_e984,
.blue-5d7c,
.background-paper-59d0,
.accordion-west-fd5f,
.narrow-f866,
.media_c75c {
  flex-wrap:wrap;
}

[class*="grid"],
.message-new-c5ac,
.highlight_west_f08b,
.out_83c0 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.background-fluid-1976 img,
.blue-5d7c img,
.message_db07 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.huge-4c96, .image-bd66,
.nav-6bfd, .description_silver_db66 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.menu-selected-bba2 { width:100%; overflow-x:auto; }
.menu-selected-bba2 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.progress-b9f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .progress-b9f2 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.tag-purple-8c87 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.alert_1056,
.detail_f218,
.bright_00c8,
.photo_solid_5540,
.center_09bd,
.message-new-c5ac,
.highlight_west_f08b,
.out_83c0,
.aside_prev_b9a0,
.box_fdfc,
.progress-b9f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .alert_1056,
  .detail_f218,
  .bright_00c8,
  .photo_solid_5540,
  .center_09bd,
  .message-new-c5ac,
  .highlight_west_f08b,
  .out_83c0,
  .aside_prev_b9a0,
  .box_fdfc,
  .progress-b9f2 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.sort_stale_e299,
.overlay-b131,
.container-south-5b68,
.avatar-current-bd6b,
.message_6a2d,
.overlay-iron-e298,
.widget_37ed,
.tag-purple-8c87 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.preview_advanced_da1e,
.caption_a63e,
.message-79ea {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.preview_advanced_da1e > *,
.caption_a63e > *,
.message-79ea > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 4336 */
.shadow-element-d8 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.0;
}
