/* {$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;
}

.article-bronze-4274 {
    background: var(--hero-gradient);
    min-height: 100vh;
}

/* Container */
.heading-top-371d {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .heading-top-371d {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .heading-top-371d {
        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 */
.complex-e896 {
    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);
}

.east-af1f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/* Mobile Layout Adjustments */
@media (max-width: 1023px) {
    .east-af1f {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
        align-items: center;
    }
    
    .layout_f3d4 {
        grid-column: 1;
    }
    
    .frame-f764 {
        grid-column: 2;
    }
    
    .component-north-e128 {
        grid-column: 3;
    }
}

.layout_f3d4 img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.layout_f3d4:hover img {
    transform: scale(1.05);
}

/* Navigation */
.popup_022c {
    display: none;
}

@media (min-width: 1024px) {
    .popup_022c {
        display: block;
    }
}

/* Grouped Navigation */
.wrapper-1269 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.copper_1b24 {
    position: relative;
}

.overlay_full_e9be {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
    display: block;
    font-weight: 600;
}

.copper_1b24 .down-a043 {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.down-a043 {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main_pink_8d48 {
    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;
}

.main_pink_8d48:hover,
.main_pink_8d48.fn-active-46f0 {
    color: var(--accent-light);
    background: var(--tertiary-bg);
    box-shadow: var(--shadow-glow);
}

/* Header Actions */
.center_e96d {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .center_e96d {
        display: flex;
    }
}

/* Mobile Register Button */
.frame-f764 {
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .frame-f764 {
        display: none;
    }
}


/* 移动端注册按钮光效 */
.solid-c817 {
    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;
}

.solid-c817::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 */
.component-north-e128 {
    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) {
    .component-north-e128 {
        display: none;
    }
}

.component-north-e128 span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.component-north-e128.fn-active-46f0 span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.component-north-e128.fn-active-46f0 span:nth-child(2) {
    opacity: 0;
}

.component-north-e128.fn-active-46f0 span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.selected_bfaa {
    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;
}

.selected_bfaa.fn-active-46f0 {
    display: block;
    max-height: 500px;
}

/* Prevent body scroll when menu is open */
body.thick_4f50 {
    overflow: hidden;
}

.brown-306e {
    list-style: none;
    padding: 0.75rem 0;
}

.upper_210c {
    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;
}

.upper_210c:hover,
.upper_210c.fn-active-46f0 {
    background: var(--tertiary-bg);
    color: var(--accent-light);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.375rem;
}


/* 移动端注册按钮动画效果 */
.upper_210c.shade_brown_fb15 {
    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;
}

.upper_210c.shade_brown_fb15::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 */
.icon_easy_fa46 {
    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;
}

.highlight-d0a0 {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
}

.highlight-d0a0:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.title-d36e {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.title-d36e:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.component_c040 {
    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;
}

.component_c040:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.5);
}

.gallery-prev-cec7 {
    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;
}

.north-3586 {
    background: var(--secondary-bg);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.north-3586:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.dynamic-907d {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.dynamic-907d:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.wrapper-322e {
    background: var(--info-color);
    color: var(--accent-light);
    font-weight: 700;
    box-shadow: var(--shadow-vip);
}

.wrapper-322e: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);
}

.layout_a5af {
    font-size: 1em;
    font-weight: 700;
}

.slider-7299 {
    font-size: 0.875em;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Section */
.status_red_8d66 {
    padding: 8rem 0 4rem;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.status_red_8d66::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;
}

.detail-1fa6 {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .detail-1fa6 {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.mask-7360 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.footer_281d {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.bottom_ca25 {
    margin-bottom: 2rem;
}

.tag_9b1c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .tag_9b1c {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_first_5310 {
    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);
}

.focus_19ef {
    font-size: 1.5rem;
}

.article-brown-0d73 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

.card-02d7 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-e668 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-slow);
}

.action-e668:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.full_2f81 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature_8dbb {
    margin-bottom: 1rem;
}

.avatar_31ba {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.focus-new-9dde {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .focus-new-9dde {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .focus-new-9dde.over-81e4 {
        direction: rtl;
    }
    
    .focus-new-9dde.over-81e4 > * {
        direction: ltr;
    }
}

.overlay_silver_9d60 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.overlay_silver_9d60:first-child {
    margin-top: 0;
}

.card_69e3 {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.fixed-5547 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.fixed-5547:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Payment Methods */
.container-rough-6358 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .container-rough-6358 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slow_976e {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.rough_593d {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.west-7226 {
    list-style: none;
}

.west-7226 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.west-7226 li:last-child {
    border-bottom: none;
}

/* Games Features */
.lower_d73f {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.bronze_b928 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.slider_7495 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny-0150 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bonus Highlight */
.table-right-108c {
    margin: 2rem 0;
}

.title_full_678a {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--primary-bg);
}

.dark_3f4d {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.steel_657c {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.gradient_clean_ee70 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* VIP Tiers */
.static_0337 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .static_0337 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid_west_edda {
    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);
}

.grid_west_edda:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.content-new-ed63 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.label_static_0daa {
    font-size: 1.5rem;
}

.frame_steel_da6a {
    color: var(--accent-color);
    margin: 0;
}

.feature-47ca {
    list-style: none;
}

.feature-47ca li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.feature-47ca li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Features */
.border_red_ee8a {
    margin: 2rem 0;
}

.feature-complex-8ca4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.image_up_5337 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .image_up_5337 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-complex-4d78 {
    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);
}

.disabled-3f11 {
    font-size: 1.25rem;
}

.image_short_9316 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Statistics */
.surface-light-db56,
.button-3fa0 {
    text-align: center;
    margin: 2rem 0;
}

.gas_0b47,
.slider_8091 {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* CTA Sections */
.form_cc8d {
    margin: 2rem 0;
    text-align: center;
}

.pressed_dc76 {
    background: var(--secondary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pressed_dc76::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;
}

.inner-851d {
    position: relative;
    z-index: 1;
}

.column-active-6350 {
    margin-bottom: 1rem;
}

.column_pink_bb09 {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.secondary-outer-7d82 {
    margin-bottom: 3rem;
}

.info-dff2 {
    margin-top: 3rem;
}

.inner-e1bb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .inner-e1bb {
        grid-template-columns: repeat(4, 1fr);
    }
}

.inner-e1bb .disabled_first_5310 {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.outer-3e55 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar_small_1149 {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer */
.notice_2e12 {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 4rem;
}

.grid_cool_bae6 {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .grid_cool_bae6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid_cool_bae6 {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.box-4004 {
    margin-bottom: 1rem;
}

.main_4f57 img {
    margin-bottom: 1rem;
}

.banner_old_2437 {
    color: var(--text-gray);
    line-height: 1.6;
}

.filter_0d04 {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.gas-1c2d {
    list-style: none;
}

.gas-1c2d li {
    margin-bottom: 0.5rem;
}

.gas-1c2d a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.gas-1c2d a:hover {
    color: var(--accent-color);
}

.prev_4b44 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bottom_8e18 {
    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);
}

.bottom_8e18:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.complex_004b {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.complex_004b p {
    margin-bottom: 0.25rem;
}

.sort_ade2 {
    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) {
    .sort_ade2 {
        flex-direction: row;
    }
}

.widget_514b {
    text-align: center;
}

@media (min-width: 768px) {
    .widget_514b {
        text-align: left;
    }
}

.widget_514b p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.short-7c0d {
    font-size: 0.75rem !important;
}

.hovered_9850 {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.advanced-6202 {
    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);
    }
}

.heading_9dcb {
    animation: fadeInUp 0.6s ease-out;
}

.component_yellow_9848 {
    animation: pulse 2s infinite;
}

/* App Page Specific Styles */
.accordion_action_74ac {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .accordion_action_74ac {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.alert-old-b590 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .alert-old-b590 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.over_237e {
    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);
}

.over_237e .slider_7495 {
    font-size: 1.25rem;
}

.over_237e .element-middle-5ccb {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-copper-0360 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .footer-copper-0360 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.layout_huge_dd68 {
    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);
}

.layout_huge_dd68:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.dynamic-b59c {
    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);
}

.gradient-bright-157b {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.breadcrumb_53b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.smooth-ab45 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.border-abe7 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.border-abe7 .tiny-0150 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.border-abe7 .shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.header_d20d {
    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);
}

.overlay_f6d0 {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.overlay_f6d0 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.overlay_f6d0 img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Login Page Specific Styles */
.notification-e73e {
    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);
}

.form-west-2c55 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.medium_02aa {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.medium_02aa label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.medium_02aa 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);
}

.medium_02aa input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.medium_02aa input::placeholder {
    color: var(--text-muted);
}

.dirty_d5cc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dynamic_9623 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    cursor: pointer;
}

.dynamic_9623 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.gradient-7c80 {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.gradient-7c80:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.image_up_5337 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .image_up_5337 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.avatar-complex-4d78 {
    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);
}

.avatar-complex-4d78 .disabled-3f11 {
    font-size: 1.25rem;
}

.avatar-complex-4d78 .image_short_9316 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
}

.wood_ed75 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-soft-5305 {
    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);
}

.article-soft-5305 .slider_7495 {
    font-size: 2rem;
    flex-shrink: 0;
}

.article-soft-5305 .tiny-0150 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.article-soft-5305 .shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight_75d0 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dim_22f2 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.dim_22f2 .highlight-stone-3e00 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.dim_22f2 .modal-next-e48a {
    color: var(--text-gray);
    line-height: 1.6;
}

.dynamic-f20a {
    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);
}

.gradient_solid_7148 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .gradient_solid_7148 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fresh_c8e7 {
    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);
}

.fresh_c8e7:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.image-static-dba6 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pagination-easy-ad67 {
    flex: 1;
}

.list_da62 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.modal_easy_1624 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slow_5226 {
    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);
}

.slow_5226:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Games Page Specific Styles */
.light-6eb6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .light-6eb6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.surface_upper_c170 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.surface_upper_c170:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.message-static-533c {
    font-size: 2rem;
    flex-shrink: 0;
}

.lite-7e3f {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.surface-warm-293d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.fixed_c972 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-97b6 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-9a26 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.panel_7904 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.panel_7904 .footer_f550 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_7904 .pattern_7f08 {
    color: var(--text-gray);
    line-height: 1.6;
}

.search-d3fc {
    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);
}

.medium_4d62 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-thick-0879 {
    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);
}

.avatar-thick-0879 .slider_7495 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-thick-0879 .tiny-0150 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.avatar-thick-0879 .shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.motion-f302 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .motion-f302 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rough-af69 {
    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);
}

.rough-af69:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Bonus Page Specific Styles */
.table-new-1e57 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .table-new-1e57 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumb_small_4700 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.breadcrumb_small_4700:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.clean-99f1 {
    font-size: 2rem;
    flex-shrink: 0;
}

.component-advanced-dbc6 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dark_3f4d {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.gradient-8ffd {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

.notice_b998 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.south-d302 {
    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);
}

.south-d302:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.sort_gold_7620 {
    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);
}

.info-hovered-fbf4 {
    flex: 1;
}

.pagination_steel_23e8 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.widget_white_0fbd {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.stale-c01e {
    color: var(--text-gray);
    line-height: 1.6;
}

.fixed_56da {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.accent_cool_070c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.accent_cool_070c .highlight-stone-3e00 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.accent_cool_070c .modal-next-e48a {
    color: var(--text-gray);
    line-height: 1.6;
}

.button-3fa0 {
    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);
}

.outer_58be {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .outer_58be {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sports Page Specific Styles */
.notice_b514 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .notice_b514 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disabled_bronze_83b8 {
    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);
}

.disabled_bronze_83b8:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.huge-c775 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-middle-2869 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tooltip-full-4f30 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.huge-4fe7 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.mini_3954 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar-d10f {
    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);
}

.easy-2dc9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside_clean_a207 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper_8707 {
    color: var(--text-gray);
    line-height: 1.6;
}

.medium_4d62 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.avatar-thick-0879 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.avatar-thick-0879 .tiny-0150 {
    color: var(--success-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.avatar-thick-0879 .shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.item-pro-118d {
    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);
}

.photo_hot_1ad9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .photo_hot_1ad9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo_hot_1ad9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.notice-1825 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.notice-1825:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.accent-pro-239a {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.column_action_df02 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.search-08ab {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.wrapper_9c10 {
    padding: 1.5rem;
}

.photo_a101 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pagination_gas_49e7 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination_gas_49e7 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;
}

.pagination_gas_49e7 li:last-child {
    border-bottom: none;
}

.pagination_gas_49e7 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Game Page Specific Styles */
.simple-1a9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .simple-1a9a {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item_bright_4542 {
    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);
}

.item_bright_4542:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.gradient-d6e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-2bfc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pattern_3bd8 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.media-cab2 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.shadow-e110 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stale-bc89 {
    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);
}

.active_ae7c {
    font-size: 2rem;
    flex-shrink: 0;
}

.orange-f4c7 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.banner_53fb {
    color: var(--text-gray);
    line-height: 1.6;
}

.bright-2836 {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.brown_5c8e {
    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);
}

.active_mini_fac8 {
    text-align: center;
}

.highlight_9482 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.narrow-bd6e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.video_active_f6aa {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.aside-6637 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.aside-6637 .tiny-0150 {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.aside-6637 .shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
}

.element-dark-75a9 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .element-dark-75a9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .element-dark-75a9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wood_0636 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.wood_0636:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.glass-cb31 {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.link_simple_74d5 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tiny-0150 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.25rem;
}

.frame_lite_013a {
    padding: 1.5rem;
}

.shadow-selected-09d4 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.column-liquid-2bdd {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-liquid-2bdd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.column-liquid-2bdd li:last-child {
    border-bottom: none;
}

.column-liquid-2bdd li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.875rem;
}

/* Crash Page Specific Styles */
.breadcrumb_simple_d35b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.heading-steel-e8be {
    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);
}

.heading-steel-e8be:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.east-460e {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sidebar_tall_15e7 {
    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);
}

.dynamic-b59c {
    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;
}

.gradient-bright-157b {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.breadcrumb_53b0 {
    color: var(--text-gray);
    line-height: 1.6;
}

.component-focused-4673 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.up_cc84 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.modal_3bca {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.mini-3286 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mask-1737 {
    display: flex;
    gap: 1rem;
}

.mask-1737 .carousel_ad63 {
    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;
}

.yellow_c8af {
    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);
}

.static_1028 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.selected_f243 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected_f243 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;
}

.selected_f243 li:last-child {
    border-bottom: none;
}

.selected_f243 li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.lower-42c0 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .lower-42c0 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lower-42c0 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask-medium-1932 {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.mask-medium-1932:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.cold_388d {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.backdrop_first_fd03 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer_f550 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.button-lower-cdae {
    font-size: 1rem;
}

.header-stone-40ae {
    padding: 1.5rem;
}

.pattern_7f08 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hard_b601 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.hard_b601 .active_mini_fac8 {
    text-align: center;
}

.hard_b601 .narrow-bd6e {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.hard_b601 .silver_e7ea {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.backdrop_cold_ddc5 {
    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);
}

.backdrop_cold_ddc5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Promo Page Specific Styles */
.disabled-2aef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-2aef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-f7da {
    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);
}

.media-f7da:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.old-f805 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complex-7e47 {
    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);
}

.info_d9f3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tiny_434c {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.module_upper_c613 {
    color: var(--text-gray);
    line-height: 1.6;
}

.notification_9c2e {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.sort_4369 {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.notice_wood_5326 {
    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);
}

.backdrop_center_c360 {
    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;
}

.backdrop_center_c360.rough-f98c {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.backdrop_center_c360.component_rough_8c03 {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.backdrop_center_c360.current_7d6f {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0f172a;
}

.backdrop_center_c360.tabs_dark_ed25 {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #0f172a;
}

.backdrop_center_c360.hidden_0876 {
    background: linear-gradient(135deg, #b9f2ff, #00bfff);
    color: #0f172a;
}

.tag_16f4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next-7936 {
    color: var(--text-gray);
    line-height: 1.6;
}

.status_pressed_4525 {
    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);
}

.nav-lower-5271 {
    color: var(--info-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.highlight_75d0 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight_75d0 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;
}

.highlight_75d0 li:last-child {
    border-bottom: none;
}

.highlight_75d0 li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--info-color);
    font-size: 0.875rem;
}

.shadow_ec7e {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .shadow_ec7e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shadow_ec7e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tag_prev_f0eb {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tag_prev_f0eb:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tag_prev_f0eb.surface-fluid-2d8c {
    grid-column: 1 / -1;
    border-color: rgba(6, 182, 212, 0.3);
}

@media (min-width: 1024px) {
    .tag_prev_f0eb.surface-fluid-2d8c {
        grid-column: span 3;
    }
}

.info_6bac {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    background: rgba(6, 182, 212, 0.05);
}

.tag_prev_f0eb.surface-fluid-2d8c .info_6bac {
    background: rgba(6, 182, 212, 0.1);
}

.accent_03b4 {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tag-hard-9a73 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.125rem;
}

.tag_prev_f0eb.surface-fluid-2d8c .tag-hard-9a73 {
    color: var(--info-color);
}

.thick_3918 {
    padding: 1.5rem;
    text-align: center;
}

.preview_out_b837 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tag_prev_f0eb.surface-fluid-2d8c .preview_out_b837 {
    color: var(--info-color);
}

.gas_5061 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.input_b809 {
    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 */
.item_in_1569 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .item_in_1569 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.message-simple-ac53 {
    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);
}

.message-simple-ac53:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.advanced-db1b {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-soft-5305 {
    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);
}

.disabled-3f11 {
    font-size: 2rem;
    flex-shrink: 0;
}

.plasma_bcdf {
    flex: 1;
}

.feature-complex-8ca4 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.lite_af6a {
    color: var(--text-gray);
    line-height: 1.6;
}

.fresh-d150 {
    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);
}

.advanced_2f11 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.surface-6642 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.advanced-6202 {
    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);
}

.link-down-1f3a {
  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);
}

.link-down-1f3a .active_mini_fac8 {
    text-align: center;
}

.link-down-1f3a .highlight_9482 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--info-color);
    margin-bottom: 0.5rem;
}

.link-down-1f3a .narrow-bd6e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-current-ccfd {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.lite_af2c {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.solid_cc3a {
    color: var(--info-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.list_2885 {
    color: var(--text-gray);
    line-height: 1.6;
}

.avatar-8ba6 {
    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);
}

.left-017a {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.bottom_7001 {
    color: var(--text-gray);
    line-height: 1.6;
}

.column_hovered_7037 {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .column_hovered_7037 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .column_hovered_7037 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-dim-eaba {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.1);
    overflow: hidden;
    transition: var(--transition-normal);
}

.tooltip-dim-eaba:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.tertiary_ae22 {
    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);
}

.footer-yellow-6662 {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-west-c320 {
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.slow_8405 {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slow_8405.panel-7e5e {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.slow_8405.label-first-c5f8 {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
}

.slow_8405.status-b96d {
    background: rgba(6, 182, 212, 0.2);
    color: var(--info-color);
}

.chip_hovered_56a8 {
    padding: 1.5rem;
    text-align: center;
}

.liquid-b567 {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.top-a79c {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.top-a79c .notification_left_694f {
    color: var(--text-gray);
    font-size: 0.875rem;
    text-align: left;
}

.paragraph_6bda {
    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);
}

.paragraph_6bda:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.column_6721 {
  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);
}

.alert_inner_e948 {
    text-align: center;
}

.alert_inner_e948 .highlight_9482 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.alert_inner_e948 .narrow-bd6e {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Utility Classes */
.progress_complex_b780 { text-align: center; }
.input_paper_c92a { text-align: left; }
.text_a34f { text-align: right; }

.pink-adf9 { margin-bottom: 0; }
.chip_2d24 { margin-bottom: 0.5rem; }
.pagination_dynamic_dcbb { margin-bottom: 1rem; }
.pro_9c8a { margin-bottom: 1.5rem; }
.tooltip_huge_930e { margin-bottom: 2rem; }

.hard_c189 { margin-top: 0; }
.box_warm_cca8 { margin-top: 0.5rem; }
.accent-bright-836c { margin-top: 1rem; }
.input-focused-6395 { margin-top: 1.5rem; }
.overlay-blue-2270 { margin-top: 2rem; }

.fn-hidden-46f0 { display: none; }
.fn-visible-46f0 { display: block; }

/* Responsive Design */
@media (max-width: 767px) {
    .status_red_8d66 {
        padding: 6rem 0 3rem;
    }
    
    .detail-1fa6 {
        text-align: center;
    }
    
    .focus-new-9dde {
        text-align: center;
    }
    
    .tag_9b1c {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .complex-e896,
    .selected_bfaa,
    .pressed_dc76,
    .notice_2e12 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .status_red_8d66 {
        background: none;
    }
}

/* Providers Section */
.info-d5f7 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.east_283b {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .east_283b {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .east_283b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.badge_thick_6500 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.badge_thick_6500:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.fluid-7ba2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.module-easy-1d40 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.over-fa95 {
    list-style: none;
    padding: 0;
}

.over-fa95 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.over-fa95 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.search-7c43 {
    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);
}

.search-7c43 p {
    color: var(--text-gray);
    margin: 0;
}

/* Reviews Section */
.mini-8603 {
    padding: var(--section-padding);
}

.easy_2e37 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .easy_2e37 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shadow-simple-f1f0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.shadow-simple-f1f0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.upper-9337 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.easy-eefb {
    display: flex;
    flex-direction: column;
}

.wrapper_54e8 {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.text_5352 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.fast_9aa8 {
    color: var(--accent-color);
}

.media-fresh-b2e0 {
    font-size: 1.25rem;
}

.sort_f3c9 {
    margin-bottom: 1rem;
}

.sort_f3c9 p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.east-9532 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.first_102b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
}

.active_mini_fac8 {
    text-align: center;
}

.highlight_9482 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.narrow-bd6e {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Mobile App Section */
.outline-b426 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.highlight-8123 {
    margin: 2rem 0;
}

.blue_f7b0 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.blue_f7b0 .slider_7495 {
    font-size: 2rem;
    flex-shrink: 0;
}

.purple_6155 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slider-south-11f8 {
    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;
}

.slider-south-11f8:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.first_4ade {
    font-size: 2rem;
}

.block-989a {
    display: flex;
    flex-direction: column;
}

.shade_365b {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.aside-gold-8937 {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Statistics Section */
.thumbnail_bb0b {
    padding: var(--section-padding);
}

.plasma_45f8 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .plasma_45f8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plasma_45f8 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mask_outer_0e5a {
    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);
}

.mask_outer_0e5a:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.mask_outer_0e5a .highlight_9482 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.mask_outer_0e5a .narrow-bd6e {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: block;
}

.mask_outer_0e5a .title_paper_8358 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.section_d5ef {
    margin-top: 4rem;
}

.outer_aa9d {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.clean_de28 {
    overflow-x: auto;
}

.summary-solid-dbc7 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.summary-solid-dbc7 thead {
    background: var(--accent-color);
}

.summary-solid-dbc7 th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-bg);
    font-weight: 600;
}

.summary-solid-dbc7 td {
    padding: 1rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.summary-solid-dbc7 tbody tr:hover {
    background: rgba(6, 182, 212, 0.1);
}

.summary-solid-dbc7 tbody tr td:first-child {
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ Section */
.surface-3a13 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.secondary_50d8 {
    max-width: 900px;
    margin: 0 auto;
}

.cold-9cca {
    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);
}

.cold-9cca:hover {
    border-color: var(--accent-color);
}

.advanced_c766 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.advanced_c766 h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 600;
}

.caption_complex_999d {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.cold-9cca.fn-active-46f0 .caption_complex_999d {
    transform: rotate(45deg);
}

.wrapper-a811 {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.cold-9cca.fn-active-46f0 .wrapper-a811 {
    max-height: 1000px;
}

.wrapper-a811 p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Download Instructions Section */
.basic_0c38 {
    padding: var(--section-padding);
}

.overlay_f6d0 {
    margin: 2rem 0;
    text-align: center;
}

/* System Requirements Section */
.out_f337 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.form_88c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .form_88c8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight_down_084c {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.main_65fc {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.module-7d34 {
    font-size: 2rem;
}

.prev-f50f {
    color: var(--text-white);
    margin: 0;
}

.avatar-solid-05f1 {
    list-style: none;
    padding: 0;
}

.avatar-solid-05f1 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-solid-05f1 li:last-child {
    border-bottom: none;
}

.large_ec7b {
    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);
}

.large_ec7b p {
    color: var(--success-color);
    margin: 0;
}

.photo-8145 {
    margin-top: 3rem;
}

.static_1028 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.text_medium_dbde {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .text_medium_dbde {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overlay_bottom_04c0 {
    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);
}

.hover-large-0188 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overlay_bottom_04c0 p {
    color: var(--text-gray);
    margin: 0;
}

/* User Stories Section */
.liquid_ab89 {
    padding: var(--section-padding);
}

.aside-e5b3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .aside-e5b3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.static-ea02 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.static-ea02:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.basic-73a8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pink-1536 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.filter_prev_04e3 {
    flex: 1;
}

.text-1aee {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.progress-1a08 {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.popup_3919 {
    color: var(--text-gray);
    line-height: 1.6;
}

.banner-03b2 {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-03b2:last-child {
    border-bottom: none;
}

/* Comparison Section */
.form_dynamic_4383 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Bonus Calculator Section */
.item_middle_7e41 {
    padding: var(--section-padding);
}

.disabled_e12a {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-color);
    margin: 2rem 0;
    text-align: center;
}

.prev_f65b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .prev_f65b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.panel_current_b05b {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hot_62b2, .status-b334, .warm-e9b7 {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.warm-e9b7 {
    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 */
.dropdown-3fa6 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.notification-56cd {
    margin: 2rem 0;
}

.tooltip-19e3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.progress-easy-2ca1 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tabs_6895 {
    list-style: none;
    padding: 0;
}

.tabs_6895 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;
}

.tabs_6895 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.tabs_6895 li:last-child {
    border-bottom: none;
}

.alert-ee13 {
    text-align: center;
    margin-top: 2rem;
}

.border_f76e {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Winners Section */
.iron_c994 {
    padding: var(--section-padding);
}

.accent_2032 {
    margin: 2rem 0;
}

.disabled_74f5 {
    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) {
    .disabled_74f5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.disabled_74f5:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.pink-e780 {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: nowrap;
}

.next_65c9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.stone_b44e {
    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;
}

.nav-4d76 {
    flex: 1;
}

.primary_active_bf1e {
    color: var(--text-white);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.mask-6db2 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.small-a308 {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.paper-18af {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .paper-18af {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.heading_dim_9e71 {
    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);
}

.heading_dim_9e71:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.heading_dim_9e71 .highlight_9482 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.heading_dim_9e71 .narrow-bd6e {
    color: var(--text-gray);
    font-size: 1rem;
}

.button_dark_764a {
    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);
}

.dim-9865 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.dim-9865 strong {
    color: var(--accent-color);
}

/* Bonus Calculator Additional Styles */
.progress_basic_8698 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 1024px) {
    .progress_basic_8698 {
        grid-template-columns: 1fr 1fr;
    }
}

.fresh-c0cb {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.silver-452b {
    margin-bottom: 1.5rem;
}

.silver-452b label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.silver-452b input,
.silver-452b 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;
}

.silver-452b input:focus,
.silver-452b select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.frame_inner_8f09 {
    width: 100%;
    margin-top: 1rem;
}

.picture_ba59 {
    display: flex;
    align-items: center;
}

.tabs_2779 {
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.stale_1771 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

.outline-4a45 {
    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;
}

.slider-plasma-99aa {
    color: var(--text-gray);
}

.accent_35bd {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.grid-3254 {
    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);
}

.grid-3254 p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.875rem;
}

.list_ff38 {
    margin-top: 3rem;
}

.pressed_1212 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Live Stats Section */
.bright-a584 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.panel_soft_afe2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.video_tall_d3ec {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video_tall_d3ec:last-child {
    border-bottom: none;
}

/* Game Rules Section */
.grid_thick_d7b7 {
    padding: var(--section-padding);
}

.preview_silver_fadb {
    margin: 2rem 0;
}

.alert-motion-a5b1 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tertiary_8ec4 {
    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;
}

.tertiary_8ec4:hover, .tertiary_8ec4.fn-active-46f0 {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.hero_soft_dbb2 {
    display: none;
}

.hero_soft_dbb2.fn-active-46f0 {
    display: block;
}

.hard-abf9 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_aa92 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fresh_c4de h4 {
    color: var(--text-white);
    margin: 1.5rem 0 1rem 0;
}

.fresh_c4de ul {
    list-style: none;
    padding: 0;
}

.fresh_c4de ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.fresh_c4de ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.carousel_easy_c26b {
    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 */
.dynamic-9c57 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.down_9668 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.motion-7cb6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mask-copper-d4e8 {
    color: var(--accent-color);
    margin: 0;
}

.modal_smooth_3f50 {
    display: flex;
    gap: 1.5rem;
}

.media-7e82 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.accordion_east_b005 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.primary_2f7c {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.primary_2f7c.nav-simple-dd73 {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.primary_2f7c.preview-pressed-846b {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.primary_2f7c.footer_hot_c5d0 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.label-4454 {
    margin-top: 2rem;
}

.grid-5e36 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.panel-58d2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .panel-58d2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mask_02a1 {
    text-align: center;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
}

.image_1e4c {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.menu_red_4c85 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.input-79f4 {
    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 */
.shade_fast_0134 {
    padding: var(--section-padding);
}

.advanced-e101 {
    margin: 2rem 0;
}

.tabs_inner_2fb9 {
    background: rgba(245, 158, 11, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
}

.easy-53c0 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.notice_43b4 {
    list-style: none;
    padding: 0;
}

.notice_43b4 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;
}

.notice_43b4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

.notice_43b4 li:last-child {
    border-bottom: none;
}

.large-0b4e {
    margin: 2rem 0;
}

.right-df54 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mask_f02d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .mask_f02d {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shade_2455 {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video-bb8d {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.preview-5304 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.heading-daae {
    margin-top: 2rem;
}

.list_da62 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.component_d66e {
    list-style: none;
    padding: 0;
}

.pro_a163 {
    padding: 1rem;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.pro_a163 a {
    color: var(--accent-color);
    text-decoration: none;
}

.pro_a163 a:hover {
    text-decoration: underline;
}

.dark-8110 {
    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 */
.copper_4837 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.solid-a8d1 {
    margin: 2rem 0;
}

.pressed-2650 {
    margin-bottom: 3rem;
}

.pressed-2650 .progress-easy-2ca1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tag-06dc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.heading-light-a486 {
    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);
}

.heading-light-a486:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.button-1288 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .button-1288 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.panel-f5a8 {
    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 */
.modal-990f {
    padding: var(--section-padding);
}

.texture_d52f {
    margin: 2rem 0;
}

.left_19f0 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.search-bright-66cf {
    overflow-x: auto;
    margin: 2rem 0;
}

.nav-current-93cb {
    background: rgba(6, 182, 212, 0.1) !important;
}

.pagination-dim-621d {
    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;
}

.list_warm_e371 {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.large_6a1b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .large_6a1b {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container-iron-3d94 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.container-iron-3d94 .slider_7495 {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.container-iron-3d94 .tiny-0150 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.active-188d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Expert Analysis Section */
.article_a0a5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-up-c712 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .shadow-up-c712 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tooltip-mini-1bd0 {
    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;
}

.tooltip-mini-1bd0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.west-15e0 {
    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);
}

.panel_lower_802a {
    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;
}

.white-ed15 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.outer-f166 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blue-43bd {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.selected-1c9a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.description_east_170a {
    color: var(--text-white);
    font-weight: 600;
}

.paragraph_thick_73c7 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hovered_d08c {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hovered_d08c .carousel_ad63 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.article-009b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .article-009b {
        grid-template-columns: repeat(4, 1fr);
    }
}

.current-8e5e {
    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);
}

.current-8e5e:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.current-8e5e .highlight_9482 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.current-8e5e .narrow-bd6e {
    color: var(--text-gray);
    font-size: 1rem;
}

.purple_b965 {
    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);
}

.content-a42a {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.content-a42a strong {
    color: var(--accent-color);
}

/* Football Leagues Section */
.mini_3954 {
    margin: 2rem 0;
}

.sidebar-d10f {
    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);
}

.sidebar-d10f:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.easy-2dc9 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.button-solid-9348 {
    flex: 1;
}

.aside_clean_a207 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.wrapper_8707 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Live Features Section */
.medium_4d62 {
    margin: 2rem 0;
}

.avatar-thick-0879 {
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.avatar-thick-0879 .tiny-0150 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.avatar-thick-0879 .shadow-selected-09d4 {
    color: var(--text-gray);
    margin: 0;
}

.item-pro-118d {
    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);
}

.item-pro-118d .gas_0b47 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Odds Feature Description */
.active-188d {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Bonus Tier Styles */
.sort_gold_7620 {
    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;
}

.info-hovered-fbf4 {
    flex: 1;
}

.widget_white_0fbd {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.stale-c01e {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

/* Step Content Styles */
.dynamic-b59c {
    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;
}

.purple-0c2e {
    flex: 1;
}

.gradient-bright-157b {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.breadcrumb_53b0 {
    color: var(--text-gray);
    margin: 0;
}

/* Strategy Item Additional Styles */
.modal_3bca {
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.mini-3286 {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.mask-1737 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.mask-1737 .carousel_ad63 {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-gray);
    font-size: 0.875rem;
}

.yellow_c8af {
    margin-top: 2rem;
}

.yellow_c8af .static_1028 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Game Categories Section */
.aside_prev_571b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.brown_5c8e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .brown_5c8e {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brown_5c8e .active_mini_fac8 {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.video_active_f6aa {
    margin: 2rem 0;
}

.aside-6637 {
    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 */
.footer_old_37cc {
    padding: var(--section-padding);
}

.frame_lite_013a {
    margin-top: 1rem;
}

.column-liquid-2bdd {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.column-liquid-2bdd li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.column-liquid-2bdd li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* RTP Info Section */
.dynamic-c590 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.layout_9163 {
    margin: 2rem 0;
}

.static_b6a1 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 3rem;
}

.advanced-cd1a {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sidebar-fad4 {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.primary_2f31 {
    margin: 2rem 0;
}

.pattern_49b3 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.pattern_49b3 .progress-easy-2ca1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.caption_light_0662 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .caption_light_0662 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video_8d52 {
    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);
}

.detail-fb3c {
    color: var(--text-white);
    font-weight: 600;
}

.brown-ebe0 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.outline-last-0361 {
    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);
}

.outline-last-0361 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

/* Tips Section */
.text-bottom-2941 {
    padding: var(--section-padding);
}

.accent_up_be90 {
    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;
}

.accent_up_be90:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tooltip_brown_bc1d {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip_brown_bc1d .hover-large-0188 {
    font-size: 2rem;
    flex-shrink: 0;
}

.tooltip_brown_bc1d .badge_liquid_1bc8 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.image-yellow-5e99 {
    flex: 1;
}

.title_white_2138 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.item-copper-929b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-copper-929b li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.item-copper-929b li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.notification-green-007f {
    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);
}

.notification-green-007f p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.notification-green-007f strong {
    color: var(--warning-color);
}

/* Slots Section */
.warm-6533 {
    padding: var(--section-padding);
}

.sidebar-97b6 {
    margin: 2rem 0;
}

/* Table Games Section */
.hero_plasma_cb5b {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.shadow-9a26 {
    margin: 2rem 0;
}

.panel_7904 {
    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);
}

.panel_7904:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.panel_7904 .footer_f550 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.panel_7904 .pattern_7f08 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.search-d3fc {
    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);
}

.search-d3fc .gas_0b47 {
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    font-size: 1.125rem;
}

/* Filters Section */
.aside_steel_9549 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.narrow-2efb {
    margin: 2rem 0;
}

.form-a5b9 {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.mask_2090 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.logo-c0ac {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.outline-4376 {
    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);
}

.outline-4376:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.outline-4376.fn-active-46f0 {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

.mask-glass-4cbb {
    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);
}

.complex-6f95 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.complex-6f95 strong {
    color: var(--accent-color);
}

/* Hot Games Section */
.sidebar_0c3f {
    padding: var(--section-padding);
}

.accent-stone-93b3 {
    margin: 2rem 0;
}

.wrapper_smooth_5025 {
    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);
}

.wrapper_smooth_5025:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .wrapper_smooth_5025 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bright_3b9e {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
    text-align: center;
}

.button-under-3553 {
    flex: 1;
}

.dark_234c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.small-21e0 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.panel-e0b2 {
    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;
}

.hidden-bright-a099 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shade-f47e {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.focus_61e5 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.lower-528a {
    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;
}

.lower-528a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.focus-a4f2 {
    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);
}

.overlay_393d {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.overlay_393d strong {
    color: var(--accent-color);
}

/* New Games Section */
.progress_hovered_585d {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.menu_plasma_9fd9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .menu_plasma_9fd9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu_plasma_9fd9 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-0a6f {
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.info-0a6f:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.list-in-3501 {
    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;
}

.panel_1170 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.card_06fa {
    font-size: 2rem;
}

.text-hot-5113 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.125rem;
}

.dirty_fd17 {
    flex: 1;
}

.feature_0a93 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.steel-0937 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tabs_3d90 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.notification-iron-75a3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wood-e0ca {
    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;
}

.aside-in-e56a {
    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;
}

.aside-in-e56a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer_4b4e {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dark-8c84 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.gallery-active-77b0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-active-77b0 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fixed_6f91 {
    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);
}

.simple_9717 {
    color: var(--text-white);
    font-weight: 600;
}

.tabs-1f5d {
    color: var(--accent-color);
    font-weight: 600;
}

.secondary-lite-9cee {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

.secondary-lite-9cee strong {
    color: var(--accent-color);
}

/* Security Section */
.item_small_d250 {
    padding: var(--section-padding);
}

/* Benefits Section */
.link-70df {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

/* Help Section */
.link-iron-d0f4 {
    padding: var(--section-padding);
}

/* Password Recovery Section */
.slow-297e {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.bright-c153 {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.header_2ecd {
    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) {
    .header_2ecd {
        flex-direction: column;
        gap: 1rem;
    }
}

.header_2ecd:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.header_2ecd .dynamic-b59c {
    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;
}

.header_2ecd .purple-0c2e {
    flex: 1;
}

.header_2ecd .gradient-bright-157b {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.header_2ecd .breadcrumb_53b0 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.table-middle-9f0c {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.table-middle-9f0c .feature-complex-8ca4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.table-middle-9f0c .wood_ed75 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-middle-9f0c .wood_ed75 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.table-middle-9f0c .wood_ed75 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.slider-dirty-4495 {
    text-align: center;
    margin-top: 2rem;
}

/* Quick Registration Section */
.left_79f4 {
    padding: var(--section-padding);
}

.thick-c00c {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .thick-c00c {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next_36bf {
    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);
}

.next_36bf:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.next_36bf .wide-4270 {
    font-size: 2rem;
    flex-shrink: 0;
}

.next_36bf .secondary_4a94 {
    flex: 1;
}

.next_36bf .highlight-stone-3e00 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.next_36bf .progress_3eb1 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.sort_tiny_8e4a {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.sort_tiny_8e4a .hidden_north_828c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.sort_tiny_8e4a .middle-17de {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.sort_tiny_8e4a .middle-17de 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);
}

.sort_tiny_8e4a .middle-17de li:last-child {
    border-bottom: none;
}

.sort_tiny_8e4a .middle-17de 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;
}

.sort_tiny_8e4a .middle-17de li strong {
    color: var(--text-white);
}

.block_pro_aaf8 {
    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);
}

.block_pro_aaf8 p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.block_pro_aaf8 strong {
    color: var(--accent-color);
}

/* Security Tips Section */
.focus-f767 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.dropdown-8f1f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .dropdown-8f1f {
        grid-template-columns: repeat(2, 1fr);
    }
}

.layout-out-17e0 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.layout-out-17e0:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.header-lite-03c8 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.layout_1d33 {
    font-size: 2rem;
}

.surface-74ce {
    color: var(--text-white);
    margin: 0;
    font-size: 1.25rem;
}

.surface_complex_e407 {
    flex: 1;
}

.input-5a14 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input-5a14 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.input-5a14 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.column_large_e72c {
    margin-top: 3rem;
}

.tabs_inner_2fb9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.easy-53c0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.notice_43b4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice_43b4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.notice_43b4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.notice_43b4 li strong {
    color: var(--warning-color);
}

/* Tech Stack Section */
.shadow-f588 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.steel-9473 {
    margin: 2rem 0;
}

.block-44b2 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.block-44b2 .progress-easy-2ca1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.button-under-4151 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-under-4151 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.small-29dc {
    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);
}

.small-29dc:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.selected_bf10 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu_fresh_7de4 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Performance Section */
.logo_center_1dc1 {
    padding: var(--section-padding);
}

.title-blue-34a6 {
    margin: 2rem 0;
}

.new-11d9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .new-11d9 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .new-11d9 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.texture_9755 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition-normal);
}

.texture_9755:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.shadow_bright_9a6c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hidden-center-beae {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
}

.easy-8fef {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.easy-8fef.detail_dark_08eb {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.next-cde3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.detail-a0f3 {
    color: var(--text-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.green_7d00 {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-west-2323 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.badge_f46a {
    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);
}

.badge_f46a p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.badge_f46a strong {
    color: var(--accent-color);
}

/* Update Log Section */
.complex-17bb {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.focus-fb01 {
    margin: 2rem 0;
}

.purple_1781 {
    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) {
    .purple_1781 {
        flex-direction: column;
        gap: 1rem;
    }
}

.purple_1781:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.purple_1781::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);
}

.pattern-949c {
    min-width: 120px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.sidebar_steel_48a5 {
    flex: 1;
}

.old_523f {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.search_down_ea38 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search_down_ea38 li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.stale-1f8f {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-gradient);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.easy-9f9c {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.row_last_0903 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .row_last_0903 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steel-c97e {
    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);
}

.first_5905 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.shade_3bb4 {
    flex: 1;
}

.button_orange_ef29 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.heading-ac72 {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9375rem;
}

.static_60a5 {
    margin-top: 2rem;
    text-align: center;
}

.white-7763 {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.white-7763 strong {
    color: var(--accent-color);
}

/* Promo Highlights */
.disabled-2aef {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .disabled-2aef {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-f7da {
    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);
}

.media-f7da:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.media-f7da .gradient-d6e9 {
    font-size: 2rem;
    flex-shrink: 0;
}

.media-f7da .hero-2bfc {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.media-f7da .pattern_3bd8 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.media-f7da .media-cab2 {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Promos Section */
.main-252e {
    padding: var(--section-padding);
}

.complex-7e47 .west_3faf {
    flex: 1;
}

/* Promo Calendar Section */
.description_1576 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.label-stone-da81 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .label-stone-da81 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.short-e35f {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hovered_8149 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.tabs-c762 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_5fc4 {
    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);
}

.under_6e6e {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.down-f66b {
    color: var(--text-white);
    font-size: 0.9375rem;
}

.active-eedd {
    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);
}

.active-eedd p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.active-eedd strong {
    color: var(--accent-color);
}

/* Requirements Section */
.outline_26e0 {
    padding: var(--section-padding);
}

.picture_f694 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .picture_f694 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lite-f8a8 {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.primary_bottom_c0e2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tag_83db {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag_83db li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.blue-b7dc {
    margin-top: 3rem;
}

.blue-b7dc .tabs_inner_2fb9 {
    padding: 2rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-color);
}

.blue-b7dc .easy-53c0 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.blue-b7dc .notice_43b4 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.blue-b7dc .notice_43b4 li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.blue-b7dc .notice_43b4 li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
}

.blue-b7dc .notice_43b4 li strong {
    color: var(--warning-color);
}

.red-edca {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.red-edca strong {
    color: var(--accent-color);
}

/* Winners Hall Section */
.carousel_current_c3c5 {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.column-right-973e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .column-right-973e {
        grid-template-columns: repeat(3, 1fr);
    }
}

.block_glass_255b {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.block_glass_255b .progress-easy-2ca1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.table_fdf5 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.short_8f7d {
    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);
}

.short_8f7d:hover {
    transform: translateX(4px);
    border-color: var(--accent-color);
}

.mask-170b {
    font-size: 2rem;
    flex-shrink: 0;
}

.description-08bc {
    flex: 1;
}

.tag_4e51 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.box-064d {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.alert_5fde {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.paragraph_small_de40 {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.copper-8dc2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 640px) {
    .copper-8dc2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mini-d246 {
    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);
}

.mini-d246:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.status_first_3c8d {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu-easy-dbba {
    color: var(--text-gray);
    font-size: 1rem;
}

.dim-9865 {
    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-2b35 {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlight-2b35 strong {
    color: var(--accent-color);
}

html, body { width:100%; max-width:100%; overflow-x:hidden; }
.heading-top-371d { 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; }
.action-e668, .fixed-5547 { max-width:100%; height:auto; }

.icon_easy_fa46, .component_c040, .gallery-prev-cec7 { white-space:normal; }

.detail-1fa6,
.focus-new-9dde,
.item_in_1569,
.disabled-2aef,
.medium_4d62,
.column_hovered_7037 {
  flex-wrap:wrap;
}

[class*="grid"],
.copper-8dc2,
.new-11d9,
.inner-e1bb {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(0,1fr));
}

.status_red_8d66 img,
.focus-new-9dde img,
.card-02d7 img {
  width:100%;
  max-width: min(100%, 800px); /* 原本 800px 的图 */
}

.mask-7360, .footer_281d,
.feature_8dbb, .avatar_31ba {
  word-break:break-word;
  overflow-wrap:anywhere;
}

.clean_de28 { width:100%; overflow-x:auto; }
.clean_de28 table { width:100%; min-width:600px; }

/* 供应商卡片自适应换行 */
.east_283b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .east_283b {
    grid-template-columns: 1fr;
  }
}

/* 防止卡片自身撑宽 */
.badge_thick_6500 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 通用：卡片容器自适应列 */
.plasma_45f8,
.feature_7a8f,
.alert-slow-1fb3,
.component_1aeb,
.paper-18af,
.copper-8dc2,
.new-11d9,
.inner-e1bb,
.column_6721,
.accent-stone-93b3,
.east_283b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* 移动端可进一步单列 */
@media (max-width: 768px) {
  .plasma_45f8,
  .feature_7a8f,
  .alert-slow-1fb3,
  .component_1aeb,
  .paper-18af,
  .copper-8dc2,
  .new-11d9,
  .inner-e1bb,
  .column_6721,
  .accent-stone-93b3,
  .east_283b {
    grid-template-columns: 1fr;
  }
}

/* 卡片本身防止撑宽 */
.mask_outer_0e5a,
.heading_dim_9e71,
.mini-d246,
.disabled_first_5310,
.texture_9755,
.alert_inner_e948,
.wrapper_smooth_5025,
.badge_thick_6500 {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* 若有使用 flex 的容器，允许换行并限制子项 */
.image_orange_87fe,
.main-first-d743,
.main-53fd {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.image_orange_87fe > *,
.main-first-d743 > *,
.main-53fd > * {
  flex: 1 1 200px;
  min-width: 0;
}
/* css-noise: 969d */
.ghost-box-w2 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
