/* 
 * 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.easy_467b) — fixed together on mobile */
.label-0c86 {
    width: 100%;
}

.grid-0274 {
    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) {
    .label-0c86 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .grid-0274 {
        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.logo-lite-ef21. Conta) stay reachable.
     */
    .fast-8267 .aside_bright_23e4 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .label-0c86 .fast-8267 > .aside_bright_23e4 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .label-0c86:has(.brown-710e.fn-show-a055) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .label-0c86:has(.brown-710e.fn-show-a055) .grid-0274 {
        flex-shrink: 0;
    }

    .label-0c86:has(.brown-710e.fn-show-a055) .fast-8267 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .label-0c86:has(.brown-710e.fn-show-a055) .fast-8267 > .aside_bright_23e4 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .label-0c86:has(.brown-710e.fn-show-a055) .main_tiny_0b4a {
        flex-shrink: 0;
    }

    .label-0c86:has(.brown-710e.fn-show-a055) .brown-710e.fn-show-a055 {
        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 */
    .fast-8267 .brown-710e .disabled-fd08.fn-active-a055 .up_3bf5 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .grid-0274 {
        position: sticky;
        top: 0;
    }
}

.label-0c86.table-orange-4b05,
.label-0c86.table-orange-4b05 .grid-0274 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.fresh_e2d8 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .fresh_e2d8 {
        padding: 0.75rem 0;
    }
}

.paper-93ca {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.input_pressed_fc1b img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .input_pressed_fc1b img {
        height: 35px;
    }
}

/* .fast-8267 / .card_center_b6f1 — inner pages (brown bar); index uses .warm_9016 below */

.fast-8267:not(.warm_9016) .card_center_b6f1.fn-active-a055 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.button_upper_afcc {
    display: flex;
    gap: var(--spacing-md);
}

.paper_1271,
.center-0291 {
    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) {
    .paper_1271,
    .center-0291 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .button_upper_afcc {
        gap: 0.5rem;
    }
}

.paper_1271 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.paper_1271:hover {
    background: var(--primary-purple);
    color: white;
}

.center-0291 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.center-0291:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.tooltip-in-ed08 {
    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%;
}

.tooltip-in-ed08::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;
}

.tooltip-in-ed08::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;
}

.heading_fresh_cf3d {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.search_6036 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.search_6036 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);
}

.tooltip-in-ed08 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;
}

.cool-3afe {
    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;
}

.cool-3afe strong {
    font-weight: 700;
}

.copper-7558 {
    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);
}

.center-662f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.container_af53 {
    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);
}

.container_af53:hover {
    transform: translateY(-4px);
}

.summary-bab2 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.glass_dc20 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.item-bronze-5b02 {
    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;
}

.item-bronze-5b02:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.item-bronze-5b02.advanced_b208 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.section_simple_8b93 {
    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);
}

.section_simple_8b93:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.info_2763 {
    padding: 3rem 1.25rem;
    background: white;
}

.secondary-566a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.small-75e4 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.small-75e4:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.small-75e4 img {
    margin-bottom: 1rem;
}

.media-e37a {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.small-75e4 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.small-75e4 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 */
.message_tall_4548 {
    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);
}

.top_de2e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fixed_9c9b {
    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);
}

