/* 
 * 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.advanced-572e) — fixed together on mobile */
.out-5eb2 {
    width: 100%;
}

.link-c5a4 {
    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) {
    .out-5eb2 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .link-c5a4 {
        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.link_gold_238a. Conta) stay reachable.
     */
    .chip-center-bb3e .mask-48be {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .out-5eb2 .chip-center-bb3e > .mask-48be {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .out-5eb2:has(.slider_tall_0618.fn-show-a7f3) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .out-5eb2:has(.slider_tall_0618.fn-show-a7f3) .link-c5a4 {
        flex-shrink: 0;
    }

    .out-5eb2:has(.slider_tall_0618.fn-show-a7f3) .chip-center-bb3e {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .out-5eb2:has(.slider_tall_0618.fn-show-a7f3) .chip-center-bb3e > .mask-48be {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .out-5eb2:has(.slider_tall_0618.fn-show-a7f3) .dynamic-31f3 {
        flex-shrink: 0;
    }

    .out-5eb2:has(.slider_tall_0618.fn-show-a7f3) .slider_tall_0618.fn-show-a7f3 {
        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 */
    .chip-center-bb3e .slider_tall_0618 .layout-564a.fn-active-a7f3 .block-4069 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .link-c5a4 {
        position: sticky;
        top: 0;
    }
}

.out-5eb2.backdrop_e85f,
.out-5eb2.backdrop_e85f .link-c5a4 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hard_14e0 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .hard_14e0 {
        padding: 0.75rem 0;
    }
}

.accent-easy-1761 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.simple-8972 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .simple-8972 img {
        height: 35px;
    }
}

/* .chip-center-bb3e / .tiny_2597 — inner pages (brown bar); index uses .link_a3d4 below */

.chip-center-bb3e:not(.link_a3d4) .tiny_2597.fn-active-a7f3 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.background-c504 {
    display: flex;
    gap: var(--spacing-md);
}

.grid_complex_9cc6,
.huge_c954 {
    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) {
    .grid_complex_9cc6,
    .huge_c954 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .background-c504 {
        gap: 0.5rem;
    }
}

.grid_complex_9cc6 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.grid_complex_9cc6:hover {
    background: var(--primary-purple);
    color: white;
}

.huge_c954 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.huge_c954:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.preview-06d4 {
    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%;
}

.preview-06d4::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;
}

.preview-06d4::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;
}

.avatar_1761 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.tertiary-10d3 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.tertiary-10d3 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);
}

.preview-06d4 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;
}

.panel-dirty-9e4f {
    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;
}

.panel-dirty-9e4f strong {
    font-weight: 700;
}

.basic-173b {
    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);
}

.nav_9a73 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.paragraph_4b8d {
    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);
}

.paragraph_4b8d:hover {
    transform: translateY(-4px);
}

