/* {$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;
}

.mask_middle_aace {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.row-steel-e64f {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .row-steel-e64f {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .row-steel-e64f {
        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 */
.element_3782 {
    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);
}

.brown-c8ba {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .brown-c8ba {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .heading-90c6 {
        grid-column: 1;
    }
    
    .pink-2369 {
        grid-column: 2;
    }
    
    .backdrop-middle-04d3 {
        grid-column: 3;
    }
}

.heading-90c6 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.heading-90c6:hover img {
    transform: scale(1.05);
}

/* Navigation */
.shadow_de7e {
    display: none;
}

@media (min-width: 1024px) {
    .shadow_de7e {
        display: block;
    }
}

/* Grouped Navigation */
.block_1c51 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.pro_6675 {
    position: relative;
}

.disabled_076d {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.pro_6675 .section_fast_5229 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.section_fast_5229 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.layout-plasma-fa85 {
    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;
}

.layout-plasma-fa85:hover,
.layout-plasma-fa85.fn-active-6abc {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.input_cold_75a5 {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .input_cold_75a5 {
        display: flex;
    }
}

/* Mobile Register Button */
.pink-2369 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .pink-2369 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.middle_0486 {
    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;
}

.middle_0486::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 */
.backdrop-middle-04d3 {
    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) {
    .backdrop-middle-04d3 {
        display: none;
    }
}

.backdrop-middle-04d3 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.backdrop-middle-04d3.fn-active-6abc span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.backdrop-middle-04d3.fn-active-6abc span:nth-child(2) {
    opacity: 0;
}

.backdrop-middle-04d3.fn-active-6abc span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.breadcrumb-stone-552e {
    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;
}

.breadcrumb-stone-552e.fn-active-6abc {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.video_3d4a {
    overflow: hidden;
}

.notice_88b2 {
    list-style: none;
    padding: 0.75rem 0;
}

.gradient_old_393a {
    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;
}

.gradient_old_393a:hover,
.gradient_old_393a.fn-active-6abc {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.gradient_old_393a.disabled_pink_bee7 {
    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;
}

.gradient_old_393a.disabled_pink_bee7::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 */
.overlay_yellow_e175 {
    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;
}

.basic_862b {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.basic_862b:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.sidebar-64a2 {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.sidebar-64a2:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.static_f59f {
    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;
}

.static_f59f:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.breadcrumb_df66 {
    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;
}

.link_e0aa {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.link_e0aa:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.widget_up_68ec {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.widget_up_68ec:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.backdrop_f6fc {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.backdrop_f6fc: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);
}

.row_up_377c {
    font-size: 1em;
    font-weight: 700;
}

.blue_3fe8 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.info_e08e {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.info_e08e::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;
}

.summary_898c {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .summary_898c {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.next-7767 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.backdrop_3cff {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.medium-c937 {
    margin-bottom: 2rem;
}

.middle_a19c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .middle_a19c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal-fluid-3681 {
    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);
}

.accent-9464 {
    font-size: 1.5rem;
}

.component-b4e9 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.dynamic-0fc8 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget_yellow_e8a2 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.widget_yellow_e8a2:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.badge-eb09 {
    text-align: center;
    margin-bottom: 3rem;
}

.down-9d42 {
    margin-bottom: 1rem;
}

.sort-6d13 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel_purple_69c4 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .carousel_purple_69c4 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .carousel_purple_69c4.photo_slow_c7ac {
        direction: rtl;
    }
    
    .carousel_purple_69c4.photo_slow_c7ac > * {
        direction: ltr;
    }
}

.outline-deac {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.outline-deac:first-child {
    margin-top: 0;
}

.carousel_cold_0328 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.yellow-8cb0 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.yellow-8cb0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.detail-6637 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-6637 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-8c6e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.red-dd99 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar-e39e {
    list-style: none;
}

.sidebar-e39e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-e39e li:last-child {
    border-bottom: none;
}

/* Games Features */
.media-755a {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.status-lite-ee32 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.summary-7547 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fresh-4ff0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.heading_pressed_5dea {
    margin: 2rem 0;
}

.list-hard-d134 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.hidden_easy_767a {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.stale-48f3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.heading_505d {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.complex_2591 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .complex_2591 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.accordion_f686 {
    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);
}

.accordion_f686:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.item-rough-05a0 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.aside_slow_6e87 {
    font-size: 1.5rem;
}

.info_advanced_7948 {
    color: var(--accent-color);
    margin: 0;
}

.link-791c {
    list-style: none;
}

.link-791c li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.link-791c li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.wrapper-bc4b {
    margin: 2rem 0;
}

.footer-solid-9965 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.backdrop-left-da24 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .backdrop-left-da24 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-red-ad73 {
    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);
}

.accent_solid_cb78 {
    font-size: 1.25rem;
}

.hero-015b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.fluid-26a9,
.static_45c0 {
    text-align: center;
    margin: 2rem 0;
}

.nav-mini-6b93,
.disabled_top_b77d {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.focus-easy-c2e9 {
    margin: 2rem 0;
    text-align: center;
}

.row_b7c5 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.row_b7c5::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;
}

.accent_f983 {
    position: relative;
    z-index: 1;
}

.summary-glass-37fc {
    margin-bottom: 1rem;
}

.layout_c52d {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.column-dc55 {
    margin-bottom: 3rem;
}

.east_d6c4 {
    margin-top: 3rem;
}

.info-96d9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .info-96d9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-96d9 .modal-fluid-3681 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.narrow_8837 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.filter-e53e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.description_f360 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.logo_fresh_f3bc {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .logo_fresh_f3bc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo_fresh_f3bc {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.tag_last_6b5d {
    margin-bottom: 1rem;
}

.mask_bright_ae75 img {
    margin-bottom: 1rem;
}

.content-3433 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form_light_5bd6 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hover-cb7a {
    list-style: none;
}

.hover-cb7a li {
    margin-bottom: 0.5rem;
}

.hover-cb7a a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hover-cb7a a:hover {
    color: var(--accent-color);
}

.large-ad30 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.middle_9db8 {
    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);
}

.middle_9db8:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.bronze-fccf {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.bronze-fccf p {
    margin-bottom: 0.25rem;
}

.wood-d575 {
    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) {
    .wood-d575 {
        flex-direction: row;
    }
}

.up_274a {
    text-align: center;
}

@media (min-width: 768px) {
    .up_274a {
        text-align: left;
    }
}

.up_274a p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.liquid_6cba {
    font-size: 0.75rem !important;
}

.accordion_pressed_848b {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fresh_d84a {
    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);
    }
}

.link-old-3219 {
    animation: fadeInUp 0.6s ease-out;
}

.tooltip-2e82 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.caption-127b {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .caption-127b {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.short-c5b3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .short-c5b3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message_lower_05b9 {
    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);
}

.message_lower_05b9 .summary-7547 {
    font-size: 1.25rem;
}

.message_lower_05b9 .new_5088 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.red-f008 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .red-f008 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough_b60f {
    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);
}

.rough_b60f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.hero-over-8e25 {
    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);
}

.module_prev_b3eb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cool_71ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.dim-a2e6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row-thick-b73a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.row-thick-b73a .fresh-4ff0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-thick-b73a .sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
}

.label_92ef {
    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);
}

.over-3ee6 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.over-3ee6 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.over-3ee6 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.outer_f3eb {
    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);
}

.element-4754 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bronze-8cdd {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bronze-8cdd label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.bronze-8cdd 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);
}

.bronze-8cdd input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.bronze-8cdd input::placeholder {
    color: var(--text-muted);
}

.link_7fce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.border-aac2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.border-aac2 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.small-32e0 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.small-32e0:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.backdrop-left-da24 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-left-da24 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.slider-red-ad73 {
    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);
}

.slider-red-ad73 .accent_solid_cb78 {
    font-size: 1.25rem;
}

.slider-red-ad73 .hero-015b {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.prev_d919 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_tall_14cf {
    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);
}

.container_tall_14cf .summary-7547 {
    font-size: 2rem;
    flex-shrink: 0;
}

.container_tall_14cf .fresh-4ff0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.container_tall_14cf .sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
}

.cold-d321 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.modal_ae4e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_ae4e .footer-static-cdfa {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.modal_ae4e .focused_71f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.carousel-fast-94c2 {
    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);
}

.status-left-5f72 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .status-left-5f72 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.avatar-f204 {
    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);
}

.avatar-f204:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick-c4c3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.brown_4a51 {
    flex: 1;
}

.notification-324e {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.link-iron-3fd7 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thumbnail_wood_7e47 {
    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);
}

.thumbnail_wood_7e47:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.yellow_12af {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .yellow_12af {
        grid-template-columns: repeat(4, 1fr);
    }
}

.backdrop_prev_f410 {
    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);
}

.backdrop_prev_f410:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.list_0001 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary-red-122e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tall-784b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.paper_9c0a {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.focus_tall_0f46 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title-outer-c141 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.down-eeb0 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.down-eeb0 .badge-854d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.down-eeb0 .module-5583 {
    color: var(--text-gray);
    line-height: 1.6;
}

.card_bronze_c359 {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.picture_red_c4ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid_3e0a {
    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);
}

.solid_3e0a .summary-7547 {
    font-size: 2rem;
    flex-shrink: 0;
}

.solid_3e0a .fresh-4ff0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.solid_3e0a .sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
}

.nav_gold_13c1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .nav_gold_13c1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.up-804b {
    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);
}

.up-804b:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.popup-da15 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .popup-da15 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip-iron-a1ff {
    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);
}

.tooltip-iron-a1ff:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.plasma_d1f4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion-67c4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hidden_easy_767a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.gas_51d2 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.fresh-4b29 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sort_hot_6cc9 {
    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);
}

.sort_hot_6cc9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.outline-3861 {
    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);
}