.fixed_9c9b h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.fixed_9c9b p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.fixed_9c9b a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cool_79f0 {
    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
   ======================================== */

.up-f19d {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hovered_6b12 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.layout-c1c2 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.secondary-fd0b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.plasma-49df {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.plasma-49df:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.plasma-49df.column-d307 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.plasma-49df.column-d307 h3,
.plasma-49df.column-d307 p {
    color: white;
}

.summary-5dfd {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.plasma-49df h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.plasma-49df p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.text_012a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.text_012a:hover {
    gap: 0.75rem;
}

.plasma-49df.column-d307 .text_012a {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.box-cbff {
    padding: 4rem 1.25rem;
    background: white;
}

.active_2396 {
    text-align: center;
    margin-bottom: 3rem;
}

.red_bbf7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.wood_f5d0 {
    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%;
}

.wood_f5d0:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.lite-a6ee {
    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);
}

.element_next_ace2 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.column_25af {
    padding: 1.5rem;
}

.column_25af h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.backdrop_west_aa98 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.down-4f1a {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.photo_29e0,
.row-over-ec7e {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.photo_29e0 {
    background: #dcfce7;
    color: #166534;
}

.photo_29e0.section-middle-7e27 {
    background: #10b981;
    color: white;
}

.row-over-ec7e {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.row-over-ec7e.clean_c103 {
    background: #fee2e2;
    color: #991b1b;
}

.row-over-ec7e.narrow-0096 {
    background: #fef3c7;
    color: #92400e;
}

.row-over-ec7e.grid_over_d876 {
    background: #dcfce7;
    color: #166534;
}

.old-b2f3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.old-b2f3 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.iron_f11c {
    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);
}

.iron_f11c:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.article_fresh_a17c {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.inner_166e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.media_tall_9436 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .media_tall_9436 {
        grid-template-columns: 1fr 1fr;
    }
}

.filter-9e5e img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.texture_next_89c3 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.card-4637 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.footer_silver_1157 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hover-rough-412f {
    font-size: 1rem;
    opacity: 0.9;
}

.texture_next_89c3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-a854 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.form-a854 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.form-a854 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;
}

.form-a854 li strong {
    color: var(--primary-purple);
}

.form-a854 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.thumbnail-fast-c6a4 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.texture-small-2ab9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.description-b648 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.texture-small-2ab9 .glass_dc20 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.mini_a3c5 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.preview_fresh_0670 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.preview_fresh_0670 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.summary_light_c6d0 {
    padding: 4rem 1.25rem;
    background: white;
}

.panel_short_94eb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .panel_short_94eb {
        grid-template-columns: 1fr 1fr;
    }
}

.content-tall-c05e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content_in_4c89 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.card_cool_7761 {
    margin-bottom: 1.5rem;
}

.avatar-rough-9be9 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.primary_6f42 {
    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);
}

.south_56bc {
    white-space: nowrap;
}

.item-2253 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-next-af6d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.rough_ba0d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.rough_ba0d:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.mini-a99e {
    font-size: 2rem;
    flex-shrink: 0;
}

.blue-c2cd h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blue-c2cd p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pattern-7eb3 {
    margin-top: 3rem;
}

.pattern-7eb3 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.media_white_036c {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.media_white_036c thead {
    background: var(--primary-purple);
    color: white;
}

.media_white_036c th,
.media_white_036c td {
    padding: 1rem;
    text-align: left;
}

.media_white_036c th {
    font-weight: 700;
    font-size: 0.9rem;
}

.media_white_036c tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.media_white_036c tbody tr:last-child {
    border-bottom: none;
}

.media_white_036c tbody tr:hover {
    background: var(--light-bg);
}

.active_1887 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.active_ead9 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.popup-46f7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-663e {
    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);
}

.feature-663e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.feature-663e.thick_5300::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;
}

.sidebar_fd85 {
    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;
}

.section-16ad {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.white-f0e7 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.short_398b {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.last-2299 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.last-2299 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.last-2299 p:last-child {
    margin-bottom: 0;
}

.last-2299 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.preview_tiny_80cb {
    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;
}

.image_selected_a555 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gradient-17f7 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.gradient-17f7 .summary-bab2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.gradient-17f7 .glass_dc20 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.active-pressed-d153 {
    padding: 4rem 1.25rem;
    background: white;
}

.module_short_09a0 {
    max-width: 900px;
    margin: 0 auto;
}

.down-76fa {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.down-76fa:hover {
    border-color: var(--primary-purple);
}

.down-76fa[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.down-76fa 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;
}

.down-76fa summary::-webkit-details-marker {
    display: none;
}

.down-76fa summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.down-76fa[open] summary::after {
    transform: rotate(45deg);
}

.in-e7e9 {
    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);
    }
}

.in-e7e9 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.in-e7e9 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.in-e7e9 ul,
.in-e7e9 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.in-e7e9 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.in-e7e9 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.table-89bb {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.image-under-2c98 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.image-under-2c98 th,
.image-under-2c98 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.image-under-2c98 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.card-ecf4 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.pagination_1eee {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.header_efc2 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .header_efc2 {
        flex-direction: column;
        text-align: center;
    }
}

.header_efc2 img {
    flex-shrink: 0;
}

.text-wood-713e {
    font-size: 4rem;
    flex-shrink: 0;
}

.text_4469 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.text_4469 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.block_007c {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.complex-08d4 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.column-plasma-ea97 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.column-plasma-ea97 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gradient-0730 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.box_last_1403 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.border_cold_74f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tabs-bronze-66db h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tabs-bronze-66db p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.banner-small-cb50 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.light_002f {
    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);
}

.detail-right-678f {
    list-style: none;
}

.detail-right-678f li {
    margin-bottom: 0.75rem;
}

.detail-right-678f a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.detail-right-678f a:hover {
    color: white;
}

.form_pressed_fd4f {
    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;
}

.up_0c5f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.up_0c5f span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.mask-b1e8 {
    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);
}

.label-hovered-da5e {
    text-align: right;
}

@media (max-width: 767px) {
    .label-hovered-da5e {
        text-align: center;
        width: 100%;
    }
}

.label-hovered-da5e p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.dim_793c {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.aside_bright_23e4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.info_2763,
.message_tall_4548,
.up-f19d,
.box-cbff,
.inner_166e,
.summary_light_c6d0,
.active_ead9,
.active-pressed-d153,
.pagination_1eee,
.complex-08d4 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .hovered_6b12 {
        font-size: 1.75rem;
    }
    
    .layout-c1c2 {
        font-size: 1rem;
    }
    
    .thumbnail-fast-c6a4 {
        flex-direction: column;
    }
    
    .panel_short_94eb {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .red_bbf7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wood_f5d0 {
        max-width: 100%;
    }
    
    .element_next_ace2 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .aside_bright_23e4 {
        padding: 0 1rem;
    }
    
    .tooltip-in-ed08 {
        padding: 4rem 1rem 3rem;
    }
    
    .tooltip-in-ed08 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .item-bronze-5b02 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .center-662f {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .media_white_036c,
    .image-under-2c98 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .secondary-566a {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .secondary-fd0b {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .popup-46f7 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .tooltip-in-ed08 h1 {
        font-size: 1.5rem;
    }
    
    .center-662f {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .container_af53 {
        padding: 0.75rem;
    }
    
    .summary-bab2 {
        font-size: 1.5rem;
    }
    
    .secondary-566a {
        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 */
.wood_f5d0:hover,
.plasma-49df:hover,
.feature-663e:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .box-cbff,
    .active_ead9,
    .active-pressed-d153 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.easy_467b)
   ======================================== */

.fast-8267.warm_9016 {
    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;
}

.fast-8267.warm_9016 .card_center_b6f1 {
    color: #334155;
}

.fast-8267.warm_9016 .card_center_b6f1:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.fast-8267.warm_9016 .card_center_b6f1.fn-active-a055 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.fast-8267.warm_9016 .up_3bf5 {
    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);
}

.fast-8267.warm_9016 .up_3bf5::before {
    border-bottom-color: #ffffff;
}

.fast-8267.warm_9016 .pagination_advanced_b7bf {
    color: #475569;
}

.fast-8267.warm_9016 .pagination_advanced_b7bf::before {
    background: #818cf8;
}

.fast-8267.warm_9016 .pagination_advanced_b7bf:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.fast-8267.warm_9016 .pagination_advanced_b7bf:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.fast-8267.warm_9016 .small-b29c {
    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);
}

.fast-8267.warm_9016 .small-b29c:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.fast-8267.warm_9016 .small-b29c span {
    background: #475569;
    box-shadow: none;
}

.fast-8267.warm_9016 .small-b29c.fn-active-a055 span:nth-child(1),
.fast-8267.warm_9016 .small-b29c.fn-active-a055 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .fast-8267.warm_9016 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .fast-8267.warm_9016 .main_tiny_0b4a {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .fast-8267.warm_9016 .main_tiny_0b4a span {
        color: #334155 !important;
    }

    .fast-8267.warm_9016 .brown-710e {
        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);
    }

    .fast-8267.warm_9016 .brown-710e .card_center_b6f1 {
        color: #334155;
        text-shadow: none;
    }

    .fast-8267.warm_9016 .brown-710e .card_center_b6f1:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .fast-8267.warm_9016 .brown-710e .card_center_b6f1.advanced-5b67::after {
        color: #64748b;
    }

    .fast-8267.warm_9016 .brown-710e .up_3bf5 {
        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) */
    .fast-8267.warm_9016 .brown-710e .disabled-fd08.fn-active-a055 .up_3bf5 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .fast-8267.warm_9016 .brown-710e .pagination_advanced_b7bf {
        color: #475569;
    }

    .fast-8267.warm_9016 .brown-710e .pagination_advanced_b7bf::before {
        color: #6366f1;
    }

    .fast-8267.warm_9016 .brown-710e .pagination_advanced_b7bf:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .fast-8267.warm_9016 .brown-710e .pagination_advanced_b7bf:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .fast-8267.warm_9016 .brown-710e .pagination_advanced_b7bf:hover::before {
        color: #4f46e5;
    }
}

/* apk.purple-acb0 — mesmo tema claro da home; blocos extras */
body.surface_upper_dda9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.surface_upper_dda9 .active-7561 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.surface_upper_dda9 .menu_glass_2557 {
    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);
}

.surface_upper_dda9 .menu_glass_2557 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.surface_upper_dda9 .menu_glass_2557 p:last-child {
    margin-bottom: 0;
}

.surface_upper_dda9 .menu_glass_2557 strong {
    color: var(--text-primary);
}

.surface_upper_dda9 .breadcrumb_cbb7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.surface_upper_dda9 .breadcrumb_cbb7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paper_88d1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.paper_88d1 .component-24f5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paper_88d1 .overlay_out_4b39 {
    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);
}

.paper_88d1 .overlay_out_4b39 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paper_88d1 .overlay_out_4b39 p:last-child {
    margin-bottom: 0;
}

.paper_88d1 .overlay_out_4b39 strong {
    color: var(--text-primary);
}

.paper_88d1 .texture_middle_83a2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paper_88d1 .texture_middle_83a2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.preview_08f7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.preview_08f7 .media_7167 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.preview_08f7 .short-954e {
    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);
}

.preview_08f7 .short-954e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.preview_08f7 .short-954e p:last-child {
    margin-bottom: 0;
}

.preview_08f7 .short-954e strong {
    color: var(--text-primary);
}

.preview_08f7 .feature_simple_0981 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.preview_08f7 .feature_simple_0981 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_0230 {
    background: #f8f9fa;
    color: #2c3e50;
}

.link_0230 .light-f595 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.link_0230 .component_huge_0d8b {
    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_0230 .component_huge_0d8b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link_0230 .component_huge_0d8b p:last-child {
    margin-bottom: 0;
}

.link_0230 .component_huge_0d8b strong {
    color: var(--text-primary);
}

.link_0230 .dropdown-wide-7224 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.link_0230 .dropdown-wide-7224 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sidebar_short_3dc9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.sidebar_short_3dc9 .secondary_upper_b5da {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sidebar_short_3dc9 .tabs_36c2 {
    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);
}

.sidebar_short_3dc9 .tabs_36c2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar_short_3dc9 .tabs_36c2 p:last-child {
    margin-bottom: 0;
}

.sidebar_short_3dc9 .tabs_36c2 strong {
    color: var(--text-primary);
}

.sidebar_short_3dc9 .orange_c9dd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sidebar_short_3dc9 .orange_c9dd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hard-d4ec {
    background: #f8f9fa;
    color: #2c3e50;
}

.hard-d4ec .form_de33 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hard-d4ec .progress_warm_77e9 {
    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);
}

.hard-d4ec .progress_warm_77e9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hard-d4ec .progress_warm_77e9 p:last-child {
    margin-bottom: 0;
}

.hard-d4ec .progress_warm_77e9 strong {
    color: var(--text-primary);
}

.hard-d4ec .sidebar-medium-728e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hard-d4ec .sidebar-medium-728e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.media_full_683b {
    background: #f8f9fa;
    color: #2c3e50;
}

.media_full_683b .bright_cc3d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media_full_683b .green-032f {
    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);
}

.media_full_683b .green-032f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media_full_683b .green-032f p:last-child {
    margin-bottom: 0;
}

.media_full_683b .green-032f strong {
    color: var(--text-primary);
}

.media_full_683b .basic-ba68 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media_full_683b .basic-ba68 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paper_a508 {
    background: #f8f9fa;
    color: #2c3e50;
}

.paper_a508 .accent_soft_7df0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paper_a508 .frame-green-33b1 {
    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);
}

.paper_a508 .frame-green-33b1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paper_a508 .frame-green-33b1 p:last-child {
    margin-bottom: 0;
}

.paper_a508 .frame-green-33b1 strong {
    color: var(--text-primary);
}

.paper_a508 .form-small-1e24 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paper_a508 .form-small-1e24 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.label-5dac {
    background: #f8f9fa;
    color: #2c3e50;
}

.label-5dac .brown_5db1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label-5dac .dim-ae64 {
    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);
}

