/* 
 * 255bet Main Styles - Optimized for Google 2026 Algorithm
 * Focus: Core Web Vitals, Mobile-First, Accessibility
 */

/* ========================================
   1. CSS Reset & Base Styles
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    /* Color Palette - Modern & Accessible */
    --primary-purple: #667eea;
    --primary-purple-dark: #5568d3;
    --secondary-green: #10b981;
    --secondary-green-dark: #059669;
    --accent-gold: #fbbf24;
    --dark-bg: #1f2937;
    --dark-card: #2d3748;
    --light-bg: #f8f9fa;
    --light-card: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-light: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-system);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ========================================
   2. Accessibility
   ======================================== */

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

/* ========================================
   3. Header & Navigation
   ======================================== */

/* Top bar + brown nav (shared.tag_85c7) — fixed together on mobile */
.wood-c53d {
    width: 100%;
}

.video-medium-4beb {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-base);
    width: 100%;
}

/* 移动端：整块固定在顶部（白条 + 棕色菜单栏） */
@media (max-width: 767px) {
    .wood-c53d {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .video-medium-4beb {
        box-shadow: none;
    }

    body {
        padding-top: 118px;
    }

    /*
     * Mobile: menu lives inside fixed header — document does not scroll for overflow.
     * Make the expanded panel scrollable so dropdowns (e.pagination-103d. Conta) stay reachable.
     */
    .medium_0a63 .rough_cb25 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .wood-c53d .medium_0a63 > .rough_cb25 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .wood-c53d:has(.backdrop-e31b.fn-show-adcf) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .wood-c53d:has(.backdrop-e31b.fn-show-adcf) .video-medium-4beb {
        flex-shrink: 0;
    }

    .wood-c53d:has(.backdrop-e31b.fn-show-adcf) .medium_0a63 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .wood-c53d:has(.backdrop-e31b.fn-show-adcf) .medium_0a63 > .rough_cb25 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .wood-c53d:has(.backdrop-e31b.fn-show-adcf) .fresh_6755 {
        flex-shrink: 0;
    }

    .wood-c53d:has(.backdrop-e31b.fn-show-adcf) .backdrop-e31b.fn-show-adcf {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-sizing: border-box;
    }

    /* Dropdown inside open menu: allow full height + scroll if many items */
    .medium_0a63 .backdrop-e31b .gallery_31d5.fn-active-adcf .layout-dynamic-fd53 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .video-medium-4beb {
        position: sticky;
        top: 0;
    }
}

.wood-c53d.component-4171,
.wood-c53d.component-4171 .video-medium-4beb {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.content-7a79 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .content-7a79 {
        padding: 0.75rem 0;
    }
}

.accordion_green_7dd2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.frame-770e img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .frame-770e img {
        height: 35px;
    }
}

/* .medium_0a63 / .thick-50d1 — inner pages (brown bar); index uses .tiny-4f18 below */

