/* 
 * 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.sort-eef2) — fixed together on mobile */
.next_a06b {
    width: 100%;
}

.primary_thick_c5b6 {
    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) {
    .next_a06b {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .primary_thick_c5b6 {
        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.nav-3855. Conta) stay reachable.
     */
    .focused-7aa1 .blue-8732 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .next_a06b .focused-7aa1 > .blue-8732 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .next_a06b:has(.alert_abfc.fn-show-2354) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .next_a06b:has(.alert_abfc.fn-show-2354) .primary_thick_c5b6 {
        flex-shrink: 0;
    }

    .next_a06b:has(.alert_abfc.fn-show-2354) .focused-7aa1 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .next_a06b:has(.alert_abfc.fn-show-2354) .focused-7aa1 > .blue-8732 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .next_a06b:has(.alert_abfc.fn-show-2354) .steel-adf3 {
        flex-shrink: 0;
    }

    .next_a06b:has(.alert_abfc.fn-show-2354) .alert_abfc.fn-show-2354 {
        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 */
    .focused-7aa1 .alert_abfc .highlight-eb71.fn-active-2354 .frame-ed8b {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .primary_thick_c5b6 {
        position: sticky;
        top: 0;
    }
}

.next_a06b.overlay_d50c,
.next_a06b.overlay_d50c .primary_thick_c5b6 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.notification-60b8 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .notification-60b8 {
        padding: 0.75rem 0;
    }
}

.alert-fixed-8687 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.button_6198 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .button_6198 img {
        height: 35px;
    }
}

/* .focused-7aa1 / .surface-577f — inner pages (brown bar); index uses .highlight_advanced_eead below */

.focused-7aa1:not(.highlight_advanced_eead) .surface-577f.fn-active-2354 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.copper_a383 {
    display: flex;
    gap: var(--spacing-md);
}

.media_8a4f,
.lower_8fd5 {
    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) {
    .media_8a4f,
    .lower_8fd5 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .copper_a383 {
        gap: 0.5rem;
    }
}

.media_8a4f {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.media_8a4f:hover {
    background: var(--primary-purple);
    color: white;
}

.lower_8fd5 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.lower_8fd5:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.popup_fluid_ff2d {
    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%;
}

.popup_fluid_ff2d::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;
}

.popup_fluid_ff2d::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;
}

.surface_6623 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.summary_13e9 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.summary_13e9 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);
}

.popup_fluid_ff2d 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;
}

.highlight-current-68ac {
    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;
}

.highlight-current-68ac strong {
    font-weight: 700;
}

.summary-over-e027 {
    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);
}

.under-2e96 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.active-ae46 {
    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);
}

.active-ae46:hover {
    transform: translateY(-4px);
}

.panel-e4ba {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.stale_5bf5 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.carousel-lower-c11f {
    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;
}

.carousel-lower-c11f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.carousel-lower-c11f.narrow-b7d9 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.menu-e6f5 {
    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);
}

.menu-e6f5:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.top-cc72 {
    padding: 3rem 1.25rem;
    background: white;
}

.input-middle-ca49 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.component_af5d {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.component_af5d:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.component_af5d img {
    margin-bottom: 1rem;
}

.first_9743 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.component_af5d h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.component_af5d 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 */
.section_glass_7f26 {
    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);
}

.gradient-fa1c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.message_5b00 {
    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);
}