.label-5dac .dim-ae64 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-5dac .dim-ae64 p:last-child {
    margin-bottom: 0;
}

.label-5dac .dim-ae64 strong {
    color: var(--text-primary);
}

.label-5dac .right_04ba {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label-5dac .right_04ba 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-bright-d739 {
    background: #f8f9fa;
    color: #2c3e50;
}

.feature-bright-d739 .hero-24d5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.feature-bright-d739 .avatar_blue_cc7d {
    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-bright-d739 .avatar_blue_cc7d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-bright-d739 .avatar_blue_cc7d p:last-child {
    margin-bottom: 0;
}

.feature-bright-d739 .avatar_blue_cc7d strong {
    color: var(--text-primary);
}

.feature-bright-d739 .warm_0c97 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.feature-bright-d739 .warm_0c97 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.icon-solid-ddf7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.icon-solid-ddf7 .basic-6d24 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.icon-solid-ddf7 .prev_9287 {
    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);
}

.icon-solid-ddf7 .prev_9287 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.icon-solid-ddf7 .prev_9287 p:last-child {
    margin-bottom: 0;
}

.icon-solid-ddf7 .prev_9287 strong {
    color: var(--text-primary);
}

.icon-solid-ddf7 .icon-6708 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.icon-solid-ddf7 .icon-6708 li {
    margin-bottom: 0.65rem;
}

.icon-solid-ddf7 .icon-6708 li:last-child {
    margin-bottom: 0;
}

.icon-solid-ddf7 .search_fast_3999 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.icon-solid-ddf7 .search_fast_3999 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.static-d93a {
    background: #f8f9fa;
    color: #2c3e50;
}

.static-d93a .avatar-focused-a23e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.static-d93a .section_44b1 {
    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);
}