.status_advanced_e1a9 {
    flex: 1;
}

.info-yellow-7824 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.slider_ed28 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.shadow_fixed_25bb {
    color: var(--text-gray);
    line-height: 1.6;
}

.card-active-c60e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tag_glass_5719 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag_glass_5719 .footer-static-cdfa {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tag_glass_5719 .focused_71f2 {
    color: var(--text-gray);
    line-height: 1.6;
}

.static_45c0 {
    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);
}

.image-narrow-5c03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-narrow-5c03 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.content-b54c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .content-b54c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sidebar_653b {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.sidebar_653b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thick_04cb {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_new_a1ea {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table_paper_04ca {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.modal-dim-bf3b {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.column_7310 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mask-8221 {
    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_0606 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pagination_17be {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description_b6b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.picture_red_c4ee {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.solid_3e0a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.solid_3e0a .fresh-4ff0 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solid_3e0a .sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_stone_5d24 {
    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);
}

.disabled_copper_f969 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .disabled_copper_f969 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .disabled_copper_f969 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-south-3394 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask-south-3394:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.status-39b4 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.menu_877e {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.caption-deb9 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.pink-2861 {
    padding: 1.5rem;
}

.tall_463d {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.yellow_65f5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yellow_65f5 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;
}

.yellow_65f5 li:last-child {
    border-bottom: none;
}

.yellow_65f5 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.dropdown_old_08f2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .dropdown_old_08f2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-8c7d {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.mask-8c7d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.container-a1be {
    font-size: 2rem;
    flex-shrink: 0;
}

.tabs-7b00 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.right_cdc2 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.footer_glass_b7bb {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.list-8ab4 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.full-df9f {
    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-ac5f {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_fddb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.heading_7276 {
    color: var(--text-gray);
    line-height: 1.6;
}

.white_da88 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.glass_68a1 {
    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);
}

.aside-80a4 {
    text-align: center;
}

.full-9f73 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_active_33d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.small-6ecd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.wrapper-dim-2a5c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wrapper-dim-2a5c .fresh-4ff0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.wrapper-dim-2a5c .sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-ba8f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .soft-ba8f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .soft-ba8f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-blue-0ce3 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.article-blue-0ce3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.pagination-tall-b5be {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.south_4759 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.fresh-4ff0 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.bronze-da6b {
    padding: 1.5rem;
}

.sidebar_stone_5fea {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-365e {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-365e 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;
}

.panel-365e li:last-child {
    border-bottom: none;
}

.panel-365e li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.column_wide_f462 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.wrapper-pressed-4164 {
    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);
}

.wrapper-pressed-4164:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag-advanced-abd6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.warm-1056 {
    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);
}

.hero-over-8e25 {
    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;
}

.module_prev_b3eb {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cool_71ae {
    color: var(--text-gray);
    line-height: 1.6;
}

.selected-31ce {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.text_thick_5a84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.content_f4fe {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tertiary_3e54 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.heading_fixed_9034 {
    display: flex;
    gap: 1rem;
}

.heading_fixed_9034 .popup_f225 {
    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;
}

.soft_4e8b {
    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);
}

.tooltip-focused-75d4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.column-ddc7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-ddc7 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;
}

.column-ddc7 li:last-child {
    border-bottom: none;
}

.column-ddc7 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.info_up_bf30 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .info_up_bf30 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info_up_bf30 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column_simple_535b {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.column_simple_535b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.border-f2b5 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.table-last-ca05 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.badge-854d {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.accent-center-e0c0 {
    font-size: 1rem;
}

.up_cb62 {
    padding: 1.5rem;
}

.module-5583 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.warm-f3cb {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.warm-f3cb .aside-80a4 {
    text-align: center;
}

.warm-f3cb .frame_active_33d0 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.warm-f3cb .gold-e6aa {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.link-6827 {
    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);
}

.link-6827:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.green-a901 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-a901 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_dc5a {
    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);
}

.breadcrumb_dc5a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery-selected-8b98 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu_hot_e083 {
    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);
}

.block_pink_6d67 {
    font-size: 2rem;
    flex-shrink: 0;
}

.first_5337 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.dropdown-stone-871d {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh-17ac {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.grid-dark-e7f0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.focused-1958 {
    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);
}

.module_south_5a8c {
    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;
}

.module_south_5a8c.photo-5661 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.module_south_5a8c.link-static-a517 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.module_south_5a8c.pressed_7bf8 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.module_south_5a8c.fresh-debe {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.module_south_5a8c.panel_action_4a71 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.liquid-54d7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.focused_4075 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-2041 {
    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);
}

.static-673b {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.cold-d321 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cold-d321 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;
}

.cold-d321 li:last-child {
    border-bottom: none;
}

.cold-d321 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.top_0277 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .top_0277 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .top_0277 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center_2618 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.center_2618:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.center_2618.pink_e64d {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .center_2618.pink_e64d {
        grid-column: span 3;
    }
}

.down_a612 {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.center_2618.pink_e64d .down_a612 {
    background: rgba(6, 182, 212, 0.1);
}

.focus-9e02 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.right_581c {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.center_2618.pink_e64d .right_581c {
    color: var(--info-color);
}

.avatar-e1fe {
    padding: 1.5rem;
    text-align: center;
}

.small_bc6e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.center_2618.pink_e64d .small_bc6e {
    color: var(--info-color);
}

.plasma-8fa6 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pattern-hard-34a3 {
    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 */
.advanced-0ac1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .advanced-0ac1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accent_wide_46e9 {
    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);
}

.accent_wide_46e9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.info_b906 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.container_tall_14cf {
    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);
}

.accent_solid_cb78 {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_871e {
    flex: 1;
}

.footer-solid-9965 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.pro_b2d1 {
    color: var(--text-gray);
    line-height: 1.6;
}

.silver-3c94 {
    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);
}

.element_de1f {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.huge_a331 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fresh_d84a {
    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);
}

.video-00bb {
  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);
}

.video-00bb .aside-80a4 {
    text-align: center;
}

.video-00bb .full-9f73 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.video-00bb .frame_active_33d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge_98fd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.upper-4456 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image_38d2 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.description_selected_a37a {
    color: var(--text-gray);
    line-height: 1.6;
}

.thumbnail_blue_c6ad {
    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);
}

.short-1477 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.copper_9d49 {
    color: var(--text-gray);
    line-height: 1.6;
}

.primary_2112 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .primary_2112 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .primary_2112 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.picture-f185 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.picture-f185:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gallery_3c20 {
    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);
}

.border_action_caa9 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hero_2e06 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.bottom_df79 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom_df79.solid-b1ff {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.bottom_df79.panel_4106 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.bottom_df79.small_d815 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.article_af57 {
    padding: 1.5rem;
    text-align: center;
}

.feature-aa97 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.frame_glass_fbb5 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.frame_glass_fbb5 .media-wood-0599 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.menu-inner-e423 {
    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);
}

.menu-inner-e423:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-up-5dc7 {
  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);
}

.preview_1483 {
    text-align: center;
}

.preview_1483 .full-9f73 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.preview_1483 .frame_active_33d0 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.tag-50c5 { text-align: center; }
.video_inner_0ff8 { text-align: left; }
.image-ff6e { text-align: right; }

.accordion_c18b { margin-bottom: 0; }
.steel-e4f4 { margin-bottom: 0.5rem; }
.simple_169a { margin-bottom: 1rem; }
.gradient-ad0f { margin-bottom: 1.5rem; }
.border-461f { margin-bottom: 2rem; }

.grid-bdaa { margin-top: 0; }
.box_pressed_ea65 { margin-top: 0.5rem; }
.icon_ee2a { margin-top: 1rem; }
.accordion-orange-135e { margin-top: 1.5rem; }
.up-c9a6 { margin-top: 2rem; }

.fn-hidden-6abc { display: none; }
.fn-visible-6abc { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .info_e08e {
        padding: 6rem 0 3rem;
    }
    
    .summary_898c {
        text-align: center;
    }
    
    .carousel_purple_69c4 {
        text-align: center;
    }
    
    .middle_a19c {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .element_3782,
    .breadcrumb-stone-552e,
    .row_b7c5,
    .description_f360 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .info_e08e {
        background: none;
    }
}

/* Providers Section */
.center-e8ec {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message_yellow_08b5 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .message_yellow_08b5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message_yellow_08b5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.up_c370 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.up_c370:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first-7a85 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.title-fluid-c681 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card_purple_89bb {
    list-style: none;
    padding: 0;
}

.card_purple_89bb li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.card_purple_89bb li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.module-d555 {
    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);
}

.module-d555 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.carousel_green_932d {
    padding: var(--section-padding);
}

.footer_d8aa {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .footer_d8aa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-middle-bc1d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.info-middle-bc1d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.paragraph-dim-055a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.secondary_0582 {
    display: flex;
    flex-direction: column;
}

.bottom-20b7 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.north_06f8 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.rough_c6a7 {
    color: var(--accent-color);
}

.widget-499b {
    font-size: 1.25rem;
}

.small-2f66 {
    margin-bottom: 1rem;
}

.small-2f66 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.button_62f4 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.last_5f1c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.aside-80a4 {
    text-align: center;
}

.full-9f73 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame_active_33d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.shadow_focused_8218 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text_4f1b {
    margin: 2rem 0;
}

.button_next_a3fa {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.button_next_a3fa .summary-7547 {
    font-size: 2rem;
    flex-shrink: 0;
}

.next_8418 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.summary-f819 {
    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;
}

.summary-f819:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.element-52ab {
    font-size: 2rem;
}

.layout-b7fd {
    display: flex;
    flex-direction: column;
}

.huge-5ea3 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.breadcrumb_paper_203d {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.focus-bottom-e853 {
    padding: var(--section-padding);
}

.in-4efe {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .in-4efe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .in-4efe {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_1591 {
    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);
}

.gold_1591:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold_1591 .full-9f73 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.gold_1591 .frame_active_33d0 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.gold_1591 .message_7000 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.red_dd5e {
    margin-top: 4rem;
}

.warm-543f {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.paper-1030 {
    overflow-x: auto;
}

.medium-33cb {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.medium-33cb thead {
    background: var(--accent-color);
}

.medium-33cb th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.medium-33cb td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.medium-33cb tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.medium-33cb tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.background_next_6aac {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.message-right-9095 {
    max-width: 900px;
    margin: 0 auto;
}

.feature_solid_06a6 {
    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);
}

.feature_solid_06a6:hover {
    border-color: var(--accent-color);
}

.primary_26e6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.primary_26e6 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.focus_d43f {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.feature_solid_06a6.fn-active-6abc .focus_d43f {
    transform: rotate(45deg);
}

.summary_9a54 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.feature_solid_06a6.fn-active-6abc .summary_9a54 {
    max-height: 1000px;
}

.summary_9a54 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.description-5115 {
    padding: var(--section-padding);
}

.over-3ee6 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.first-a604 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.paragraph_72e4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .paragraph_72e4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.secondary_upper_bc76 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.iron_0880 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message-8f22 {
    font-size: 2rem;
}

.secondary-static-0399 {
    color: var(--text-white);
    margin: 0;
}

.content-5c36 {
    list-style: none;
    padding: 0;
}

.content-5c36 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-5c36 li:last-child {
    border-bottom: none;
}

.breadcrumb_white_551a {
    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);
}

.breadcrumb_white_551a p {
    color: var(--success-color);
    margin: 0;
}

.yellow-dd41 {
    margin-top: 3rem;
}

.tooltip-focused-75d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message-d972 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .message-d972 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wide-12e8 {
    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);
}

.shade-791f {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wide-12e8 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.header_red_1e8b {
    padding: var(--section-padding);
}

.photo-simple-3257 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .photo-simple-3257 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.secondary_south_2f04 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.secondary_south_2f04:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.accent-771f {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-da6a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.shade_6769 {
    flex: 1;
}

.section-paper-4eb5 {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.top_5e5f {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pattern-inner-732b {
    color: var(--text-gray);
    line-height: 1.6;
}

.next_65b5 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next_65b5:last-child {
    border-bottom: none;
}

/* Comparison Section */
.title-7488 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.backdrop_bright_b0ba {
    padding: var(--section-padding);
}

.liquid-ee66 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.badge-7f6b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .badge-7f6b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-iron-a00b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.left-1dee, .filter-0763, .icon-outer-3a39 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.icon-outer-3a39 {
    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 */
.small_3f04 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.heading-215c {
    margin: 2rem 0;
}

.gradient-7e75 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-ac05 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.thick_6cbe {
    list-style: none;
    padding: 0;
}

.thick_6cbe 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;
}

.thick_6cbe li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.thick_6cbe li:last-child {
    border-bottom: none;
}

.border_focused_d3c8 {
    text-align: center;
    margin-top: 2rem;
}

.plasma_377a {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.input-gold-9257 {
    padding: var(--section-padding);
}

.label-fe86 {
    margin: 2rem 0;
}

.notice-orange-df8e {
    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) {
    .notice-orange-df8e {
        flex-direction: column;
        align-items: flex-start;
    }
}

.notice-orange-df8e:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.background_d609 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.thick_61fc {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.layout-419a {
    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;
}

.row-23b8 {
    flex: 1;
}

.module_steel_432f {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.row_d566 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.cool-9bd4 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.link-hovered-9532 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .link-hovered-9532 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.banner_ffa2 {
    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);
}

.banner_ffa2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.banner_ffa2 .full-9f73 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.banner_ffa2 .frame_active_33d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.warm_5690 {
    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);
}

.paragraph_solid_3d4b {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.paragraph_solid_3d4b strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.silver_8fe9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .silver_8fe9 {
        grid-template-columns: 1fr 1fr;
    }
}

.content-4ef2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pattern-1332 {
    margin-bottom: 1.5rem;
}

.pattern-1332 label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pattern-1332 input,
.pattern-1332 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;
}

.pattern-1332 input:focus,
.pattern-1332 select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.pressed_ba68 {
    width: 100%;
    margin-top: 1rem;
}

.header-56fe {
    display: flex;
    align-items: center;
}

.card_top_c668 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.thumbnail-245e {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.active_401f {
    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;
}

.wrapper_2f83 {
    color: var(--text-gray);
}

.next_87aa {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.modal_warm_f352 {
    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);
}

.modal_warm_f352 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.copper_c050 {
    margin-top: 3rem;
}

.gold_24d4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.logo_6a6e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.out_edeb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.current-9d93 {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.current-9d93:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.widget_red_37a0 {
    padding: var(--section-padding);
}

.glass-e3b6 {
    margin: 2rem 0;
}

.paragraph-steel-3176 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.backdrop-2cd5 {
    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;
}

.backdrop-2cd5:hover, .backdrop-2cd5.fn-active-6abc {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.modal_motion_a70e {
    display: none;
}

.modal_motion_a70e.fn-active-6abc {
    display: block;
}

.warm_806d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-81e4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.out-1983 h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.out-1983 ul {
    list-style: none;
    padding: 0;
}

.out-1983 ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.out-1983 ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.active_70fe {
    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 */
.nav_43ee {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.selected-1b8e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module-a4ce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hot-fba4 {
    color: var(--accent-color);
    margin: 0;
}

.wide_1fab {
    display: flex;
    gap: 1.5rem;
}

.light-f29c {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.aside_brown_5cef {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.gold_bf49 {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.gold_bf49.component-white-fbda {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.gold_bf49.title_gold_90a7 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.gold_bf49.slider_focused_d5e6 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.progress-glass-0dec {
    margin-top: 2rem;
}

.container_dynamic_60b8 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.old_1d18 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .old_1d18 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.row_8f12 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.mask-smooth-742d {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mask-5e90 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.thumbnail-f519 {
    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 */
.lower-438c {
    padding: var(--section-padding);
}

.basic_0ae8 {
    margin: 2rem 0;
}

.summary_iron_f023 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.hidden_c06d {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.panel_hard_ce00 {
    list-style: none;
    padding: 0;
}

.panel_hard_ce00 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;
}

.panel_hard_ce00 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.panel_hard_ce00 li:last-child {
    border-bottom: none;
}

.wide-76a3 {
    margin: 2rem 0;
}

.overlay-motion-4e66 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mini_4141 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mini_4141 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.summary-down-cbbc {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.yellow_778d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.component_blue_1a22 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tiny_da9b {
    margin-top: 2rem;
}

.notification-324e {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.simple-d9e2 {
    list-style: none;
    padding: 0;
}

.middle_cc8f {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.middle_cc8f a {
    color: var(--accent-color);
    text-decoration: none;
}

.middle_cc8f a:hover {
    text-decoration: underline;
}

.accent_23cf {
    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 */
.alert-5fcd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_b6be {
    margin: 2rem 0;
}

.accordion_inner_59dd {
    margin-bottom: 3rem;
}

.accordion_inner_59dd .motion-ac05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.block-gold-b2dc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tiny_7291 {
    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);
}

.tiny_7291:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.first_8513 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .first_8513 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-3f93 {
    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 */
.title_soft_ef3d {
    padding: var(--section-padding);
}

.modal-25e9 {
    margin: 2rem 0;
}

.button-e06f {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border-834e {
    overflow-x: auto;
    margin: 2rem 0;
}

.paper-503f {
    background: rgba(6, 182, 212, 0.1) !important;
}

.north_81eb {
    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;
}

.mini_8fdf {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.title_medium_02b2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .title_medium_02b2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress-ec9f {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-ec9f .summary-7547 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.progress-ec9f .fresh-4ff0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal_narrow_16ec {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.liquid-ce34 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.thumbnail_middle_8aca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .thumbnail_middle_8aca {
        grid-template-columns: repeat(3, 1fr);
    }
}

.green_972e {
    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;
}

.green_972e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.small-cd01 {
    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);
}

.hero_0b13 {
    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;
}

.aside_wood_dba5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.green-d1c0 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.info_wood_dc52 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.text-white-40d8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.west_7721 {
    color: var(--text-white);
    font-weight: 600;
}

.overlay-up-dbe7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.title-e888 {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.title-e888 .popup_f225 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.element-brown-8ac2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-brown-8ac2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-top-fea3 {
    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);
}

.search-top-fea3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.search-top-fea3 .full-9f73 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.search-top-fea3 .frame_active_33d0 {
    color: var(--text-gray);
    font-size: 1rem;
}

.selected-ccee {
    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);
}

.inner-2a68 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.inner-2a68 strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.column_7310 {
    margin: 2rem 0;
}

.mask-8221 {
    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);
}

.mask-8221:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.thumbnail_0606 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.complex-0dc6 {
    flex: 1;
}

.pagination_17be {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.description_b6b0 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.picture_red_c4ee {
    margin: 2rem 0;
}

.solid_3e0a {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid_3e0a .fresh-4ff0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.solid_3e0a .sidebar_stone_5fea {
    color: var(--text-gray);
    margin: 0;
}

.thumbnail_stone_5d24 {
    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);
}

.thumbnail_stone_5d24 .nav-mini-6b93 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.modal_narrow_16ec {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.outline-3861 {
    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;
}

.status_advanced_e1a9 {
    flex: 1;
}

.slider_ed28 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.shadow_fixed_25bb {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.hero-over-8e25 {
    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;
}

.video_smooth_17ba {
    flex: 1;
}

.module_prev_b3eb {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cool_71ae {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.content_f4fe {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.tertiary_3e54 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.heading_fixed_9034 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.heading_fixed_9034 .popup_f225 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.soft_4e8b {
    margin-top: 2rem;
}

.soft_4e8b .tooltip-focused-75d4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.filter_pro_f794 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.glass_68a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .glass_68a1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glass_68a1 .aside-80a4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.small-6ecd {
    margin: 2rem 0;
}

.wrapper-dim-2a5c {
    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 */
.layout_new_9054 {
    padding: var(--section-padding);
}

.bronze-da6b {
    margin-top: 1rem;
}

.panel-365e {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.panel-365e li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.panel-365e li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.card-fade {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.large_16d7 {
    margin: 2rem 0;
}

.copper_f653 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.small-fbae {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.media-light-489b {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.card_7926 {
    margin: 2rem 0;
}

.caption-0a6e {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.caption-0a6e .motion-ac05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.wrapper-0dc8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wrapper-0dc8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.surface-a12e {
    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);
}

.outer_1c47 {
    color: var(--text-white);
    font-weight: 600;
}

.search-gold-94d1 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.component-da43 {
    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);
}

.component-da43 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.hidden_left_9491 {
    padding: var(--section-padding);
}

.focus-liquid-2eb6 {
    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;
}

.focus-liquid-2eb6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.background_d792 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background_d792 .shade-791f {
    font-size: 2rem;
    flex-shrink: 0;
}

.background_d792 .static_07c5 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.in-f8da {
    flex: 1;
}

.secondary_2418 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.aside_hot_d1e7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside_hot_d1e7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.aside_hot_d1e7 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tall_3ee6 {
    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);
}

.tall_3ee6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.tall_3ee6 strong {
    color: var(--warning-color);
}

/* Slots Section */
.paragraph_9ffe {
    padding: var(--section-padding);
}

.focus_tall_0f46 {
    margin: 2rem 0;
}

/* Table Games Section */
.progress_9b9a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title-outer-c141 {
    margin: 2rem 0;
}

.down-eeb0 {
    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);
}

.down-eeb0:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.down-eeb0 .badge-854d {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.down-eeb0 .module-5583 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.card_bronze_c359 {
    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);
}

.card_bronze_c359 .nav-mini-6b93 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.dirty-38f0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-759b {
    margin: 2rem 0;
}

.narrow-e59a {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.upper_2f2c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gradient_warm_2bd7 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.info_279b {
    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);
}

.info_279b:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.info_279b.fn-active-6abc {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.item_e01b {
    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);
}

.icon-ed27 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.icon-ed27 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.top_ed68 {
    padding: var(--section-padding);
}

.alert-next-31fa {
    margin: 2rem 0;
}

.wide_114a {
    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);
}

.wide_114a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .wide_114a {
        flex-direction: column;
        align-items: flex-start;
    }
}

.caption-copper-b0f7 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.up-1cbc {
    flex: 1;
}

.first-5ca6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.last-0e0a {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.picture_soft_045e {
    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;
}

.dynamic-1ce8 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accordion-9bf7 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lite_84a9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.panel_huge_fff7 {
    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;
}

.panel_huge_fff7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.highlight_7343 {
    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);
}

.component-stale-ea01 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.component-stale-ea01 strong {
    color: var(--accent-color);
}

/* New Games Section */
.component-iron-7601 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.gas_6772 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .gas_6772 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gas_6772 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown_5bf3 {
    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;
}

.brown_5bf3:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.video_755d {
    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;
}

.medium_e411 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.status_a7ff {
    font-size: 2rem;
}

.purple-6bf9 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.article_c463 {
    flex: 1;
}

.surface-paper-cc8b {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.main_9876 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.main-selected-9490 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hover-7137 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature_51d7 {
    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;
}

.active_ed1d {
    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;
}

.active_ed1d:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.border-focused-4456 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.secondary-gas-a580 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.layout_ed2b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .layout_ed2b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_outer_e3be {
    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);
}

.media-4536 {
    color: var(--text-white);
    font-weight: 600;
}

.wrapper_pressed_032a {
    color: var(--accent-color);
    font-weight: 600;
}

.fast-c160 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.fast-c160 strong {
    color: var(--accent-color);
}

/* Security Section */
.tall-3a97 {
    padding: var(--section-padding);
}

/* Benefits Section */
.button_798f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.warm_f61d {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.up-beda {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.old-8c38 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.outline-current-a79b {
    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) {
    .outline-current-a79b {
        flex-direction: column;
        gap: 1rem;
    }
}

.outline-current-a79b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.outline-current-a79b .hero-over-8e25 {
    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;
}

.outline-current-a79b .video_smooth_17ba {
    flex: 1;
}

.outline-current-a79b .module_prev_b3eb {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.outline-current-a79b .cool_71ae {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.active-858b {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-858b .footer-solid-9965 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.active-858b .prev_d919 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.active-858b .prev_d919 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.active-858b .prev_d919 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.gallery_first_f1dc {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.header-pro-1338 {
    padding: var(--section-padding);
}

.backdrop-hot-2b09 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .backdrop-hot-2b09 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.label_slow_767d {
    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);
}

.label_slow_767d:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.label_slow_767d .accent_over_d1d6 {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_slow_767d .component-0311 {
    flex: 1;
}

.label_slow_767d .footer-static-cdfa {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.label_slow_767d .center_3768 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.progress-e2b6 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-e2b6 .tabs-e8d9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress-e2b6 .secondary_static_4019 {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.progress-e2b6 .secondary_static_4019 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-e2b6 .secondary_static_4019 li:last-child {
    border-bottom: none;
}

.progress-e2b6 .secondary_static_4019 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-e2b6 .secondary_static_4019 li strong {
    color: var(--text-white);
}

.under-26e9 {
    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);
}

.under-26e9 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.under-26e9 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.lite_ed4a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.text-d01c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .text-d01c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hovered_cb54 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.hovered_cb54:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.detail-bcd8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gas_3f99 {
    font-size: 2rem;
}

.hot_092f {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.upper_99ba {
    flex: 1;
}

.hidden_e730 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden_e730 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hidden_e730 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.main_7f43 {
    margin-top: 3rem;
}

.summary_iron_f023 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.hidden_c06d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.panel_hard_ce00 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel_hard_ce00 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.panel_hard_ce00 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.panel_hard_ce00 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.outline-8c85 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pattern-8c0c {
    margin: 2rem 0;
}

.detail_top_f1f4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.detail_top_f1f4 .motion-ac05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card-over-a577 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .card-over-a577 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pattern_active_09a5 {
    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);
}

.pattern_active_09a5:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.lower-c60c {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tertiary-cool-b48b {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.description-dim-c243 {
    padding: var(--section-padding);
}

.link-4297 {
    margin: 2rem 0;
}

.under_a006 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .under_a006 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .under_a006 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_6e09 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.border_6e09:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.box_wide_a37c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.label_purple_8859 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.west-8ca0 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.west-8ca0.element_hovered_d558 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.secondary_blue_53eb {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.texture-upper-659a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.dark-6248 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_small_c9fa {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.highlight_pressed_3e43 {
    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);
}

.highlight_pressed_3e43 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.highlight_pressed_3e43 strong {
    color: var(--accent-color);
}

/* Update Log Section */
.bright-38d7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.lite-3e48 {
    margin: 2rem 0;
}

.solid_6019 {
    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) {
    .solid_6019 {
        flex-direction: column;
        gap: 1rem;
    }
}

.solid_6019:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.solid_6019::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);
}

.box_small_826c {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.block-6010 {
    flex: 1;
}

.hot-395f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.badge-156b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.badge-156b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.content-49c9 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.header_9f37 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.progress_green_2a7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .progress_green_2a7c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper-ec40 {
    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);
}

.container_top_4bb2 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature_huge_c933 {
    flex: 1;
}

.dropdown-d514 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.card-ca01 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.border_cd99 {
    margin-top: 2rem;
    text-align: center;
}

.accent_60c6 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.accent_60c6 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.green-a901 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .green-a901 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_dc5a {
    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);
}

.breadcrumb_dc5a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.breadcrumb_dc5a .container-a1be {
    font-size: 2rem;
    flex-shrink: 0;
}

.breadcrumb_dc5a .tabs-7b00 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.breadcrumb_dc5a .right_cdc2 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.breadcrumb_dc5a .footer_glass_b7bb {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.clean_9b36 {
    padding: var(--section-padding);
}

.menu_hot_e083 .tooltip_clean_cf28 {
    flex: 1;
}

/* Promo Calendar Section */
.surface-motion-dead {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.smooth_51be {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .smooth_51be {
        grid-template-columns: repeat(3, 1fr);
    }
}

.medium_635a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.tiny-89a1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.steel-f1b4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hidden_static_5b2b {
    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);
}

.disabled-large-95f2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-6e1f {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.summary_slow_95d6 {
    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);
}

.summary_slow_95d6 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.summary_slow_95d6 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.gold-edfe {
    padding: var(--section-padding);
}

.new_645b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .new_645b {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-8ff0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-2e2d {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.brown_4b84 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brown_4b84 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.aside_461b {
    margin-top: 3rem;
}

.aside_461b .summary_iron_f023 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.aside_461b .hidden_c06d {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.aside_461b .panel_hard_ce00 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.aside_461b .panel_hard_ce00 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.aside_461b .panel_hard_ce00 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.aside_461b .panel_hard_ce00 li strong {
    color: var(--warning-color);
}

.aside-cc12 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.aside-cc12 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.secondary_yellow_e8b9 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.active_3dfa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .active_3dfa {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hard-3a8c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hard-3a8c .motion-ac05 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.detail-ea76 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heading_b79c {
    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);
}

.heading_b79c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.hard_f682 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main-short-73a0 {
    flex: 1;
}

.hovered_16e2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.old_52d6 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.popup_bright_d6ff {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.overlay_brown_8d77 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.next-323d {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .next-323d {
        grid-template-columns: repeat(4, 1fr);
    }
}

.filter_85bb {
    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);
}

.filter_85bb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.module_94ea {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.paper_b6c6 {
    color: var(--text-gray);
    font-size: 1rem;
}

.paragraph_solid_3d4b {
    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);
}

.plasma-6a70 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.plasma-6a70 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.row-steel-e64f { 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; }
.widget_yellow_e8a2, .yellow-8cb0 { max-width:100%; height:auto; }

.overlay_yellow_e175, .static_f59f, .breadcrumb_df66 { white-space:normal; }

.summary_898c,
.carousel_purple_69c4,
.advanced-0ac1,
.green-a901,
.picture_red_c4ee,
.primary_2112 {
  flex-wrap:wrap;
}

[class*="grid"],
.next-323d,
.under_a006,
.info-96d9 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.info_e08e img,
.carousel_purple_69c4 img,
.dynamic-0fc8 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.next-7767, .backdrop_3cff,
.down-9d42, .sort-6d13 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.paper-1030 { width:100%; overflow-x:auto; }
.paper-1030 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.message_yellow_08b5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .message_yellow_08b5 {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.up_c370 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.in-4efe,
.picture_silver_091e,
.active_huge_d3c9,
.under_6660,
.link-hovered-9532,
.next-323d,
.under_a006,
.info-96d9,
.header-up-5dc7,
.alert-next-31fa,
.message_yellow_08b5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .in-4efe,
  .picture_silver_091e,
  .active_huge_d3c9,
  .under_6660,
  .link-hovered-9532,
  .next-323d,
  .under_a006,
  .info-96d9,
  .header-up-5dc7,
  .alert-next-31fa,
  .message_yellow_08b5 {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.gold_1591,
.banner_ffa2,
.filter_85bb,
.modal-fluid-3681,
.border_6e09,
.preview_1483,
.wide_114a,
.up_c370 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.under_19e0,
.backdrop-brown-dadb,
.hot-cecb {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.under_19e0 > *,
.backdrop-brown-dadb > *,
.hot-cecb > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 923d */
.ghost-box-z2 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.0;
}