.message_5b00 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.message_5b00 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.message_5b00 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.notification-00a5 {
    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
   ======================================== */

.sidebar_lite_d579 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.disabled-559a {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.widget_west_6053 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.header_top_4bbd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.table_b284 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.table_b284:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.table_b284.easy-fcfa {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.table_b284.easy-fcfa h3,
.table_b284.easy-fcfa p {
    color: white;
}

.pro_3678 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.table_b284 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.table_b284 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.under-9c56 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.under-9c56:hover {
    gap: 0.75rem;
}

.table_b284.easy-fcfa .under-9c56 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.under_4153 {
    padding: 4rem 1.25rem;
    background: white;
}

.tabs-7b61 {
    text-align: center;
    margin-bottom: 3rem;
}

.form-bff6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.thick-223d {
    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%;
}

.thick-223d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.photo_black_0ea1 {
    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);
}

.hover-e077 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.accent-9ab0 {
    padding: 1.5rem;
}

.accent-9ab0 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.heading_small_dade {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tertiary_98a0 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.notification_inner_be68,
.panel-focused-72df {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.notification_inner_be68 {
    background: #dcfce7;
    color: #166534;
}

.notification_inner_be68.thumbnail_bronze_a697 {
    background: #10b981;
    color: white;
}

.panel-focused-72df {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.panel-focused-72df.mini-8943 {
    background: #fee2e2;
    color: #991b1b;
}

.panel-focused-72df.yellow_a6b6 {
    background: #fef3c7;
    color: #92400e;
}

.panel-focused-72df.secondary_blue_8c40 {
    background: #dcfce7;
    color: #166534;
}

.fast_f5ef {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fast_f5ef strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.status_glass_72c9 {
    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);
}

.status_glass_72c9:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.panel_fluid_87ed {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.accent_dirty_28eb {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.easy_abd3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .easy_abd3 {
        grid-template-columns: 1fr 1fr;
    }
}

.fast-ee64 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.shade-effe h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-a95c {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.light-7178 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.input_over_4efe {
    font-size: 1rem;
    opacity: 0.9;
}

.shade-effe h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.soft_a7a6 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.soft_a7a6 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.soft_a7a6 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;
}

.soft_a7a6 li strong {
    color: var(--primary-purple);
}

.soft_a7a6 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.down-7d40 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.last_03ca {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.status-3e3a {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.last_03ca .stale_5bf5 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.component-first-0dba p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.motion_c2af {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.motion_c2af a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.text-f834 {
    padding: 4rem 1.25rem;
    background: white;
}

.medium_bf7c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .medium_bf7c {
        grid-template-columns: 1fr 1fr;
    }
}

.search-current-bb27 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.layout-3bf9 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.texture_6dd6 {
    margin-bottom: 1.5rem;
}

.selected-c06a {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gas-c4f9 {
    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);
}

.short_9e2c {
    white-space: nowrap;
}

.module-4d20 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.border_blue_c33a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.upper-a81e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.upper-a81e:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.warm_da0a {
    font-size: 2rem;
    flex-shrink: 0;
}

.chip_over_1b3a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.chip_over_1b3a p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.column_complex_c6fc {
    margin-top: 3rem;
}

.column_complex_c6fc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent_3d12 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accent_3d12 thead {
    background: var(--primary-purple);
    color: white;
}

.accent_3d12 th,
.accent_3d12 td {
    padding: 1rem;
    text-align: left;
}

.accent_3d12 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.accent_3d12 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.accent_3d12 tbody tr:last-child {
    border-bottom: none;
}

.accent_3d12 tbody tr:hover {
    background: var(--light-bg);
}

.table-gas-6eb7 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.dropdown_1d54 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sort_2cc1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hover-f5cb {
    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);
}

.hover-f5cb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.hover-f5cb.info-ba82::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;
}

.input-f2b0 {
    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;
}

.media_rough_fecb {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.accent_1aeb h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.modal_slow_7215 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fresh_ec50 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.fresh_ec50 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.fresh_ec50 p:last-child {
    margin-bottom: 0;
}

.fresh_ec50 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.row_6bdc {
    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;
}

.highlight-1d35 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card-d604 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.card-d604 .panel-e4ba {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.card-d604 .stale_5bf5 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.accordion_d732 {
    padding: 4rem 1.25rem;
    background: white;
}

.list-d0e4 {
    max-width: 900px;
    margin: 0 auto;
}

.list-short-d9f4 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.list-short-d9f4:hover {
    border-color: var(--primary-purple);
}

.list-short-d9f4[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.list-short-d9f4 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;
}

.list-short-d9f4 summary::-webkit-details-marker {
    display: none;
}

.list-short-d9f4 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.list-short-d9f4[open] summary::after {
    transform: rotate(45deg);
}

.top-9035 {
    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);
    }
}

.top-9035 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.top-9035 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.top-9035 ul,
.top-9035 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.top-9035 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.top-9035 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.module-3eb2 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.new_433d {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.new_433d th,
.new_433d td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.new_433d th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.tooltip-4fae {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.left-5281 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.first-f382 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .first-f382 {
        flex-direction: column;
        text-align: center;
    }
}

.first-f382 img {
    flex-shrink: 0;
}

.container-dynamic-24ff {
    font-size: 4rem;
    flex-shrink: 0;
}

.hard-e368 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hard-e368 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.filter_last_b39b {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.chip_static_84ba {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.column-ee3d h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.column-ee3d > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tiny_11ab {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.banner_fixed_da36 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.smooth_343d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.accordion-under-9f09 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accordion-under-9f09 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.pressed-2488 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dirty-1931 {
    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);
}

.top_2f98 {
    list-style: none;
}

.top_2f98 li {
    margin-bottom: 0.75rem;
}

.top_2f98 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.top_2f98 a:hover {
    color: white;
}

.hovered_4650 {
    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;
}

.highlight_left_dc14 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight_left_dc14 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.mini-243d {
    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);
}

.highlight_9c64 {
    text-align: right;
}

@media (max-width: 767px) {
    .highlight_9c64 {
        text-align: center;
        width: 100%;
    }
}

.highlight_9c64 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.progress_ca39 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.blue-8732 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.top-cc72,
.section_glass_7f26,
.sidebar_lite_d579,
.under_4153,
.accent_dirty_28eb,
.text-f834,
.dropdown_1d54,
.accordion_d732,
.left-5281,
.chip_static_84ba {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .disabled-559a {
        font-size: 1.75rem;
    }
    
    .widget_west_6053 {
        font-size: 1rem;
    }
    
    .down-7d40 {
        flex-direction: column;
    }
    
    .medium_bf7c {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .form-bff6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thick-223d {
        max-width: 100%;
    }
    
    .hover-e077 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .blue-8732 {
        padding: 0 1rem;
    }
    
    .popup_fluid_ff2d {
        padding: 4rem 1rem 3rem;
    }
    
    .popup_fluid_ff2d h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .carousel-lower-c11f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .under-2e96 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .accent_3d12,
    .new_433d {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .input-middle-ca49 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .header_top_4bbd {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .sort_2cc1 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .popup_fluid_ff2d h1 {
        font-size: 1.5rem;
    }
    
    .under-2e96 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .active-ae46 {
        padding: 0.75rem;
    }
    
    .panel-e4ba {
        font-size: 1.5rem;
    }
    
    .input-middle-ca49 {
        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 */
.thick-223d:hover,
.table_b284:hover,
.hover-f5cb:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .under_4153,
    .dropdown_1d54,
    .accordion_d732 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.sort-eef2)
   ======================================== */

.focused-7aa1.highlight_advanced_eead {
    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;
}

.focused-7aa1.highlight_advanced_eead .surface-577f {
    color: #334155;
}

.focused-7aa1.highlight_advanced_eead .surface-577f:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.focused-7aa1.highlight_advanced_eead .surface-577f.fn-active-2354 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.focused-7aa1.highlight_advanced_eead .frame-ed8b {
    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);
}

.focused-7aa1.highlight_advanced_eead .frame-ed8b::before {
    border-bottom-color: #ffffff;
}

.focused-7aa1.highlight_advanced_eead .hidden_fixed_837a {
    color: #475569;
}

.focused-7aa1.highlight_advanced_eead .hidden_fixed_837a::before {
    background: #818cf8;
}

.focused-7aa1.highlight_advanced_eead .hidden_fixed_837a:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.focused-7aa1.highlight_advanced_eead .hidden_fixed_837a:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.focused-7aa1.highlight_advanced_eead .carousel-f7cf {
    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);
}

.focused-7aa1.highlight_advanced_eead .carousel-f7cf:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.focused-7aa1.highlight_advanced_eead .carousel-f7cf span {
    background: #475569;
    box-shadow: none;
}

.focused-7aa1.highlight_advanced_eead .carousel-f7cf.fn-active-2354 span:nth-child(1),
.focused-7aa1.highlight_advanced_eead .carousel-f7cf.fn-active-2354 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .focused-7aa1.highlight_advanced_eead {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .focused-7aa1.highlight_advanced_eead .steel-adf3 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .focused-7aa1.highlight_advanced_eead .steel-adf3 span {
        color: #334155 !important;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc {
        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);
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .surface-577f {
        color: #334155;
        text-shadow: none;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .surface-577f:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .surface-577f.narrow_21a1::after {
        color: #64748b;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .frame-ed8b {
        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) */
    .focused-7aa1.highlight_advanced_eead .alert_abfc .highlight-eb71.fn-active-2354 .frame-ed8b {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .hidden_fixed_837a {
        color: #475569;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .hidden_fixed_837a::before {
        color: #6366f1;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .hidden_fixed_837a:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .hidden_fixed_837a:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .focused-7aa1.highlight_advanced_eead .alert_abfc .hidden_fixed_837a:hover::before {
        color: #4f46e5;
    }
}

/* apk.container-3b93 — mesmo tema claro da home; blocos extras */
body.card_under_8049 {
    background: #f8f9fa;
    color: #2c3e50;
}

.card_under_8049 .secondary-a975 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.card_under_8049 .fluid-5e21 {
    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);
}

.card_under_8049 .fluid-5e21 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card_under_8049 .fluid-5e21 p:last-child {
    margin-bottom: 0;
}

.card_under_8049 .fluid-5e21 strong {
    color: var(--text-primary);
}

.card_under_8049 .title_04be {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.card_under_8049 .title_04be img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.current_a85a {
    background: #f8f9fa;
    color: #2c3e50;
}

.current_a85a .heading-3293 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.current_a85a .row_9d18 {
    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);
}

.current_a85a .row_9d18 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.current_a85a .row_9d18 p:last-child {
    margin-bottom: 0;
}

.current_a85a .row_9d18 strong {
    color: var(--text-primary);
}

.current_a85a .fast_f19c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.current_a85a .fast_f19c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.simple-c531 {
    background: #f8f9fa;
    color: #2c3e50;
}

.simple-c531 .outline-lower-2fcd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.simple-c531 .column_lower_9889 {
    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);
}

.simple-c531 .column_lower_9889 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.simple-c531 .column_lower_9889 p:last-child {
    margin-bottom: 0;
}

.simple-c531 .column_lower_9889 strong {
    color: var(--text-primary);
}

.simple-c531 .blue_9a22 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.simple-c531 .blue_9a22 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.link-gold-5a95 {
    background: #f8f9fa;
    color: #2c3e50;
}

.link-gold-5a95 .modal-fluid-4bdf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.link-gold-5a95 .block-left-6b56 {
    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);
}

.link-gold-5a95 .block-left-6b56 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-gold-5a95 .block-left-6b56 p:last-child {
    margin-bottom: 0;
}

.link-gold-5a95 .block-left-6b56 strong {
    color: var(--text-primary);
}

.link-gold-5a95 .large-11a6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.link-gold-5a95 .large-11a6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.caption_lower_b19c {
    background: #f8f9fa;
    color: #2c3e50;
}

.caption_lower_b19c .complex-c916 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.caption_lower_b19c .liquid-f64e {
    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);
}

.caption_lower_b19c .liquid-f64e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption_lower_b19c .liquid-f64e p:last-child {
    margin-bottom: 0;
}

.caption_lower_b19c .liquid-f64e strong {
    color: var(--text-primary);
}

.caption_lower_b19c .purple-9792 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.caption_lower_b19c .purple-9792 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.warm-677d {
    background: #f8f9fa;
    color: #2c3e50;
}

.warm-677d .photo_lower_3499 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.warm-677d .tiny_2177 {
    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);
}

.warm-677d .tiny_2177 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.warm-677d .tiny_2177 p:last-child {
    margin-bottom: 0;
}

.warm-677d .tiny_2177 strong {
    color: var(--text-primary);
}

.warm-677d .list-4fab {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.warm-677d .list-4fab img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.chip_8628 {
    background: #f8f9fa;
    color: #2c3e50;
}

.chip_8628 .focused_4695 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.chip_8628 .hard-5402 {
    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);
}

.chip_8628 .hard-5402 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.chip_8628 .hard-5402 p:last-child {
    margin-bottom: 0;
}

.chip_8628 .hard-5402 strong {
    color: var(--text-primary);
}

.chip_8628 .tooltip-paper-c326 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.chip_8628 .tooltip-paper-c326 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.breadcrumb_warm_a1ee {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb_warm_a1ee .message_b3d6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb_warm_a1ee .last-0d10 {
    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);
}

.breadcrumb_warm_a1ee .last-0d10 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_warm_a1ee .last-0d10 p:last-child {
    margin-bottom: 0;
}

.breadcrumb_warm_a1ee .last-0d10 strong {
    color: var(--text-primary);
}

.breadcrumb_warm_a1ee .nav_west_454a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.breadcrumb_warm_a1ee .nav_west_454a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.bronze_a2cc {
    background: #f8f9fa;
    color: #2c3e50;
}

.bronze_a2cc .search_609c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bronze_a2cc .message_cec5 {
    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);
}

.bronze_a2cc .message_cec5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bronze_a2cc .message_cec5 p:last-child {
    margin-bottom: 0;
}

.bronze_a2cc .message_cec5 strong {
    color: var(--text-primary);
}

.bronze_a2cc .gradient_9bf1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bronze_a2cc .gradient_9bf1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hover_blue_72fb {
    background: #f8f9fa;
    color: #2c3e50;
}

.hover_blue_72fb .accordion-6865 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hover_blue_72fb .red_4f2e {
    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);
}

.hover_blue_72fb .red_4f2e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hover_blue_72fb .red_4f2e p:last-child {
    margin-bottom: 0;
}

.hover_blue_72fb .red_4f2e strong {
    color: var(--text-primary);
}

.hover_blue_72fb .caption-0ba6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hover_blue_72fb .caption-0ba6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hover-stone-6d9b {
    background: #f8f9fa;
    color: #2c3e50;
}

.hover-stone-6d9b .background-023c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hover-stone-6d9b .module_upper_3587 {
    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);
}

.hover-stone-6d9b .module_upper_3587 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hover-stone-6d9b .module_upper_3587 p:last-child {
    margin-bottom: 0;
}

.hover-stone-6d9b .module_upper_3587 strong {
    color: var(--text-primary);
}

.hover-stone-6d9b .layout_west_fa5e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hover-stone-6d9b .layout_west_fa5e li {
    margin-bottom: 0.65rem;
}

.hover-stone-6d9b .layout_west_fa5e li:last-child {
    margin-bottom: 0;
}

.hover-stone-6d9b .hidden-lite-927e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hover-stone-6d9b .hidden-lite-927e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.middle-ac65 {
    background: #f8f9fa;
    color: #2c3e50;
}

.middle-ac65 .block-7cf3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.middle-ac65 .thumbnail_36a7 {
    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);
}

.middle-ac65 .thumbnail_36a7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle-ac65 .thumbnail_36a7 p:last-child {
    margin-bottom: 0;
}

.middle-ac65 .thumbnail_36a7 strong {
    color: var(--text-primary);
}

.middle-ac65 .white-5418 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle-ac65 .white-5418 li {
    margin-bottom: 0.65rem;
}

.middle-ac65 .white-5418 li:last-child {
    margin-bottom: 0;
}

.middle-ac65 .progress-narrow-4884 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.middle-ac65 .progress-narrow-4884 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.blue_c79a {
    background: #f8f9fa;
    color: #2c3e50;
}

.blue_c79a .action-02cb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.blue_c79a .first-c21f {
    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);
}

.blue_c79a .first-c21f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue_c79a .first-c21f p:last-child {
    margin-bottom: 0;
}

.blue_c79a .first-c21f strong {
    color: var(--text-primary);
}

.blue_c79a .footer_hard_fb17 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue_c79a .footer_hard_fb17 li {
    margin-bottom: 0.65rem;
}

.blue_c79a .footer_hard_fb17 li:last-child {
    margin-bottom: 0;
}

.blue_c79a .green_b7c0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.blue_c79a .green_b7c0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.table-copper-0204 {
    background: #f8f9fa;
    color: #2c3e50;
}

.table-copper-0204 .disabled-b7e2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table-copper-0204 .input_5762 {
    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);
}

.table-copper-0204 .input_5762 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-copper-0204 .input_5762 p:last-child {
    margin-bottom: 0;
}

.table-copper-0204 .input_5762 strong {
    color: var(--text-primary);
}

.table-copper-0204 .active_00cc {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-copper-0204 .active_00cc li {
    margin-bottom: 0.65rem;
}

.table-copper-0204 .active_00cc li:last-child {
    margin-bottom: 0;
}

body.easy-7d4e {
    background: #f8f9fa;
    color: #2c3e50;
}

.easy-7d4e .mask-up-e7df {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.easy-7d4e .card-brown-8ceb {
    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);
}

.easy-7d4e .card-brown-8ceb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.easy-7d4e .card-brown-8ceb p:last-child {
    margin-bottom: 0;
}

.easy-7d4e .card-brown-8ceb strong {
    color: var(--text-primary);
}

.easy-7d4e .input_5532 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.easy-7d4e .input_5532 li {
    margin-bottom: 0.65rem;
}

.easy-7d4e .input_5532 li:last-child {
    margin-bottom: 0;
}

.easy-7d4e .over-d2dc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.easy-7d4e .over-d2dc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.glass_e7ac {
    background: #f8f9fa;
    color: #2c3e50;
}

.glass_e7ac .video-outer-4600 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.glass_e7ac .motion-402f {
    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);
}

.glass_e7ac .motion-402f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.glass_e7ac .motion-402f p:last-child {
    margin-bottom: 0;
}

.glass_e7ac .motion-402f strong {
    color: var(--text-primary);
}

.glass_e7ac .out_a58d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.glass_e7ac .out_a58d li {
    margin-bottom: 0.65rem;
}

.glass_e7ac .out_a58d li:last-child {
    margin-bottom: 0;
}

.glass_e7ac .right_c01e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.glass_e7ac .right_c01e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.table-ec16 {
    background: #f8f9fa;
    color: #2c3e50;
}

.table-ec16 .hidden-orange-6f48 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table-ec16 .tertiary-403b {
    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);
}

.table-ec16 .tertiary-403b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-ec16 .tertiary-403b p:last-child {
    margin-bottom: 0;
}

.table-ec16 .tertiary-403b strong {
    color: var(--text-primary);
}

.table-ec16 .tabs_south_ad90 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-ec16 .tabs_south_ad90 li {
    margin-bottom: 0.65rem;
}

.table-ec16 .tabs_south_ad90 li:last-child {
    margin-bottom: 0;
}

.table-ec16 .widget_south_5dbd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.table-ec16 .widget_south_5dbd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.element-c23d {
    background: #f8f9fa;
    color: #2c3e50;
}

.element-c23d .filter_ded5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.element-c23d .simple-aa23 {
    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);
}

.element-c23d .simple-aa23 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element-c23d .simple-aa23 p:last-child {
    margin-bottom: 0;
}

.element-c23d .simple-aa23 strong {
    color: var(--text-primary);
}

.element-c23d .form_38ce {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element-c23d .form_38ce li {
    margin-bottom: 0.65rem;
}

.element-c23d .form_38ce li:last-child {
    margin-bottom: 0;
}

.element-c23d .section_copper_14d9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.element-c23d .section_copper_14d9 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: 8e2a */
.ghost-box-g4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