.static-d93a .section_44b1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-d93a .section_44b1 p:last-child {
    margin-bottom: 0;
}

.static-d93a .section_44b1 strong {
    color: var(--text-primary);
}

.static-d93a .list_c060 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-d93a .list_c060 li {
    margin-bottom: 0.65rem;
}

.static-d93a .list_c060 li:last-child {
    margin-bottom: 0;
}

.static-d93a .text-ee79 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.static-d93a .text-ee79 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.bottom-9bb8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.bottom-9bb8 .feature-west-ffd4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bottom-9bb8 .search_631e {
    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);
}

.bottom-9bb8 .search_631e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bottom-9bb8 .search_631e p:last-child {
    margin-bottom: 0;
}

.bottom-9bb8 .search_631e strong {
    color: var(--text-primary);
}

.bottom-9bb8 .gas-87b4 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bottom-9bb8 .gas-87b4 li {
    margin-bottom: 0.65rem;
}

.bottom-9bb8 .gas-87b4 li:last-child {
    margin-bottom: 0;
}

.bottom-9bb8 .modal_dark_633e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bottom-9bb8 .modal_dark_633e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.static-db63 {
    background: #f8f9fa;
    color: #2c3e50;
}

.static-db63 .active-37fc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.static-db63 .basic-d50f {
    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);
}

