/* {$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;
}

.gas_8874 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.silver-8693 {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .silver-8693 {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .silver-8693 {
        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 */
.active-warm-acb1 {
    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);
}

.primary-easy-9768 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .primary-easy-9768 {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .row-7129 {
        grid-column: 1;
    }
    
    .glass-d09d {
        grid-column: 2;
    }
    
    .static_d8a0 {
        grid-column: 3;
    }
}

.row-7129 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.row-7129:hover img {
    transform: scale(1.05);
}

/* Navigation */
.sidebar-upper-4bf7 {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar-upper-4bf7 {
        display: block;
    }
}

/* Grouped Navigation */
.fixed-3b6a {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.block-8e12 {
    position: relative;
}

.status_d614 {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.block-8e12 .accordion_2c9a {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.accordion_2c9a {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.popup_brown_44d1 {
    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;
}

.popup_brown_44d1:hover,
.popup_brown_44d1.fn-active-5891 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.thumbnail-6c8f {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .thumbnail-6c8f {
        display: flex;
    }
}

/* Mobile Register Button */
.glass-d09d {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .glass-d09d {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.video-8d51 {
    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;
}

.video-8d51::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 */
.static_d8a0 {
    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) {
    .static_d8a0 {
        display: none;
    }
}

.static_d8a0 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.static_d8a0.fn-active-5891 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.static_d8a0.fn-active-5891 span:nth-child(2) {
    opacity: 0;
}

.static_d8a0.fn-active-5891 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.shadow-silver-5191 {
    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;
}

.shadow-silver-5191.fn-active-5891 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.input_8ca1 {
    overflow: hidden;
}

.pagination_f087 {
    list-style: none;
    padding: 0.75rem 0;
}

.solid_2f7a {
    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;
}

.solid_2f7a:hover,
.solid_2f7a.fn-active-5891 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.solid_2f7a.selected_7909 {
    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;
}

.solid_2f7a.selected_7909::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 */
.out_3e15 {
    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;
}

.photo-6aee {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.photo-6aee:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.top_79cb {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.top_79cb:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.media-soft-01e9 {
    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;
}

.media-soft-01e9:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.list-easy-ef0e {
    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;
}

.pressed_496b {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.pressed_496b:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.container_hot_6181 {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.container_hot_6181:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.widget_middle_3398 {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.widget_middle_3398: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);
}

.video_e0fb {
    font-size: 1em;
    font-weight: 700;
}

.main-4690 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.row-333a {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.row-333a::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;
}

.text-c89b {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .text-c89b {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.gold-1793 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.photo_light_dbd9 {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.carousel_easy_bb1b {
    margin-bottom: 2rem;
}

.up_28b8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .up_28b8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modal_ab13 {
    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);
}

.nav_orange_5ae2 {
    font-size: 1.5rem;
}

.title_soft_f10d {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.focus-lower-8cab {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cold_a451 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.cold_a451:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.under_5d99 {
    text-align: center;
    margin-bottom: 3rem;
}

.thick_0712 {
    margin-bottom: 1rem;
}

.disabled-8953 {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.progress_black_d2d7 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .progress_black_d2d7 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .progress_black_d2d7.photo_3bed {
        direction: rtl;
    }
    
    .progress_black_d2d7.photo_3bed > * {
        direction: ltr;
    }
}

.up-98e1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.up-98e1:first-child {
    margin-top: 0;
}

.heading_black_a32e {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.filter-a89c {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.filter-a89c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.background_middle_e8d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .background_middle_e8d0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav_clean_8bdd {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.popup_brown_008d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.background-351d {
    list-style: none;
}

.background-351d li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.background-351d li:last-child {
    border-bottom: none;
}

/* Games Features */
.mask_west_21c4 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.hovered_346e {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.active_2fd3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hover_stale_da86 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.container-3ae8 {
    margin: 2rem 0;
}

.outline-up-c6b8 {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.out_eddb {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.section_short_0035 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.center_a094 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.media-291d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .media-291d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-3276 {
    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);
}

.description-3276:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.focused-03ea {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fluid_2f28 {
    font-size: 1.5rem;
}

.plasma_9a93 {
    color: var(--accent-color);
    margin: 0;
}

.modal-smooth-91c6 {
    list-style: none;
}

.modal-smooth-91c6 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.modal-smooth-91c6 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.label_038a {
    margin: 2rem 0;
}

.section-basic-4ce0 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.menu-f20a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .menu-f20a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_small_f3be {
    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);
}

.detail_8e5e {
    font-size: 1.25rem;
}

.narrow-a313 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.block-ed08,
.row-049b {
    text-align: center;
    margin: 2rem 0;
}

.in-1aa3,
.over_0440 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.content-south-d0b6 {
    margin: 2rem 0;
    text-align: center;
}

.feature_warm_e7ac {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature_warm_e7ac::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;
}

.grid-outer-e1c4 {
    position: relative;
    z-index: 1;
}

.hover-west-0dfc {
    margin-bottom: 1rem;
}

.paragraph-0ebc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-left-fefb {
    margin-bottom: 3rem;
}

.slider_6b77 {
    margin-top: 3rem;
}

.info-fcb3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .info-fcb3 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-fcb3 .modal_ab13 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.simple-8b22 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview_hot_f44e {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.under-844d {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.hover-d8fd {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hover-d8fd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hover-d8fd {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.dynamic_141f {
    margin-bottom: 1rem;
}

.pattern-bronze-8152 img {
    margin-bottom: 1rem;
}

.aside-west-4b02 {
    color: var(--text-gray);
    line-height: 1.6;
}

.easy-dd76 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.item-dynamic-1766 {
    list-style: none;
}

.item-dynamic-1766 li {
    margin-bottom: 0.5rem;
}

.item-dynamic-1766 a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.item-dynamic-1766 a:hover {
    color: var(--accent-color);
}

.photo-36ec {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.secondary_north_bf16 {
    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);
}

.secondary_north_bf16:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.action_e9bf {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.action_e9bf p {
    margin-bottom: 0.25rem;
}

.upper_5293 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .upper_5293 {
        flex-direction: row;
    }
}

.tabs_7546 {
    text-align: center;
}

@media (min-width: 768px) {
    .tabs_7546 {
        text-align: left;
    }
}

.tabs_7546 p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.item_next_41b9 {
    font-size: 0.75rem !important;
}

.secondary-0466 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-edb3 {
    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);
    }
}

.primary-3f58 {
    animation: fadeInUp 0.6s ease-out;
}

.silver-0b60 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.preview-5fd4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .preview-5fd4 {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.image-35e7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image-35e7 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card-hovered-4136 {
    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);
}

.card-hovered-4136 .active_2fd3 {
    font-size: 1.25rem;
}

.card-hovered-4136 .hovered-17df {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.notification-complex-8b4d {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .notification-complex-8b4d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.border_3437 {
    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);
}

.border_3437:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.filter-lower-7efd {
    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);
}

.block_stone_6a00 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chip_green_cc03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.form-8b39 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.image_selected_dc3e {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.image_selected_dc3e .hover_stale_da86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.image_selected_dc3e .purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.section-bottom-2468 {
    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);
}

.carousel_gas_4cf7 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.carousel_gas_4cf7 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.carousel_gas_4cf7 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.pagination_clean_479f {
    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);
}

.medium_24ec {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav_8408 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav_8408 label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav_8408 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);
}

.nav_8408 input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.nav_8408 input::placeholder {
    color: var(--text-muted);
}

.rough_350d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.wrapper_left_e101 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.wrapper_left_e101 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.hidden-pressed-a2b9 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.hidden-pressed-a2b9:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.menu-f20a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .menu-f20a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_small_f3be {
    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);
}

.mask_small_f3be .detail_8e5e {
    font-size: 1.25rem;
}

.mask_small_f3be .narrow-a313 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.content-blue-1ea1 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_fast_6014 {
    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);
}

.feature_fast_6014 .active_2fd3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature_fast_6014 .hover_stale_da86 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature_fast_6014 .purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.text-9243 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary_yellow_55a4 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.summary_yellow_55a4 .slider-58c0 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.summary_yellow_55a4 .video_stone_27a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.icon_4aa5 {
    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);
}

.title_stone_58df {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .title_stone_58df {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outline_inner_55eb {
    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);
}

.outline_inner_55eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.button-gas-972c {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.notice-active-1f3c {
    flex: 1;
}

.link_tiny_156b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hero-yellow-0a07 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight_smooth_0048 {
    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);
}

.highlight_smooth_0048:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.steel_58a2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steel_58a2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pagination-easy-49e8 {
    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);
}

.pagination-easy-49e8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.section-ff07 {
    font-size: 2rem;
    flex-shrink: 0;
}

.disabled_motion_2354 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hot_9819 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.tall_4744 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.text_gas_eae9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.title_5fcc {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mini-6176 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.mini-6176 .notice_huge_9540 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mini-6176 .pagination-4e1e {
    color: var(--text-gray);
    line-height: 1.6;
}

.mini_627b {
    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);
}

.chip-slow-4635 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-red-c203 {
    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);
}

.list-red-c203 .active_2fd3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.list-red-c203 .hover_stale_da86 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.list-red-c203 .purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.link-8994 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .link-8994 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.current-d9e5 {
    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);
}

.current-d9e5:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.info-c245 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .info-c245 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tooltip_be7b {
    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_be7b:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.inner_4343 {
    font-size: 2rem;
    flex-shrink: 0;
}

.cold_e6a1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.out_eddb {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.background-dca2 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.inner-1fd9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-ee65 {
    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);
}

.highlight-ee65:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.avatar-707e {
    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);
}

.east-0d95 {
    flex: 1;
}

.accent-over-be57 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.glass-52b5 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.dynamic_d467 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tabs-e1f3 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.search_up_6152 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search_up_6152 .slider-58c0 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.search_up_6152 .video_stone_27a6 {
    color: var(--text-gray);
    line-height: 1.6;
}

.row-049b {
    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);
}

.section_6dca {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .section_6dca {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.video-copper-6519 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .video-copper-6519 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.simple-51fe {
    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);
}

.simple-51fe:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.popup_glass_43e4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.filter_dynamic_901d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message_green_9b74 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.aside_44c4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.texture-cool-a63c {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hot_45bd {
    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);
}

.full-64bb {
    font-size: 2rem;
    flex-shrink: 0;
}

.iron_d4e6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy_c249 {
    color: var(--text-gray);
    line-height: 1.6;
}

.chip-slow-4635 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.list-red-c203 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.list-red-c203 .hover_stale_da86 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list-red-c203 .purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium_cbf8 {
    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);
}

.alert_copper_ef1f {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .alert_copper_ef1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .alert_copper_ef1f {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gradient_5a2c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.gradient_5a2c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.complex-90ff {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.liquid-c000 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.grid_glass_9ad8 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.wood_7fb9 {
    padding: 1.5rem;
}

.secondary_6ad1 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dropdown-3b2f {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-3b2f 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;
}

.dropdown-3b2f li:last-child {
    border-bottom: none;
}

.dropdown-3b2f li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.stale_8021 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .stale_8021 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.south_b16f {
    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);
}

.south_b16f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.frame-6d3c {
    font-size: 2rem;
    flex-shrink: 0;
}

.hard_2855 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.table_rough_5b5b {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop_bright_76b8 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.description_2298 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.overlay_hovered_551f {
    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);
}

.component-up-fe62 {
    font-size: 2rem;
    flex-shrink: 0;
}

.narrow-fe17 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.backdrop_5bf3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-up-ce3a {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.advanced_3983 {
    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);
}

.tooltip-7d3a {
    text-align: center;
}

.video-white-fe0b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-8535 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery_green_107d {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-motion-af90 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-motion-af90 .hover_stale_da86 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.hero-motion-af90 .purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright_a708 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .bright_a708 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bright_a708 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.search-9781 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.search-9781:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail-thick-4123 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hovered-e07c {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.hover_stale_da86 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.block-advanced-62c9 {
    padding: 1.5rem;
}

.purple_b8dd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hidden-copper-09a7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden-copper-09a7 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;
}

.hidden-copper-09a7 li:last-child {
    border-bottom: none;
}

.hidden-copper-09a7 li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.shadow-1ff8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.sidebar_pink_f728 {
    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_pink_f728:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.element_0ee9 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.row_9af6 {
    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);
}

.filter-lower-7efd {
    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;
}

.block_stone_6a00 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.chip_green_cc03 {
    color: var(--text-gray);
    line-height: 1.6;
}

.focus_gold_8cdb {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.slow-458b {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.picture_01c5 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.sidebar-slow-493b {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hovered_c25a {
    display: flex;
    gap: 1rem;
}

.hovered_c25a .nav-selected-cc2d {
    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;
}

.gallery-motion-58c5 {
    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);
}

.container_a6ef {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.filter_fixed_8be8 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter_fixed_8be8 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;
}

.filter_fixed_8be8 li:last-child {
    border-bottom: none;
}

.filter_fixed_8be8 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.gradient_inner_0239 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_inner_0239 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gradient_inner_0239 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.focus_bronze_5238 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.focus_bronze_5238:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.row-61f0 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.search_24ad {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notice_huge_9540 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.info_cf13 {
    font-size: 1rem;
}

.picture_78ce {
    padding: 1.5rem;
}

.pagination-4e1e {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.image_9b91 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.image_9b91 .tooltip-7d3a {
    text-align: center;
}

.image_9b91 .frame-8535 {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.image_9b91 .down-fd5f {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.background-pink-659f {
    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);
}

.background-pink-659f:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.avatar_4b0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_4b0e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_74f4 {
    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);
}

.aside_74f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.notice-rough-2759 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.small_4f29 {
    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);
}

.column-0318 {
    font-size: 2rem;
    flex-shrink: 0;
}

.main_narrow_483a {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.secondary_small_ebec {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter-dim-e5d5 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.menu-next-c401 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.light-60f9 {
    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);
}

.column_slow_5eee {
    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;
}

.column_slow_5eee.chip_457b {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.column_slow_5eee.badge-b68e {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.column_slow_5eee.grid-5210 {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.column_slow_5eee.preview-03fb {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.column_slow_5eee.sidebar_9b00 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.carousel_9db9 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.button_8bc3 {
    color: var(--text-gray);
    line-height: 1.6;
}

.soft-266e {
    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);
}

.card-liquid-6ea7 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.text-9243 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-9243 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;
}

.text-9243 li:last-child {
    border-bottom: none;
}

.text-9243 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.heading_current_9812 {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .heading_current_9812 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .heading_current_9812 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget_narrow_9eb2 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.widget_narrow_9eb2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.widget_narrow_9eb2.black-bd11 {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .widget_narrow_9eb2.black-bd11 {
        grid-column: span 3;
    }
}

.black_daca {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.widget_narrow_9eb2.black-bd11 .black_daca {
    background: rgba(6, 182, 212, 0.1);
}

.up-9da8 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.box-up-cb46 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.widget_narrow_9eb2.black-bd11 .box-up-cb46 {
    color: var(--info-color);
}

.plasma-f99b {
    padding: 1.5rem;
    text-align: center;
}

.cool_2f6e {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.widget_narrow_9eb2.black-bd11 .cool_2f6e {
    color: var(--info-color);
}

.nav_over_bdad {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.widget-prev-5c18 {
    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 */
.container_north_40f1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .container_north_40f1 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-7221 {
    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);
}

.footer-7221:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.texture-fc34 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature_fast_6014 {
    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);
}

.detail_8e5e {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer_29c0 {
    flex: 1;
}

.section-basic-4ce0 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.thick_fa11 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-c86c {
    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);
}

.header_cba1 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar_soft_fe13 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo-edb3 {
    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);
}

.texture_huge_a29c {
  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);
}

.texture_huge_a29c .tooltip-7d3a {
    text-align: center;
}

.texture_huge_a29c .video-white-fe0b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.texture_huge_a29c .frame-8535 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.fluid_6c2b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.frame-eee1 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.first-9d75 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easy_c592 {
    color: var(--text-gray);
    line-height: 1.6;
}

.wrapper-lite-5397 {
    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);
}

.notice_a1dd {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.row-901b {
    color: var(--text-gray);
    line-height: 1.6;
}

.glass-6cde {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .glass-6cde {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .glass-6cde {
        grid-template-columns: repeat(3, 1fr);
    }
}

.background_solid_fc0c {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.background_solid_fc0c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.green-db28 {
    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);
}

.chip-brown-4332 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.simple_4aca {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.component-97e7 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component-97e7.alert-c1f2 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.component-97e7.breadcrumb-mini-4616 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.component-97e7.highlight-cb06 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.mini-59b6 {
    padding: 1.5rem;
    text-align: center;
}

.nav_fast_6f63 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.filter_wide_1fae {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter_wide_1fae .row_next_04a9 {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.silver-8737 {
    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);
}

.silver-8737:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.selected_52ed {
  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);
}

.item-5ddb {
    text-align: center;
}

.item-5ddb .video-white-fe0b {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.item-5ddb .frame-8535 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.slider_paper_a028 { text-align: center; }
.caption_large_e80c { text-align: left; }
.in_2f72 { text-align: right; }

.input_45fb { margin-bottom: 0; }
.hover-tall-4f53 { margin-bottom: 0.5rem; }
.hidden-7ef4 { margin-bottom: 1rem; }
.filter_right_4d25 { margin-bottom: 1.5rem; }
.image-86ae { margin-bottom: 2rem; }

.surface-1be3 { margin-top: 0; }
.notice_bronze_ca06 { margin-top: 0.5rem; }
.card-thick-e674 { margin-top: 1rem; }
.content_4d91 { margin-top: 1.5rem; }
.gas-c434 { margin-top: 2rem; }

.fn-hidden-5891 { display: none; }
.fn-visible-5891 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .row-333a {
        padding: 6rem 0 3rem;
    }
    
    .text-c89b {
        text-align: center;
    }
    
    .progress_black_d2d7 {
        text-align: center;
    }
    
    .up_28b8 {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .active-warm-acb1,
    .shadow-silver-5191,
    .feature_warm_e7ac,
    .under-844d {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .row-333a {
        background: none;
    }
}

/* Providers Section */
.gradient_hot_b92a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.block_dynamic_38da {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .block_dynamic_38da {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .block_dynamic_38da {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cool-76fa {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.cool-76fa:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.search_rough_d38d {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cold-7ed7 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fluid-bf37 {
    list-style: none;
    padding: 0;
}

.fluid-bf37 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.fluid-bf37 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.header_dark_e1d8 {
    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);
}

.header_dark_e1d8 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.popup_focused_b0da {
    padding: var(--section-padding);
}

.backdrop-782e {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .backdrop-782e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bright-f860 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.bright-f860:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.section_white_c824 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.iron_54cf {
    display: flex;
    flex-direction: column;
}

.article_simple_2b40 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.table_5b41 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.progress-center-fcae {
    color: var(--accent-color);
}

.card_outer_eb36 {
    font-size: 1.25rem;
}

.small-35c5 {
    margin-bottom: 1rem;
}

.small-35c5 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.banner_3234 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.surface_4102 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.tooltip-7d3a {
    text-align: center;
}

.video-white-fe0b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.frame-8535 {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.red-fdd3 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bottom-b591 {
    margin: 2rem 0;
}

.action_549e {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.action_549e .active_2fd3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.header-silver-cc40 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal_6c50 {
    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;
}

.modal_6c50:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.nav_9416 {
    font-size: 2rem;
}

.progress-old-e410 {
    display: flex;
    flex-direction: column;
}

.outline-stale-6551 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.label_66fc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.solid_1c66 {
    padding: var(--section-padding);
}

.tall-290b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .tall-290b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tall-290b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gold_8981 {
    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_8981:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.gold_8981 .video-white-fe0b {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.gold_8981 .frame-8535 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.gold_8981 .clean-8b2b {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.summary-b091 {
    margin-top: 4rem;
}

.description_9f80 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.tooltip_77fd {
    overflow-x: auto;
}

.logo-4b73 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.logo-4b73 thead {
    background: var(--accent-color);
}

.logo-4b73 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.logo-4b73 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.logo-4b73 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.logo-4b73 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.sidebar-d52f {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.progress_fluid_6a4d {
    max-width: 900px;
    margin: 0 auto;
}

.photo_0f10 {
    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);
}

.photo_0f10:hover {
    border-color: var(--accent-color);
}

.wrapper_hovered_9540 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.wrapper_hovered_9540 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.image-1288 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.photo_0f10.fn-active-5891 .image-1288 {
    transform: rotate(45deg);
}

.blue-297b {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.photo_0f10.fn-active-5891 .blue-297b {
    max-height: 1000px;
}

.blue-297b p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.heading_stone_6bfb {
    padding: var(--section-padding);
}

.carousel_gas_4cf7 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.hidden-4321 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.small-358d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .small-358d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dropdown-dbc4 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pro_162e {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.clean-ccd3 {
    font-size: 2rem;
}

.message-easy-ea1a {
    color: var(--text-white);
    margin: 0;
}

.red-7bc9 {
    list-style: none;
    padding: 0;
}

.red-7bc9 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.red-7bc9 li:last-child {
    border-bottom: none;
}

.module-current-47a7 {
    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);
}

.module-current-47a7 p {
    color: var(--success-color);
    margin: 0;
}

.over-56b8 {
    margin-top: 3rem;
}

.container_a6ef {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.simple_1ebd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .simple_1ebd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input-663b {
    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);
}

.primary_047e {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.input-663b p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.background_cool_d839 {
    padding: var(--section-padding);
}

.panel_steel_794a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .panel_steel_794a {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shade_plasma_380c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shade_plasma_380c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.primary_3cde {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tertiary_3e54 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pagination-fresh-dc93 {
    flex: 1;
}

.main_c42b {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.preview_brown_183c {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.motion_ea26 {
    color: var(--text-gray);
    line-height: 1.6;
}

.hot_a9da {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hot_a9da:last-child {
    border-bottom: none;
}

/* Comparison Section */
.disabled_6aff {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.texture-dirty-781c {
    padding: var(--section-padding);
}

.fluid-3252 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.light-b10f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-b10f {
        grid-template-columns: repeat(3, 1fr);
    }
}

.search_first_dae7 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.info-south-c68d, .overlay-fluid-bfd7, .banner-e988 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.banner-e988 {
    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 */
.dim-249a {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.module_60da {
    margin: 2rem 0;
}

.backdrop-2541 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.preview-slow-664a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.banner_easy_b961 {
    list-style: none;
    padding: 0;
}

.banner_easy_b961 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;
}

.banner_easy_b961 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.banner_easy_b961 li:last-child {
    border-bottom: none;
}

.thumbnail_gas_42c5 {
    text-align: center;
    margin-top: 2rem;
}

.shadow-89bc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.dropdown-red-e69a {
    padding: var(--section-padding);
}

.banner_gold_314f {
    margin: 2rem 0;
}

.summary-pressed-8c2d {
    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) {
    .summary-pressed-8c2d {
        flex-direction: column;
        align-items: flex-start;
    }
}

.summary-pressed-8c2d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.sidebar_e16f {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.alert-e3ac {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.blue-f4be {
    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;
}

.new_a522 {
    flex: 1;
}

.accordion-70ce {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.hard_a653 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.slider-ea46 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.tag-df58 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .tag-df58 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.info_basic_e487 {
    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);
}

.info_basic_e487:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.info_basic_e487 .video-white-fe0b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info_basic_e487 .frame-8535 {
    color: var(--text-gray);
    font-size: 1rem;
}

.center_4124 {
    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);
}

.brown_68d7 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.brown_68d7 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.silver_3d7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .silver_3d7c {
        grid-template-columns: 1fr 1fr;
    }
}

.soft_6ab9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main-fe8b {
    margin-bottom: 1.5rem;
}

.main-fe8b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.main-fe8b input,
.main-fe8b 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;
}

.main-fe8b input:focus,
.main-fe8b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.gas_9ac6 {
    width: 100%;
    margin-top: 1rem;
}

.header-fresh-dafd {
    display: flex;
    align-items: center;
}

.yellow-3690 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.filter-soft-7202 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.dropdown_gold_0848 {
    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;
}

.grid-static-6253 {
    color: var(--text-gray);
}

.first-ec28 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.thumbnail-7441 {
    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);
}

.thumbnail-7441 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.detail_large_ace3 {
    margin-top: 3rem;
}

.panel_in_4caa {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.fresh_a166 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tertiary-3d27 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.article_active_de1a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article_active_de1a:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.stale-bbce {
    padding: var(--section-padding);
}

.paragraph_823e {
    margin: 2rem 0;
}

.gallery-dim-80f4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.clean_3ebc {
    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;
}

.clean_3ebc:hover, .clean_3ebc.fn-active-5891 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.banner_large_39fd {
    display: none;
}

.banner_large_39fd.fn-active-5891 {
    display: block;
}

.glass-650a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.active-30fe {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.panel_action_038c h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.panel_action_038c ul {
    list-style: none;
    padding: 0;
}

.panel_action_038c ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.panel_action_038c ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.complex_c09b {
    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 */
.pro-e0aa {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.description_9ab7 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stone-1122 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.table-silver-1e7e {
    color: var(--accent-color);
    margin: 0;
}

.nav-f97a {
    display: flex;
    gap: 1.5rem;
}

.overlay_e7ef {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.list-gold-db4d {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.section_501b {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.section_501b.purple-f046 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.section_501b.photo-slow-200b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.section_501b.dark_dafd {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.plasma-428b {
    margin-top: 2rem;
}

.mask_outer_9973 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.row_0a57 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .row_0a57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tall_f063 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.feature_835e {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.first_ca5d {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.popup-wood-1c8d {
    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 */
.hard-880d {
    padding: var(--section-padding);
}

.background_up_1dc6 {
    margin: 2rem 0;
}

.thick_e1ba {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.top_fc93 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.out-fae3 {
    list-style: none;
    padding: 0;
}

.out-fae3 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;
}

.out-fae3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.out-fae3 li:last-child {
    border-bottom: none;
}

.progress_simple_229b {
    margin: 2rem 0;
}

.picture-bottom-a104 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.shade-20e7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .shade-20e7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.large-5f47 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.east_5c50 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.block_warm_e456 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.tabs_plasma_52da {
    margin-top: 2rem;
}

.link_tiny_156b {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.list-dark-938f {
    list-style: none;
    padding: 0;
}

.footer_wood_ada8 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.footer_wood_ada8 a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer_wood_ada8 a:hover {
    text-decoration: underline;
}

.input_1837 {
    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 */
.down_9ee6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.video_mini_76e8 {
    margin: 2rem 0;
}

.list_fluid_e86a {
    margin-bottom: 3rem;
}

.list_fluid_e86a .preview-slow-664a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.table-d776 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.description_ef2d {
    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);
}

.description_ef2d:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.button_bright_ac56 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .button_bright_ac56 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-mini-1867 {
    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 */
.breadcrumb_narrow_55be {
    padding: var(--section-padding);
}

.avatar_1fda {
    margin: 2rem 0;
}

.mask-focused-46f9 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.border-606d {
    overflow-x: auto;
    margin: 2rem 0;
}

.pagination_fast_8737 {
    background: rgba(6, 182, 212, 0.1) !important;
}

.surface_lower_76e8 {
    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;
}

.dynamic_5b4a {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.wide-6b00 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .wide-6b00 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.paper-8f22 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.paper-8f22 .active_2fd3 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.paper-8f22 .hover_stale_da86 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.header_cbff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.focus_f08e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.detail-cool-fc9d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .detail-cool-fc9d {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cool-a847 {
    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;
}

.cool-a847:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.pattern-glass-f83c {
    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);
}

.wrapper_3442 {
    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;
}

.input_e537 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.frame_purple_eaa8 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.easy_2ad5 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.column-next-5588 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.box-7420 {
    color: var(--text-white);
    font-weight: 600;
}

.list_gold_9809 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.overlay_8a6b {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay_8a6b .nav-selected-cc2d {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.video-fc36 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .video-fc36 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb-fluid-c975 {
    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);
}

.breadcrumb-fluid-c975:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.breadcrumb-fluid-c975 .video-white-fe0b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.breadcrumb-fluid-c975 .frame-8535 {
    color: var(--text-gray);
    font-size: 1rem;
}

.icon-cc08 {
    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);
}

.fresh_fdcf {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.fresh_fdcf strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.texture-cool-a63c {
    margin: 2rem 0;
}

.hot_45bd {
    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);
}

.hot_45bd:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.full-64bb {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aside_d511 {
    flex: 1;
}

.iron_d4e6 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.easy_c249 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.chip-slow-4635 {
    margin: 2rem 0;
}

.list-red-c203 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.list-red-c203 .hover_stale_da86 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.list-red-c203 .purple_b8dd {
    color: var(--text-gray);
    margin: 0;
}

.medium_cbf8 {
    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);
}

.medium_cbf8 .in-1aa3 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.header_cbff {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.avatar-707e {
    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;
}

.east-0d95 {
    flex: 1;
}

.glass-52b5 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.dynamic_d467 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.filter-lower-7efd {
    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;
}

.aside-bottom-ebf2 {
    flex: 1;
}

.block_stone_6a00 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.chip_green_cc03 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.picture_01c5 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.sidebar-slow-493b {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hovered_c25a {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hovered_c25a .nav-selected-cc2d {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.gallery-motion-58c5 {
    margin-top: 2rem;
}

.gallery-motion-58c5 .container_a6ef {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.aside-4a83 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.advanced_3983 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .advanced_3983 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advanced_3983 .tooltip-7d3a {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.gallery_green_107d {
    margin: 2rem 0;
}

.hero-motion-af90 {
    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 */
.current_61d0 {
    padding: var(--section-padding);
}

.block-advanced-62c9 {
    margin-top: 1rem;
}

.hidden-copper-09a7 {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hidden-copper-09a7 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.hidden-copper-09a7 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.pink_61bf {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status_purple_522f {
    margin: 2rem 0;
}

.cool_21b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.title-paper-3f5c {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.row-down-d4e0 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.current-8683 {
    margin: 2rem 0;
}

.pattern_7edc {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pattern_7edc .preview-slow-664a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.column-093c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .column-093c {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aside_5c5d {
    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);
}

.description_stone_5646 {
    color: var(--text-white);
    font-weight: 600;
}

.pattern-in-15a3 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.outer-92dc {
    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);
}

.outer-92dc p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.in-9750 {
    padding: var(--section-padding);
}

.inner_5d18 {
    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;
}

.inner_5d18:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.panel_aea4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel_aea4 .primary_047e {
    font-size: 2rem;
    flex-shrink: 0;
}

.panel_aea4 .plasma_91d7 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.shade-purple-cb95 {
    flex: 1;
}

.notice-static-bfeb {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.focused-fe53 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focused-fe53 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.focused-fe53 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pro-560b {
    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);
}

.pro-560b p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.pro-560b strong {
    color: var(--warning-color);
}

/* Slots Section */
.widget_thick_3955 {
    padding: var(--section-padding);
}

.text_gas_eae9 {
    margin: 2rem 0;
}

/* Table Games Section */
.alert-right-1abd {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.title_5fcc {
    margin: 2rem 0;
}

.mini-6176 {
    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);
}

.mini-6176:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mini-6176 .notice_huge_9540 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mini-6176 .pagination-4e1e {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.mini_627b {
    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);
}

.mini_627b .in-1aa3 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.large-cd57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.easy_34ca {
    margin: 2rem 0;
}

.text-gold-6aab {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.green-8d42 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-0124 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hover-fast-7549 {
    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);
}

.hover-fast-7549:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hover-fast-7549.fn-active-5891 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.bright-fa93 {
    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);
}

.form-light-2994 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.form-light-2994 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.label_c640 {
    padding: var(--section-padding);
}

.hero-outer-911f {
    margin: 2rem 0;
}

.notice-inner-33dc {
    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);
}

.notice-inner-33dc:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .notice-inner-33dc {
        flex-direction: column;
        align-items: flex-start;
    }
}

.element-7e32 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.tooltip-97f4 {
    flex: 1;
}

.chip-dynamic-3e89 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.next_5018 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.pattern-17e4 {
    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;
}

.icon_orange_dfd0 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.title_easy_30cc {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.table_c8c6 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.photo_6825 {
    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;
}

.photo_6825:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.west-09fa {
    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);
}

.blue-cd4a {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.blue-cd4a strong {
    color: var(--accent-color);
}

/* New Games Section */
.filter-e6e0 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.logo_green_64f9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .logo_green_64f9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logo_green_64f9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mini-d116 {
    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;
}

.mini-d116:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.nav-cool-39c5 {
    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;
}

.tall_6515 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.badge-9e94 {
    font-size: 2rem;
}

.logo_under_3267 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.gallery_7371 {
    flex: 1;
}

.down_2f5c {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.caption_d8ce {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.old-921c {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.full-2e58 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.item_8d6a {
    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;
}

.narrow-9c71 {
    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;
}

.narrow-9c71:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.gradient-dbeb {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.search-under-cd72 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hard_35a7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hard_35a7 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.black-a809 {
    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);
}

.notice-huge-de8a {
    color: var(--text-white);
    font-weight: 600;
}

.row-1dde {
    color: var(--accent-color);
    font-weight: 600;
}

.tiny_fa4f {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.tiny_fa4f strong {
    color: var(--accent-color);
}

/* Security Section */
.texture_ce57 {
    padding: var(--section-padding);
}

/* Benefits Section */
.label_732d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.rough-ca75 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.disabled-d9b8 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.texture-east-f027 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.status_fixed_2195 {
    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) {
    .status_fixed_2195 {
        flex-direction: column;
        gap: 1rem;
    }
}

.status_fixed_2195:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.status_fixed_2195 .filter-lower-7efd {
    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;
}

.status_fixed_2195 .aside-bottom-ebf2 {
    flex: 1;
}

.status_fixed_2195 .block_stone_6a00 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.status_fixed_2195 .chip_green_cc03 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.overlay-dynamic-ea4a {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.overlay-dynamic-ea4a .section-basic-4ce0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.overlay-dynamic-ea4a .content-blue-1ea1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-dynamic-ea4a .content-blue-1ea1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.overlay-dynamic-ea4a .content-blue-1ea1 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.motion-b261 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.overlay-easy-2466 {
    padding: var(--section-padding);
}

.primary-in-0f1c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .primary-in-0f1c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.liquid_2cc2 {
    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);
}

.liquid_2cc2:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.liquid_2cc2 .heading_eaf2 {
    font-size: 2rem;
    flex-shrink: 0;
}

.liquid_2cc2 .caption_blue_9251 {
    flex: 1;
}

.liquid_2cc2 .slider-58c0 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.liquid_2cc2 .accent_6bd7 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.image-current-d089 {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.image-current-d089 .main-20bf {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.image-current-d089 .bottom_692a {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.image-current-d089 .bottom_692a 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);
}

.image-current-d089 .bottom_692a li:last-child {
    border-bottom: none;
}

.image-current-d089 .bottom_692a 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;
}

.image-current-d089 .bottom_692a li strong {
    color: var(--text-white);
}

.east_10f1 {
    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);
}

.east_10f1 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.east_10f1 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.primary_liquid_b8e1 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.article-in-69f8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .article-in-69f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slider-large-f24c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.slider-large-f24c:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.plasma_ce2c {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-soft-826b {
    font-size: 2rem;
}

.grid_aa97 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.texture_rough_b464 {
    flex: 1;
}

.article-acc9 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-acc9 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.article-acc9 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.down-9bae {
    margin-top: 3rem;
}

.thick_e1ba {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.top_fc93 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.out-fae3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.out-fae3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.out-fae3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.out-fae3 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.west-6a7d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.tabs_static_ae15 {
    margin: 2rem 0;
}

.soft_bef5 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.soft_bef5 .preview-slow-664a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.chip_33bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .chip_33bd {
        grid-template-columns: repeat(2, 1fr);
    }
}

.down_6468 {
    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);
}

.down_6468:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.highlight-pressed-8f2d {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tag-tall-ce55 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.basic-5677 {
    padding: var(--section-padding);
}

.gradient-bronze-e00f {
    margin: 2rem 0;
}

.message-next-d21e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .message-next-d21e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .message-next-d21e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.down-fbd9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.down-fbd9:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.image_e981 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article_7cbd {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.dropdown-a522 {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-a522.widget-cd3e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tertiary_cac1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.layout_glass_1317 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.info_green_3a39 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter_hard_3dfe {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.wide_d9be {
    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);
}

.wide_d9be p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.wide_d9be strong {
    color: var(--accent-color);
}

/* Update Log Section */
.element_small_1be6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.media_7b6b {
    margin: 2rem 0;
}

.right_3e0b {
    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) {
    .right_3e0b {
        flex-direction: column;
        gap: 1rem;
    }
}

.right_3e0b:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.right_3e0b::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);
}

.first_8cb4 {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.picture-9cf2 {
    flex: 1;
}

.picture_inner_57c6 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.aside-cc18 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aside-cc18 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.paragraph-4696 {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.box_8bad {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.picture_1f68 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .picture_1f68 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.main_out_db1c {
    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);
}

.outline-rough-6a55 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.light_15dd {
    flex: 1;
}

.tooltip_494e {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.middle-7801 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.row-red-62a7 {
    margin-top: 2rem;
    text-align: center;
}

.next-6a48 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.next-6a48 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.avatar_4b0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .avatar_4b0e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aside_74f4 {
    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);
}

.aside_74f4:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.aside_74f4 .frame-6d3c {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_74f4 .hard_2855 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.aside_74f4 .table_rough_5b5b {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.aside_74f4 .backdrop_bright_76b8 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.disabled_stale_1a91 {
    padding: var(--section-padding);
}

.small_4f29 .texture_2ffa {
    flex: 1;
}

/* Promo Calendar Section */
.badge-20e4 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.main-7e19 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .main-7e19 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.description-5769 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.module_72fd {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.primary-8e0d {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aside-5e08 {
    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);
}

.item-bottom-4ca6 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.green_f1e1 {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.row-north-6172 {
    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);
}

.row-north-6172 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.row-north-6172 strong {
    color: var(--accent-color);
}

/* Requirements Section */
.accent_7280 {
    padding: var(--section-padding);
}

.right-cf99 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .right-cf99 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gradient-6a31 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.middle_499c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.block-bottom-d779 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-bottom-d779 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.label_a6b9 {
    margin-top: 3rem;
}

.label_a6b9 .thick_e1ba {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.label_a6b9 .top_fc93 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.label_a6b9 .out-fae3 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.label_a6b9 .out-fae3 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.label_a6b9 .out-fae3 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.label_a6b9 .out-fae3 li strong {
    color: var(--warning-color);
}

.article_1d98 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.article_1d98 strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.content_old_be64 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.pagination-364c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .pagination-364c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.progress_3e7d {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress_3e7d .preview-slow-664a {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.layout_64ed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section_967c {
    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);
}

.section_967c:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.clean_4591 {
    font-size: 2rem;
    flex-shrink: 0;
}

.wrapper_3815 {
    flex: 1;
}

.fresh_4db9 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.carousel-e471 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.plasma-ef0a {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.frame_4689 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hot_d98e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .hot_d98e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module_1c90 {
    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);
}

.module_1c90:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.paragraph_1d9b {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.middle_a557 {
    color: var(--text-gray);
    font-size: 1rem;
}

.brown_68d7 {
    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);
}

.highlight-9b2f {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight-9b2f strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.silver-8693 { 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; }
.cold_a451, .filter-a89c { max-width:100%; height:auto; }

.out_3e15, .media-soft-01e9, .list-easy-ef0e { white-space:normal; }

.text-c89b,
.progress_black_d2d7,
.container_north_40f1,
.avatar_4b0e,
.chip-slow-4635,
.glass-6cde {
  flex-wrap:wrap;
}

[class*="grid"],
.hot_d98e,
.message-next-d21e,
.info-fcb3 {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.row-333a img,
.progress_black_d2d7 img,
.focus-lower-8cab img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.gold-1793, .photo_light_dbd9,
.thick_0712, .disabled-8953 {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.tooltip_77fd { width:100%; overflow-x:auto; }
.tooltip_77fd table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.block_dynamic_38da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .block_dynamic_38da {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.cool-76fa {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.tall-290b,
.detail_full_d5da,
.bottom_c191,
.fluid-8e02,
.tag-df58,
.hot_d98e,
.message-next-d21e,
.info-fcb3,
.selected_52ed,
.hero-outer-911f,
.block_dynamic_38da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .tall-290b,
  .detail_full_d5da,
  .bottom_c191,
  .fluid-8e02,
  .tag-df58,
  .hot_d98e,
  .message-next-d21e,
  .info-fcb3,
  .selected_52ed,
  .hero-outer-911f,
  .block_dynamic_38da {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.gold_8981,
.info_basic_e487,
.module_1c90,
.modal_ab13,
.down-fbd9,
.item-5ddb,
.notice-inner-33dc,
.cool-76fa {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.background-3ad8,
.liquid-43ee,
.bright_be50 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.background-3ad8 > *,
.liquid-43ee > *,
.bright_be50 > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 7788 */
.phantom-card-l9 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