.pagination_inner_96ae {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.tiny_ec4a {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.bright-340e {
    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;
}

.bright-340e:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.bright-340e.article-edc1 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.photo-1d3e {
    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);
}

.photo-1d3e:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.tag-hard-24a8 {
    padding: 3rem 1.25rem;
    background: white;
}

.progress_1805 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.focus-copper-450c {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.focus-copper-450c:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.focus-copper-450c img {
    margin-bottom: 1rem;
}

.nav_brown_cd0b {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.focus-copper-450c h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.focus-copper-450c 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 */
.disabled-purple-e708 {
    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);
}

.content_lite_9523 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.description-dim-5bb9 {
    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);
}

.description-dim-5bb9 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.description-dim-5bb9 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.description-dim-5bb9 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.column-liquid-c539 {
    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
   ======================================== */

.prev-cb7e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.paragraph_slow_f0bc {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.banner_first_43d6 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.tooltip_bf97 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.status-4b3f {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.status-4b3f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.status-4b3f.gas_d1c8 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.status-4b3f.gas_d1c8 h3,
.status-4b3f.gas_d1c8 p {
    color: white;
}

.highlight_6932 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status-4b3f h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.status-4b3f p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.box-top-5c6c {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.box-top-5c6c:hover {
    gap: 0.75rem;
}

.status-4b3f.gas_d1c8 .box-top-5c6c {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.old-25a1 {
    padding: 4rem 1.25rem;
    background: white;
}

.tag_dark_adf5 {
    text-align: center;
    margin-bottom: 3rem;
}

.text_active_d802 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.row-7e73 {
    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%;
}

.row-7e73:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.steel-7ed2 {
    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);
}

.small_8f9f {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.description-new-7a40 {
    padding: 1.5rem;
}

.description-new-7a40 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.video-ce85 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.easy-ac23 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pattern_35b5,
.old-7cbd {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.pattern_35b5 {
    background: #dcfce7;
    color: #166534;
}

.pattern_35b5.notice-full-214e {
    background: #10b981;
    color: white;
}

.old-7cbd {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.old-7cbd.tabs_bb37 {
    background: #fee2e2;
    color: #991b1b;
}

.old-7cbd.soft_5770 {
    background: #fef3c7;
    color: #92400e;
}

.old-7cbd.lite-37df {
    background: #dcfce7;
    color: #166534;
}

.notice-72f4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notice-72f4 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.tag-6acc {
    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);
}

.tag-6acc:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.accordion_light_3887 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.table_mini_c764 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.media_ce5d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .media_ce5d {
        grid-template-columns: 1fr 1fr;
    }
}

.dirty-018d img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.status_in_696b h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.filter-active-fe78 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.hover-simple-ea6b {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.under_85d3 {
    font-size: 1rem;
    opacity: 0.9;
}

.status_in_696b h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.disabled-ca2f {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.disabled-ca2f li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.disabled-ca2f 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;
}

.disabled-ca2f li strong {
    color: var(--primary-purple);
}

.disabled-ca2f li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.pagination-9896 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.pressed_d760 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.shadow-db90 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.pressed_d760 .tiny_ec4a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.input-hard-5fc4 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.carousel-e743 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.carousel-e743 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.video-b2ad {
    padding: 4rem 1.25rem;
    background: white;
}

.narrow_4486 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .narrow_4486 {
        grid-template-columns: 1fr 1fr;
    }
}

.notice_small_d4b2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content_3394 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.lower_ba88 {
    margin-bottom: 1.5rem;
}

.avatar_8814 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.link-dynamic-9638 {
    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);
}

.module_center_02d3 {
    white-space: nowrap;
}

.component-f74e {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.shadow-a2a8 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.media-medium-e4ac {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.media-medium-e4ac:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.pagination-5170 {
    font-size: 2rem;
    flex-shrink: 0;
}

.black_1630 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.black_1630 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer_selected_cc24 {
    margin-top: 3rem;
}

.footer_selected_cc24 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.notice_e93b {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.notice_e93b thead {
    background: var(--primary-purple);
    color: white;
}

.notice_e93b th,
.notice_e93b td {
    padding: 1rem;
    text-align: left;
}

.notice_e93b th {
    font-weight: 700;
    font-size: 0.9rem;
}

.notice_e93b tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.notice_e93b tbody tr:last-child {
    border-bottom: none;
}

.notice_e93b tbody tr:hover {
    background: var(--light-bg);
}

.slow-69ca {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.easy_84f8 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.layout_2949 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.media-c2ec {
    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);
}

.media-c2ec:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.media-c2ec.photo-a1f1::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;
}

.hero_cold_c175 {
    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;
}

.dirty_5b38 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.logo_844e h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.box-fb66 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.chip_hovered_4855 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.chip_hovered_4855 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.chip_hovered_4855 p:last-child {
    margin-bottom: 0;
}

.chip_hovered_4855 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.modal_de2b {
    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;
}

.gallery-aa39 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.shade-8ea1 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.shade-8ea1 .pagination_inner_96ae {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.shade-8ea1 .tiny_ec4a {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.header-center-e7ac {
    padding: 4rem 1.25rem;
    background: white;
}

.first_4dd8 {
    max-width: 900px;
    margin: 0 auto;
}

.footer-black-c555 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.footer-black-c555:hover {
    border-color: var(--primary-purple);
}

.footer-black-c555[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.footer-black-c555 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;
}

.footer-black-c555 summary::-webkit-details-marker {
    display: none;
}

.footer-black-c555 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.footer-black-c555[open] summary::after {
    transform: rotate(45deg);
}

.texture_ae91 {
    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);
    }
}

.texture_ae91 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.texture_ae91 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.texture_ae91 ul,
.texture_ae91 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.texture_ae91 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.texture_ae91 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.modal_blue_97d0 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.hidden-thick-b1f0 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hidden-thick-b1f0 th,
.hidden-thick-b1f0 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.hidden-thick-b1f0 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.gradient-orange-2d37 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.button-faa0 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.text_3bf0 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .text_3bf0 {
        flex-direction: column;
        text-align: center;
    }
}

.text_3bf0 img {
    flex-shrink: 0;
}

.hovered-7527 {
    font-size: 4rem;
    flex-shrink: 0;
}

.silver-2589 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.silver-2589 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.block-ae9c {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.outline_green_9ece {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.notification_west_1604 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.notification_west_1604 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.short_090a {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.hidden_silver_40ac {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.media_lite_559c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.right-8401 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.right-8401 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.icon-last-69f0 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.aside-full-e03c {
    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);
}

.out_376f {
    list-style: none;
}

.out_376f li {
    margin-bottom: 0.75rem;
}

.out_376f a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.out_376f a:hover {
    color: white;
}

.hidden_black_bceb {
    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;
}

.container_e0fa {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.container_e0fa span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.advanced-c768 {
    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);
}

.table_15b4 {
    text-align: right;
}

@media (max-width: 767px) {
    .table_15b4 {
        text-align: center;
        width: 100%;
    }
}

.table_15b4 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.block-complex-504e {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.mask-48be {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.tag-hard-24a8,
.disabled-purple-e708,
.prev-cb7e,
.old-25a1,
.table_mini_c764,
.video-b2ad,
.easy_84f8,
.header-center-e7ac,
.button-faa0,
.outline_green_9ece {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .paragraph_slow_f0bc {
        font-size: 1.75rem;
    }
    
    .banner_first_43d6 {
        font-size: 1rem;
    }
    
    .pagination-9896 {
        flex-direction: column;
    }
    
    .narrow_4486 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .text_active_d802 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .row-7e73 {
        max-width: 100%;
    }
    
    .small_8f9f {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .mask-48be {
        padding: 0 1rem;
    }
    
    .preview-06d4 {
        padding: 4rem 1rem 3rem;
    }
    
    .preview-06d4 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .bright-340e {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav_9a73 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .notice_e93b,
    .hidden-thick-b1f0 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .progress_1805 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .tooltip_bf97 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .layout_2949 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .preview-06d4 h1 {
        font-size: 1.5rem;
    }
    
    .nav_9a73 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .paragraph_4b8d {
        padding: 0.75rem;
    }
    
    .pagination_inner_96ae {
        font-size: 1.5rem;
    }
    
    .progress_1805 {
        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 */
.row-7e73:hover,
.status-4b3f:hover,
.media-c2ec:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .old-25a1,
    .easy_84f8,
    .header-center-e7ac {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.advanced-572e)
   ======================================== */

.chip-center-bb3e.link_a3d4 {
    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;
}

.chip-center-bb3e.link_a3d4 .tiny_2597 {
    color: #334155;
}

.chip-center-bb3e.link_a3d4 .tiny_2597:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.chip-center-bb3e.link_a3d4 .tiny_2597.fn-active-a7f3 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.chip-center-bb3e.link_a3d4 .block-4069 {
    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);
}

.chip-center-bb3e.link_a3d4 .block-4069::before {
    border-bottom-color: #ffffff;
}

.chip-center-bb3e.link_a3d4 .active_b7f3 {
    color: #475569;
}

.chip-center-bb3e.link_a3d4 .active_b7f3::before {
    background: #818cf8;
}

.chip-center-bb3e.link_a3d4 .active_b7f3:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.chip-center-bb3e.link_a3d4 .active_b7f3:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.chip-center-bb3e.link_a3d4 .clean-3607 {
    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);
}

.chip-center-bb3e.link_a3d4 .clean-3607:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.chip-center-bb3e.link_a3d4 .clean-3607 span {
    background: #475569;
    box-shadow: none;
}

.chip-center-bb3e.link_a3d4 .clean-3607.fn-active-a7f3 span:nth-child(1),
.chip-center-bb3e.link_a3d4 .clean-3607.fn-active-a7f3 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .chip-center-bb3e.link_a3d4 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .chip-center-bb3e.link_a3d4 .dynamic-31f3 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .chip-center-bb3e.link_a3d4 .dynamic-31f3 span {
        color: #334155 !important;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 {
        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);
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .tiny_2597 {
        color: #334155;
        text-shadow: none;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .tiny_2597:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .tiny_2597.pattern-ac60::after {
        color: #64748b;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .block-4069 {
        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) */
    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .layout-564a.fn-active-a7f3 .block-4069 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .active_b7f3 {
        color: #475569;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .active_b7f3::before {
        color: #6366f1;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .active_b7f3:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .active_b7f3:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .chip-center-bb3e.link_a3d4 .slider_tall_0618 .active_b7f3:hover::before {
        color: #4f46e5;
    }
}

/* apk.heading-0f75 — mesmo tema claro da home; blocos extras */
body.avatar-e712 {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar-e712 .label-dark-825d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar-e712 .form-rough-09d2 {
    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);
}

.avatar-e712 .form-rough-09d2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar-e712 .form-rough-09d2 p:last-child {
    margin-bottom: 0;
}

.avatar-e712 .form-rough-09d2 strong {
    color: var(--text-primary);
}

.avatar-e712 .full_84ce {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar-e712 .full_84ce img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outline_last_4102 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outline_last_4102 .wrapper_fab3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outline_last_4102 .table-gas-495c {
    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);
}

.outline_last_4102 .table-gas-495c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outline_last_4102 .table-gas-495c p:last-child {
    margin-bottom: 0;
}

.outline_last_4102 .table-gas-495c strong {
    color: var(--text-primary);
}

.outline_last_4102 .overlay-rough-48ab {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outline_last_4102 .overlay-rough-48ab img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.filter_f7ca {
    background: #f8f9fa;
    color: #2c3e50;
}

.filter_f7ca .grid-0d3c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.filter_f7ca .advanced_06e3 {
    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);
}

.filter_f7ca .advanced_06e3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.filter_f7ca .advanced_06e3 p:last-child {
    margin-bottom: 0;
}

.filter_f7ca .advanced_06e3 strong {
    color: var(--text-primary);
}

.filter_f7ca .surface_71c1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.filter_f7ca .surface_71c1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.avatar_505b {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar_505b .video_selected_068d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar_505b .pink-e618 {
    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);
}

.avatar_505b .pink-e618 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar_505b .pink-e618 p:last-child {
    margin-bottom: 0;
}

.avatar_505b .pink-e618 strong {
    color: var(--text-primary);
}

.avatar_505b .left_9741 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar_505b .left_9741 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tall_a9c1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tall_a9c1 .frame_c548 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tall_a9c1 .description-top-cb7b {
    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);
}

.tall_a9c1 .description-top-cb7b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tall_a9c1 .description-top-cb7b p:last-child {
    margin-bottom: 0;
}

.tall_a9c1 .description-top-cb7b strong {
    color: var(--text-primary);
}

.tall_a9c1 .status-431b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tall_a9c1 .status-431b 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-center-d2f5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.dropdown-center-d2f5 .prev-428a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dropdown-center-d2f5 .smooth_d332 {
    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-center-d2f5 .smooth_d332 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dropdown-center-d2f5 .smooth_d332 p:last-child {
    margin-bottom: 0;
}

.dropdown-center-d2f5 .smooth_d332 strong {
    color: var(--text-primary);
}

.dropdown-center-d2f5 .frame_8525 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dropdown-center-d2f5 .frame_8525 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.badge_e4ad {
    background: #f8f9fa;
    color: #2c3e50;
}

.badge_e4ad .last_ed4c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.badge_e4ad .highlight-83f2 {
    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);
}

.badge_e4ad .highlight-83f2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge_e4ad .highlight-83f2 p:last-child {
    margin-bottom: 0;
}

.badge_e4ad .highlight-83f2 strong {
    color: var(--text-primary);
}

.badge_e4ad .container_current_0078 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.badge_e4ad .container_current_0078 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.progress-e858 {
    background: #f8f9fa;
    color: #2c3e50;
}

.progress-e858 .tooltip_upper_6a81 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.progress-e858 .in-7970 {
    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);
}

.progress-e858 .in-7970 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.progress-e858 .in-7970 p:last-child {
    margin-bottom: 0;
}

.progress-e858 .in-7970 strong {
    color: var(--text-primary);
}

.progress-e858 .focused-7fdc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.progress-e858 .focused-7fdc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.card-ebb0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.card-ebb0 .row_silver_cef2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.card-ebb0 .tabs-west-5ad2 {
    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-ebb0 .tabs-west-5ad2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card-ebb0 .tabs-west-5ad2 p:last-child {
    margin-bottom: 0;
}

.card-ebb0 .tabs-west-5ad2 strong {
    color: var(--text-primary);
}

.card-ebb0 .outline_soft_7fb2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.card-ebb0 .outline_soft_7fb2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.secondary-ff0a {
    background: #f8f9fa;
    color: #2c3e50;
}

.secondary-ff0a .new_8866 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.secondary-ff0a .warm-18d4 {
    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);
}

.secondary-ff0a .warm-18d4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary-ff0a .warm-18d4 p:last-child {
    margin-bottom: 0;
}

.secondary-ff0a .warm-18d4 strong {
    color: var(--text-primary);
}

.secondary-ff0a .icon-out-cbed {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.secondary-ff0a .icon-out-cbed 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_06c2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.table_06c2 .menu_bc08 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table_06c2 .surface-67d1 {
    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_06c2 .surface-67d1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table_06c2 .surface-67d1 p:last-child {
    margin-bottom: 0;
}

.table_06c2 .surface-67d1 strong {
    color: var(--text-primary);
}

.table_06c2 .pro-9f87 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table_06c2 .pro-9f87 li {
    margin-bottom: 0.65rem;
}

.table_06c2 .pro-9f87 li:last-child {
    margin-bottom: 0;
}

.table_06c2 .mask_dirty_0413 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.table_06c2 .mask_dirty_0413 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.motion-84e1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.motion-84e1 .info_yellow_0298 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.motion-84e1 .paper-457d {
    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);
}

.motion-84e1 .paper-457d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.motion-84e1 .paper-457d p:last-child {
    margin-bottom: 0;
}

.motion-84e1 .paper-457d strong {
    color: var(--text-primary);
}

.motion-84e1 .iron_2886 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.motion-84e1 .iron_2886 li {
    margin-bottom: 0.65rem;
}

.motion-84e1 .iron_2886 li:last-child {
    margin-bottom: 0;
}

.motion-84e1 .hidden-e40a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.motion-84e1 .hidden-e40a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focus-f7b0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.focus-f7b0 .form_3135 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focus-f7b0 .pagination-dad1 {
    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);
}

.focus-f7b0 .pagination-dad1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-f7b0 .pagination-dad1 p:last-child {
    margin-bottom: 0;
}

.focus-f7b0 .pagination-dad1 strong {
    color: var(--text-primary);
}

.focus-f7b0 .paragraph_stone_97f9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-f7b0 .paragraph_stone_97f9 li {
    margin-bottom: 0.65rem;
}

.focus-f7b0 .paragraph_stone_97f9 li:last-child {
    margin-bottom: 0;
}

.focus-f7b0 .border-lite-3e81 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focus-f7b0 .border-lite-3e81 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.south_c934 {
    background: #f8f9fa;
    color: #2c3e50;
}

.south_c934 .over-f53d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.south_c934 .tag_narrow_1e62 {
    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);
}

.south_c934 .tag_narrow_1e62 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south_c934 .tag_narrow_1e62 p:last-child {
    margin-bottom: 0;
}

.south_c934 .tag_narrow_1e62 strong {
    color: var(--text-primary);
}

.south_c934 .message_84b6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south_c934 .message_84b6 li {
    margin-bottom: 0.65rem;
}

.south_c934 .message_84b6 li:last-child {
    margin-bottom: 0;
}

body.table-4c42 {
    background: #f8f9fa;
    color: #2c3e50;
}

.table-4c42 .paragraph_5bbd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table-4c42 .pattern_medium_cd0f {
    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-4c42 .pattern_medium_cd0f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-4c42 .pattern_medium_cd0f p:last-child {
    margin-bottom: 0;
}

.table-4c42 .pattern_medium_cd0f strong {
    color: var(--text-primary);
}

.table-4c42 .notification-brown-6da9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-4c42 .notification-brown-6da9 li {
    margin-bottom: 0.65rem;
}

.table-4c42 .notification-brown-6da9 li:last-child {
    margin-bottom: 0;
}

.table-4c42 .tall-80de {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.table-4c42 .tall-80de img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.texture-5e57 {
    background: #f8f9fa;
    color: #2c3e50;
}

.texture-5e57 .component-1a89 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.texture-5e57 .description-fresh-7279 {
    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);
}

.texture-5e57 .description-fresh-7279 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.texture-5e57 .description-fresh-7279 p:last-child {
    margin-bottom: 0;
}

.texture-5e57 .description-fresh-7279 strong {
    color: var(--text-primary);
}

.texture-5e57 .wrapper_ec04 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.texture-5e57 .wrapper_ec04 li {
    margin-bottom: 0.65rem;
}

.texture-5e57 .wrapper_ec04 li:last-child {
    margin-bottom: 0;
}

.texture-5e57 .last-84f9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.texture-5e57 .last-84f9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.light_8948 {
    background: #f8f9fa;
    color: #2c3e50;
}

.light_8948 .blue_9f42 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.light_8948 .cool_5d7a {
    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);
}

.light_8948 .cool_5d7a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.light_8948 .cool_5d7a p:last-child {
    margin-bottom: 0;
}

.light_8948 .cool_5d7a strong {
    color: var(--text-primary);
}

.light_8948 .summary-4358 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.light_8948 .summary-4358 li {
    margin-bottom: 0.65rem;
}

.light_8948 .summary-4358 li:last-child {
    margin-bottom: 0;
}

.light_8948 .next-7523 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.light_8948 .next-7523 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.feature_red_09e4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.feature_red_09e4 .status-cfeb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.feature_red_09e4 .logo_5d0a {
    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);
}

.feature_red_09e4 .logo_5d0a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature_red_09e4 .logo_5d0a p:last-child {
    margin-bottom: 0;
}

.feature_red_09e4 .logo_5d0a strong {
    color: var(--text-primary);
}

.feature_red_09e4 .photo_f35f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature_red_09e4 .photo_f35f li {
    margin-bottom: 0.65rem;
}

.feature_red_09e4 .photo_f35f li:last-child {
    margin-bottom: 0;
}

.feature_red_09e4 .east-44ce {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.feature_red_09e4 .east-44ce 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: 10e7 */
.ghost-box-e6 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