.static-db63 .basic-d50f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-db63 .basic-d50f p:last-child {
    margin-bottom: 0;
}

.static-db63 .basic-d50f strong {
    color: var(--text-primary);
}

.static-db63 .photo_08f6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-db63 .photo_08f6 li {
    margin-bottom: 0.65rem;
}

.static-db63 .photo_08f6 li:last-child {
    margin-bottom: 0;
}

body.accent_advanced_44bc {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent_advanced_44bc .texture_2c36 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent_advanced_44bc .glass-0f63 {
    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);
}

.accent_advanced_44bc .glass-0f63 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_advanced_44bc .glass-0f63 p:last-child {
    margin-bottom: 0;
}

.accent_advanced_44bc .glass-0f63 strong {
    color: var(--text-primary);
}

.accent_advanced_44bc .steel_df20 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_advanced_44bc .steel_df20 li {
    margin-bottom: 0.65rem;
}

.accent_advanced_44bc .steel_df20 li:last-child {
    margin-bottom: 0;
}

.accent_advanced_44bc .preview-wide-245a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent_advanced_44bc .preview-wide-245a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.heading-113e {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading-113e .light_1893 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading-113e .section-small-e5f1 {
    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);
}

.heading-113e .section-small-e5f1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-113e .section-small-e5f1 p:last-child {
    margin-bottom: 0;
}