.medium_0a63:not(.tiny-4f18) .thick-50d1.fn-active-adcf {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.heading_0ab0 {
    display: flex;
    gap: var(--spacing-md);
}

.avatar-1924,
.copper_4ede {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    white-space: nowrap;
}

/* 移动端按钮优化 */
@media (max-width: 767px) {
    .avatar-1924,
    .copper_4ede {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .heading_0ab0 {
        gap: 0.5rem;
    }
}

.avatar-1924 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.avatar-1924:hover {
    background: var(--primary-purple);
    color: white;
}

.copper_4ede {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.copper_4ede:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.modal_49c1 {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 5rem 1.25rem 4rem;
    overflow: hidden;
    width: 100%;
}

.modal_49c1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40vw;
    max-width: 500px;
    height: 40vw;
    max-height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.modal_49c1::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 30vw;
    max-width: 400px;
    height: 30vw;
    max-height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.mini-2dd9 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.detail_dark_9ad4 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.detail_dark_9ad4 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 400px);
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.modal_49c1 h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gas_b8db {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gas_b8db strong {
    font-weight: 700;
}

.next_c031 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature_dim_0fb5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.surface-center-eb35 {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-base);
}

.surface-center-eb35:hover {
    transform: translateY(-4px);
}

.card_98e0 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.image-iron-1f81 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.slider-7533 {
    display: inline-block;
    background: var(--secondary-green);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
}

.slider-7533:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.slider-7533.first_1a35 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.wide_ab91 {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-purple);
    transition: all var(--transition-base);
}

.wide_ab91:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.tall-b5ad {
    padding: 3rem 1.25rem;
    background: white;
}

.picture_dim_3c37 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.thumbnail-3f8d {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.thumbnail-3f8d:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.thumbnail-3f8d img {
    margin-bottom: 1rem;
}

.image-inner-c66c {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.thumbnail-3f8d h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.thumbnail-3f8d p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Editorial / E-E-A-T — transparência visível para buscadores e usuários */
.first_66b0 {
    padding: 3rem 1.25rem;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.caption_current_44ab {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.caption-8827 {
    background: #fff;
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.caption-8827 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.caption-8827 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.caption-8827 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.link-action-3dbd {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-purple);
}

/* ========================================
   7. Quick Answer Section
   ======================================== */

.middle-e275 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hard_9d20 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.column_a676 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.highlight_iron_8141 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tooltip_f187 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.tooltip_f187:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.tooltip_f187.table_inner_8463 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tooltip_f187.table_inner_8463 h3,
.tooltip_f187.table_inner_8463 p {
    color: white;
}

.backdrop_bright_1023 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tooltip_f187 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tooltip_f187 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.button-a0e1 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.button-a0e1:hover {
    gap: 0.75rem;
}

.tooltip_f187.table_inner_8463 .button-a0e1 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.blue_61de {
    padding: 4rem 1.25rem;
    background: white;
}

.hidden_dfc8 {
    text-align: center;
    margin-bottom: 3rem;
}

.lite-15da {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.down_bc5c {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.down_bc5c:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.bright-116c {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.125rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-lg);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider_5f4d {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.upper-8c38 {
    padding: 1.5rem;
}

.upper-8c38 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tag-0ae0 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.chip_wood_149e {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.full-ad6c,
.grid_dynamic_d08f {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.full-ad6c {
    background: #dcfce7;
    color: #166534;
}

.full-ad6c.component_c391 {
    background: #10b981;
    color: white;
}

.grid_dynamic_d08f {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.grid_dynamic_d08f.yellow_a20c {
    background: #fee2e2;
    color: #991b1b;
}

.grid_dynamic_d08f.article_outer_c8f2 {
    background: #fef3c7;
    color: #92400e;
}

.grid_dynamic_d08f.chip_8c6b {
    background: #dcfce7;
    color: #166534;
}

.avatar-e21b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.avatar-e21b strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.warm-48ed {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-purple);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
}

.warm-48ed:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.silver-2272 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.photo-3678 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.basic-5cb2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .basic-5cb2 {
        grid-template-columns: 1fr 1fr;
    }
}

.bottom-6d1e img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.wide_bc13 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.nav_a6bf {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.steel_25c8 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.highlight-up-8814 {
    font-size: 1rem;
    opacity: 0.9;
}

.wide_bc13 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.message_16e1 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.message_16e1 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.message_16e1 li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.message_16e1 li strong {
    color: var(--primary-purple);
}

.message_16e1 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.chip-4118 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.pattern-808e {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.video_abb1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.pattern-808e .image-iron-1f81 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.list-pink-1c0c p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.disabled-mini-9357 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.disabled-mini-9357 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.grid_7ee9 {
    padding: 4rem 1.25rem;
    background: white;
}

.video-left-7731 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .video-left-7731 {
        grid-template-columns: 1fr 1fr;
    }
}

.east_2433 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.iron-e870 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.container_first_05fd {
    margin-bottom: 1.5rem;
}

.center_858f {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-85bd {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: width var(--transition-slow);
}

.link-new-806f {
    white-space: nowrap;
}

.main-gold-94e0 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.aside-41c5 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-upper-4f61 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.section-upper-4f61:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.gallery_fixed_4dc5 {
    font-size: 2rem;
    flex-shrink: 0;
}

.fast_d41d h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.fast_d41d p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.white-38be {
    margin-top: 3rem;
}

.white-38be h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.upper-9d2e {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.upper-9d2e thead {
    background: var(--primary-purple);
    color: white;
}

.upper-9d2e th,
.upper-9d2e td {
    padding: 1rem;
    text-align: left;
}

.upper-9d2e th {
    font-weight: 700;
    font-size: 0.9rem;
}

.upper-9d2e tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.upper-9d2e tbody tr:last-child {
    border-bottom: none;
}

.upper-9d2e tbody tr:hover {
    background: var(--light-bg);
}

.inner-2659 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.right_25bf {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.overlay-bronze-6d72 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.button-dim-822f {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.button-dim-822f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.button-dim-822f.selected-dba3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-green);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.progress_upper_0e04 {
    display: inline-block;
    background: var(--secondary-green);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.button-9a10 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.short_8eba h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.lower-4e88 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.border-first-7266 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.border-first-7266 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.border-first-7266 p:last-child {
    margin-bottom: 0;
}

.border-first-7266 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.message-fresh-a20b {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--secondary-green);
    padding-left: 1rem;
    margin: 1rem 0 0;
}

.dim_5b6e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.panel_df9d {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.panel_df9d .card_98e0 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.panel_df9d .image-iron-1f81 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.pattern-d80c {
    padding: 4rem 1.25rem;
    background: white;
}

.info-7415 {
    max-width: 900px;
    margin: 0 auto;
}

.container-1e98 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.container-1e98:hover {
    border-color: var(--primary-purple);
}

.container-1e98[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.container-1e98 summary {
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.container-1e98 summary::-webkit-details-marker {
    display: none;
}

.container-1e98 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.container-1e98[open] summary::after {
    transform: rotate(45deg);
}

.shadow-981a {
    padding: 0 1.5rem 1.5rem;
    animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shadow-981a p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.shadow-981a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.shadow-981a ul,
.shadow-981a ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.shadow-981a li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.shadow-981a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.last-434e {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.mask-selected-7683 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mask-selected-7683 th,
.mask-selected-7683 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.mask-selected-7683 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.preview_6e84 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.media-cf21 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.section_e18a {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .section_e18a {
        flex-direction: column;
        text-align: center;
    }
}

.section_e18a img {
    flex-shrink: 0;
}

.thick_f180 {
    font-size: 4rem;
    flex-shrink: 0;
}

.outer_bcd1 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.outer_bcd1 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.paper-38f1 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.bright-21fd {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.soft-bd4f h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.soft-bd4f > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.title_783e {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.fixed-90d1 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.large-ea57 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-8a7a h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-8a7a p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.row_5ab2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.table-dark-1798 {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-9670 {
    list-style: none;
}

.preview-9670 li {
    margin-bottom: 0.75rem;
}

.preview-9670 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.preview-9670 a:hover {
    color: white;
}

.picture-b920 {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.list-2c36 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.list-2c36 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.element_55c6 {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.85rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-2ef5 {
    text-align: right;
}

@media (max-width: 767px) {
    .secondary-2ef5 {
        text-align: center;
        width: 100%;
    }
}

.secondary-2ef5 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.heading-fe3b {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.rough_cb25 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.tall-b5ad,
.first_66b0,
.middle-e275,
.blue_61de,
.photo-3678,
.grid_7ee9,
.right_25bf,
.pattern-d80c,
.media-cf21,
.bright-21fd {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .hard_9d20 {
        font-size: 1.75rem;
    }
    
    .column_a676 {
        font-size: 1rem;
    }
    
    .chip-4118 {
        flex-direction: column;
    }
    
    .video-left-7731 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .lite-15da {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .down_bc5c {
        max-width: 100%;
    }
    
    .slider_5f4d {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .rough_cb25 {
        padding: 0 1rem;
    }
    
    .modal_49c1 {
        padding: 4rem 1rem 3rem;
    }
    
    .modal_49c1 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .slider-7533 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature_dim_0fb5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .upper-9d2e,
    .mask-selected-7683 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .picture_dim_3c37 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .highlight_iron_8141 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .overlay-bronze-6d72 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .modal_49c1 h1 {
        font-size: 1.5rem;
    }
    
    .feature_dim_0fb5 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .surface-center-eb35 {
        padding: 0.75rem;
    }
    
    .card_98e0 {
        font-size: 1.5rem;
    }
    
    .picture_dim_3c37 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   17. Performance Optimizations
   ======================================== */

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Will-change for Animations */
.down_bc5c:hover,
.tooltip_f187:hover,
.button-dim-822f:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .blue_61de,
    .right_25bf,
    .pattern-d80c {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.tag_85c7)
   ======================================== */

.medium_0a63.tiny-4f18 {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(248, 250, 252, 0.92) 45%,
        rgba(239, 246, 255, 0.93) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 6px 24px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    border-radius: 16px;
    margin: 0.35rem 0 0.5rem;
}

.medium_0a63.tiny-4f18 .thick-50d1 {
    color: #334155;
}

.medium_0a63.tiny-4f18 .thick-50d1:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.medium_0a63.tiny-4f18 .thick-50d1.fn-active-adcf {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.medium_0a63.tiny-4f18 .layout-dynamic-fd53 {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(99, 102, 241, 0.08);
}

.medium_0a63.tiny-4f18 .layout-dynamic-fd53::before {
    border-bottom-color: #ffffff;
}

.medium_0a63.tiny-4f18 .mask_fixed_ff39 {
    color: #475569;
}

.medium_0a63.tiny-4f18 .mask_fixed_ff39::before {
    background: #818cf8;
}

.medium_0a63.tiny-4f18 .mask_fixed_ff39:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.medium_0a63.tiny-4f18 .mask_fixed_ff39:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.medium_0a63.tiny-4f18 .text_00eb {
    background: rgba(241, 245, 249, 0.95);
    border-color: rgba(148, 163, 184, 0.55);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.medium_0a63.tiny-4f18 .text_00eb:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.medium_0a63.tiny-4f18 .text_00eb span {
    background: #475569;
    box-shadow: none;
}

.medium_0a63.tiny-4f18 .text_00eb.fn-active-adcf span:nth-child(1),
.medium_0a63.tiny-4f18 .text_00eb.fn-active-adcf span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .medium_0a63.tiny-4f18 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .medium_0a63.tiny-4f18 .fresh_6755 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .medium_0a63.tiny-4f18 .fresh_6755 span {
        color: #334155 !important;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 252, 0.98) 100%
        );
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .thick-50d1 {
        color: #334155;
        text-shadow: none;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .thick-50d1:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .thick-50d1.fresh_e45c::after {
        color: #64748b;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .layout-dynamic-fd53 {
        background: linear-gradient(
            180deg,
            rgba(241, 245, 249, 0.98) 0%,
            rgba(226, 232, 240, 0.55) 100%
        );
        border-top-color: rgba(203, 213, 225, 0.8);
        border-bottom-color: rgba(203, 213, 225, 0.5);
    }

    /* Garantir submenu visível ao tocar (evita conflito de especificidade com o tema index) */
    .medium_0a63.tiny-4f18 .backdrop-e31b .gallery_31d5.fn-active-adcf .layout-dynamic-fd53 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .mask_fixed_ff39 {
        color: #475569;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .mask_fixed_ff39::before {
        color: #6366f1;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .mask_fixed_ff39:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .mask_fixed_ff39:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .medium_0a63.tiny-4f18 .backdrop-e31b .mask_fixed_ff39:hover::before {
        color: #4f46e5;
    }
}

/* apk.module-fast-34cd — mesmo tema claro da home; blocos extras */
body.layout_c973 {
    background: #f8f9fa;
    color: #2c3e50;
}

.layout_c973 .breadcrumb-under-fab2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.layout_c973 .accent-d6d8 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.layout_c973 .accent-d6d8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout_c973 .accent-d6d8 p:last-child {
    margin-bottom: 0;
}

.layout_c973 .accent-d6d8 strong {
    color: var(--text-primary);
}

.layout_c973 .hover-5a96 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.layout_c973 .hover-5a96 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.clean-d4ef {
    background: #f8f9fa;
    color: #2c3e50;
}

.clean-d4ef .mask-action-824e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.clean-d4ef .clean_d792 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.clean-d4ef .clean_d792 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.clean-d4ef .clean_d792 p:last-child {
    margin-bottom: 0;
}

.clean-d4ef .clean_d792 strong {
    color: var(--text-primary);
}

.clean-d4ef .image-hot-6c4c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.clean-d4ef .image-hot-6c4c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.content-86d5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.content-86d5 .dynamic_e1ed {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content-86d5 .search_31ff {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.content-86d5 .search_31ff p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content-86d5 .search_31ff p:last-child {
    margin-bottom: 0;
}

.content-86d5 .search_31ff strong {
    color: var(--text-primary);
}

.content-86d5 .carousel-744d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content-86d5 .carousel-744d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.fresh_1c78 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fresh_1c78 .secondary-361c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fresh_1c78 .row-bbe7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.fresh_1c78 .row-bbe7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fresh_1c78 .row-bbe7 p:last-child {
    margin-bottom: 0;
}

.fresh_1c78 .row-bbe7 strong {
    color: var(--text-primary);
}

.fresh_1c78 .pattern-acfe {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fresh_1c78 .pattern-acfe img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.detail-old-5c17 {
    background: #f8f9fa;
    color: #2c3e50;
}

.detail-old-5c17 .panel_thick_7717 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.detail-old-5c17 .preview_liquid_74ce {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.detail-old-5c17 .preview_liquid_74ce p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail-old-5c17 .preview_liquid_74ce p:last-child {
    margin-bottom: 0;
}

.detail-old-5c17 .preview_liquid_74ce strong {
    color: var(--text-primary);
}

.detail-old-5c17 .filter-38fc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.detail-old-5c17 .filter-38fc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.button-small-2879 {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-small-2879 .highlight_f31a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-small-2879 .tiny_8119 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.button-small-2879 .tiny_8119 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-small-2879 .tiny_8119 p:last-child {
    margin-bottom: 0;
}

.button-small-2879 .tiny_8119 strong {
    color: var(--text-primary);
}

.button-small-2879 .wood-e421 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-small-2879 .wood-e421 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dropdown-outer-ee8e {
    background: #f8f9fa;
    color: #2c3e50;
}

.dropdown-outer-ee8e .lite_86db {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dropdown-outer-ee8e .overlay-b2ac {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.dropdown-outer-ee8e .overlay-b2ac p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dropdown-outer-ee8e .overlay-b2ac p:last-child {
    margin-bottom: 0;
}

.dropdown-outer-ee8e .overlay-b2ac strong {
    color: var(--text-primary);
}

.dropdown-outer-ee8e .avatar_d4d1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dropdown-outer-ee8e .avatar_d4d1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gas_b62f {
    background: #f8f9fa;
    color: #2c3e50;
}

.gas_b62f .filter-d2c6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gas_b62f .fluid-b2ee {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.gas_b62f .fluid-b2ee p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gas_b62f .fluid-b2ee p:last-child {
    margin-bottom: 0;
}

.gas_b62f .fluid-b2ee strong {
    color: var(--text-primary);
}

.gas_b62f .motion-5c81 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gas_b62f .motion-5c81 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.alert-6969 {
    background: #f8f9fa;
    color: #2c3e50;
}

.alert-6969 .notification_current_f0bf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.alert-6969 .table-upper-e811 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.alert-6969 .table-upper-e811 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.alert-6969 .table-upper-e811 p:last-child {
    margin-bottom: 0;
}

.alert-6969 .table-upper-e811 strong {
    color: var(--text-primary);
}

.alert-6969 .fluid_c993 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.alert-6969 .fluid_c993 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shade-9145 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade-9145 .secondary-0eb6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade-9145 .black-3579 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.shade-9145 .black-3579 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade-9145 .black-3579 p:last-child {
    margin-bottom: 0;
}

.shade-9145 .black-3579 strong {
    color: var(--text-primary);
}

.shade-9145 .label_dirty_e46a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade-9145 .label_dirty_e46a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.summary-blue-2630 {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary-blue-2630 .gradient_6b6f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary-blue-2630 .center_ac0f {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.summary-blue-2630 .center_ac0f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary-blue-2630 .center_ac0f p:last-child {
    margin-bottom: 0;
}

.summary-blue-2630 .center_ac0f strong {
    color: var(--text-primary);
}

.summary-blue-2630 .header_b6e7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary-blue-2630 .header_b6e7 li {
    margin-bottom: 0.65rem;
}

.summary-blue-2630 .header_b6e7 li:last-child {
    margin-bottom: 0;
}

.summary-blue-2630 .wide_174a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary-blue-2630 .wide_174a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.liquid_a5f8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.liquid_a5f8 .panel-up-42f5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.liquid_a5f8 .chip-394e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.liquid_a5f8 .chip-394e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.liquid_a5f8 .chip-394e p:last-child {
    margin-bottom: 0;
}

.liquid_a5f8 .chip-394e strong {
    color: var(--text-primary);
}

.liquid_a5f8 .paragraph-e3db {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.liquid_a5f8 .paragraph-e3db li {
    margin-bottom: 0.65rem;
}

.liquid_a5f8 .paragraph-e3db li:last-child {
    margin-bottom: 0;
}

.liquid_a5f8 .action_f394 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.liquid_a5f8 .action_f394 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paragraph-af67 {
    background: #f8f9fa;
    color: #2c3e50;
}

.paragraph-af67 .background-small-bcf4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paragraph-af67 .notification-d2ed {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.paragraph-af67 .notification-d2ed p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph-af67 .notification-d2ed p:last-child {
    margin-bottom: 0;
}

.paragraph-af67 .notification-d2ed strong {
    color: var(--text-primary);
}

.paragraph-af67 .cool-c3ea {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph-af67 .cool-c3ea li {
    margin-bottom: 0.65rem;
}

.paragraph-af67 .cool-c3ea li:last-child {
    margin-bottom: 0;
}

.paragraph-af67 .accordion-7d25 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paragraph-af67 .accordion-7d25 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.down_9d2a {
    background: #f8f9fa;
    color: #2c3e50;
}

.down_9d2a .light_7747 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.down_9d2a .search_1d0f {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.down_9d2a .search_1d0f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.down_9d2a .search_1d0f p:last-child {
    margin-bottom: 0;
}

.down_9d2a .search_1d0f strong {
    color: var(--text-primary);
}

.down_9d2a .summary-yellow-b866 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.down_9d2a .summary-yellow-b866 li {
    margin-bottom: 0.65rem;
}

.down_9d2a .summary-yellow-b866 li:last-child {
    margin-bottom: 0;
}

body.fresh_6b1e {
    background: #f8f9fa;
    color: #2c3e50;
}

.fresh_6b1e .simple_9633 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fresh_6b1e .tall_b169 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.fresh_6b1e .tall_b169 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fresh_6b1e .tall_b169 p:last-child {
    margin-bottom: 0;
}

.fresh_6b1e .tall_b169 strong {
    color: var(--text-primary);
}

.fresh_6b1e .tooltip-8766 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fresh_6b1e .tooltip-8766 li {
    margin-bottom: 0.65rem;
}

.fresh_6b1e .tooltip-8766 li:last-child {
    margin-bottom: 0;
}

.fresh_6b1e .accordion_f8b4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fresh_6b1e .accordion_f8b4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.right_6211 {
    background: #f8f9fa;
    color: #2c3e50;
}

.right_6211 .mini_0d11 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.right_6211 .background_5e45 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.right_6211 .background_5e45 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.right_6211 .background_5e45 p:last-child {
    margin-bottom: 0;
}

.right_6211 .background_5e45 strong {
    color: var(--text-primary);
}

.right_6211 .advanced-0dbd {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.right_6211 .advanced-0dbd li {
    margin-bottom: 0.65rem;
}

.right_6211 .advanced-0dbd li:last-child {
    margin-bottom: 0;
}

.right_6211 .east-9531 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.right_6211 .east-9531 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.prev-a728 {
    background: #f8f9fa;
    color: #2c3e50;
}

.prev-a728 .sidebar-a063 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.prev-a728 .grid-light-5fa2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.prev-a728 .grid-light-5fa2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prev-a728 .grid-light-5fa2 p:last-child {
    margin-bottom: 0;
}

.prev-a728 .grid-light-5fa2 strong {
    color: var(--text-primary);
}

.prev-a728 .south_ac2c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prev-a728 .south_ac2c li {
    margin-bottom: 0.65rem;
}

.prev-a728 .south_ac2c li:last-child {
    margin-bottom: 0;
}

.prev-a728 .item_36f4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.prev-a728 .item_36f4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.lower-403b {
    background: #f8f9fa;
    color: #2c3e50;
}

.lower-403b .alert-6cb6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.lower-403b .north_6bf8 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.lower-403b .north_6bf8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower-403b .north_6bf8 p:last-child {
    margin-bottom: 0;
}

.lower-403b .north_6bf8 strong {
    color: var(--text-primary);
}

.lower-403b .old-4e0d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower-403b .old-4e0d li {
    margin-bottom: 0.65rem;
}

.lower-403b .old-4e0d li:last-child {
    margin-bottom: 0;
}

.lower-403b .liquid-e12b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.lower-403b .liquid-e12b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* css-noise: a85e */
.phantom-card-a0 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