.heading-113e .section-small-e5f1 strong {
    color: var(--text-primary);
}

.heading-113e .tooltip_light_56be {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-113e .tooltip_light_56be li {
    margin-bottom: 0.65rem;
}

.heading-113e .tooltip_light_56be li:last-child {
    margin-bottom: 0;
}

.heading-113e .brown-236a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading-113e .brown-236a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.background-6229 {
    background: #f8f9fa;
    color: #2c3e50;
}

.background-6229 .modal_2c69 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.background-6229 .description-mini-0cdd {
    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);
}

.background-6229 .description-mini-0cdd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-6229 .description-mini-0cdd p:last-child {
    margin-bottom: 0;
}

.background-6229 .description-mini-0cdd strong {
    color: var(--text-primary);
}

.background-6229 .item_bright_ee8b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-6229 .item_bright_ee8b li {
    margin-bottom: 0.65rem;
}

.background-6229 .item_bright_ee8b li:last-child {
    margin-bottom: 0;
}

.background-6229 .short_a50d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.background-6229 .short_a50d 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-1253 {
    background: #f8f9fa;
    color: #2c3e50;
}

.element-1253 .media_f1f5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.element-1253 .tabs-4dfb {
    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-1253 .tabs-4dfb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element-1253 .tabs-4dfb p:last-child {
    margin-bottom: 0;
}

.element-1253 .tabs-4dfb strong {
    color: var(--text-primary);
}

.element-1253 .menu-large-e843 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element-1253 .menu-large-e843 li {
    margin-bottom: 0.65rem;
}

.element-1253 .menu-large-e843 li:last-child {
    margin-bottom: 0;
}

.element-1253 .red_5bfa {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.element-1253 .red_5bfa 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: 0fa9 */
.phantom-card-u8 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
