/* 
 * 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.bright_cc9f) — fixed together on mobile */
.gallery_6329 {
    width: 100%;
}

.wrapper_outer_52c4 {
    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) {
    .gallery_6329 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .wrapper_outer_52c4 {
        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.content_2d28. Conta) stay reachable.
     */
    .column_soft_c811 .breadcrumb_under_93be {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .gallery_6329 .column_soft_c811 > .breadcrumb_under_93be {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .gallery_6329:has(.brown_50f2.fn-show-b0f8) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .gallery_6329:has(.brown_50f2.fn-show-b0f8) .wrapper_outer_52c4 {
        flex-shrink: 0;
    }

    .gallery_6329:has(.brown_50f2.fn-show-b0f8) .column_soft_c811 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .gallery_6329:has(.brown_50f2.fn-show-b0f8) .column_soft_c811 > .breadcrumb_under_93be {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .gallery_6329:has(.brown_50f2.fn-show-b0f8) .element_1a49 {
        flex-shrink: 0;
    }

    .gallery_6329:has(.brown_50f2.fn-show-b0f8) .brown_50f2.fn-show-b0f8 {
        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 */
    .column_soft_c811 .brown_50f2 .paper-e784.fn-active-b0f8 .nav_ac32 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .wrapper_outer_52c4 {
        position: sticky;
        top: 0;
    }
}

.gallery_6329.thumbnail-f291,
.gallery_6329.thumbnail-f291 .wrapper_outer_52c4 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gallery-0402 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .gallery-0402 {
        padding: 0.75rem 0;
    }
}

.cold-f328 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.logo-fixed-47da img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .logo-fixed-47da img {
        height: 35px;
    }
}

/* .column_soft_c811 / .liquid-df83 — inner pages (brown bar); index uses .dropdown_left_6c3e below */

.column_soft_c811:not(.dropdown_left_6c3e) .liquid-df83.fn-active-b0f8 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.text_upper_233c {
    display: flex;
    gap: var(--spacing-md);
}

.header-f931,
.avatar-3c6f {
    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) {
    .header-f931,
    .avatar-3c6f {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .text_upper_233c {
        gap: 0.5rem;
    }
}

.header-f931 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.header-f931:hover {
    background: var(--primary-purple);
    color: white;
}

.avatar-3c6f {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.avatar-3c6f:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.avatar_bottom_422e {
    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%;
}

.avatar_bottom_422e::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;
}

.avatar_bottom_422e::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;
}

.dropdown-pressed-163b {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.tabs_ba97 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.tabs_ba97 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);
}

.avatar_bottom_422e 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;
}

.prev-277d {
    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;
}

.prev-277d strong {
    font-weight: 700;
}

.active_3ba4 {
    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);
}

.notification-west-126c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.center-ea75 {
    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);
}

.center-ea75:hover {
    transform: translateY(-4px);
}

.current_e27e {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.liquid_57c8 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.last-c709 {
    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;
}

.last-c709:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.last-c709.gold_ae24 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.message_black_22bd {
    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);
}

.message_black_22bd:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.gallery_fab4 {
    padding: 3rem 1.25rem;
    background: white;
}

.footer-new-ab01 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mask-blue-c064 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.mask-blue-c064:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mask-blue-c064 img {
    margin-bottom: 1rem;
}

.surface-2035 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mask-blue-c064 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.mask-blue-c064 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 */
.text-8698 {
    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_bc7f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hover_fa45 {
    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);
}

.hover_fa45 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.hover_fa45 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.hover_fa45 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.module-down-033e {
    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
   ======================================== */

.element-2000 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.label-3870 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.solid_9e4e {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero_white_f3aa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.progress_26b3 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.progress_26b3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.progress_26b3.box_center_6166 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.progress_26b3.box_center_6166 h3,
.progress_26b3.box_center_6166 p {
    color: white;
}

.frame_next_a752 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.progress_26b3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.progress_26b3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article_a4b8 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.article_a4b8:hover {
    gap: 0.75rem;
}

.progress_26b3.box_center_6166 .article_a4b8 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.gallery-a6d5 {
    padding: 4rem 1.25rem;
    background: white;
}

.notice-1a3e {
    text-align: center;
    margin-bottom: 3rem;
}

.element-b9db {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.dropdown_large_0e4e {
    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%;
}

.dropdown_large_0e4e:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.carousel_b329 {
    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);
}

.content_lite_11aa {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.box_76e7 {
    padding: 1.5rem;
}

.box_76e7 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.label_clean_221d {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pattern_914a {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.video_38b6,
.overlay_e4bd {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.video_38b6 {
    background: #dcfce7;
    color: #166534;
}

.video_38b6.container_c92f {
    background: #10b981;
    color: white;
}

.overlay_e4bd {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.overlay_e4bd.panel_9650 {
    background: #fee2e2;
    color: #991b1b;
}

.overlay_e4bd.sidebar-a2ff {
    background: #fef3c7;
    color: #92400e;
}

.overlay_e4bd.video_motion_9655 {
    background: #dcfce7;
    color: #166534;
}

.block-040e {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.block-040e strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.main_ff03 {
    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);
}

.main_ff03:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.texture-6451 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.content-f49b {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.layout_dynamic_ac20 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .layout_dynamic_ac20 {
        grid-template-columns: 1fr 1fr;
    }
}

.black-dec4 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.hero-0dee h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.black_4ed0 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.backdrop_9f3b {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cool_8a5d {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-0dee h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.media_last_8398 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.media_last_8398 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.media_last_8398 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;
}

.media_last_8398 li strong {
    color: var(--primary-purple);
}

.media_last_8398 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.block-0bae {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.image_plasma_96ac {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.item_9b45 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.image_plasma_96ac .liquid_57c8 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.outline-soft-22fe p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.focus-4bcb {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.focus-4bcb a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.block-d603 {
    padding: 4rem 1.25rem;
    background: white;
}

.feature_brown_6b6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .feature_brown_6b6c {
        grid-template-columns: 1fr 1fr;
    }
}

.notification_bc10 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pressed_4971 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.component-28e3 {
    margin-bottom: 1.5rem;
}

.summary-selected-0ffb {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pro-2ffb {
    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);
}

.gallery-03ca {
    white-space: nowrap;
}

.complex_b2c9 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.narrow_c1e3 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.west-90fe {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.west-90fe:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.input-a8df {
    font-size: 2rem;
    flex-shrink: 0;
}

.column-6cc7 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.column-6cc7 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.card_in_ee29 {
    margin-top: 3rem;
}

.card_in_ee29 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.photo_bb42 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.photo_bb42 thead {
    background: var(--primary-purple);
    color: white;
}

.photo_bb42 th,
.photo_bb42 td {
    padding: 1rem;
    text-align: left;
}

.photo_bb42 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.photo_bb42 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.photo_bb42 tbody tr:last-child {
    border-bottom: none;
}

.photo_bb42 tbody tr:hover {
    background: var(--light-bg);
}

.lower-5ed1 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.static-25b3 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.search-east-593d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.short_7458 {
    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);
}

.short_7458:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.short_7458.hero_ea9a::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;
}

.pressed_fe5f {
    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;
}

.hard_9e83 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.tooltip_52c4 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dynamic_5ece {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.narrow_4179 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.narrow_4179 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.narrow_4179 p:last-child {
    margin-bottom: 0;
}

.narrow_4179 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumb_8ef2 {
    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;
}

.search_old_1455 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.blue-3a86 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.blue-3a86 .current_e27e {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.blue-3a86 .liquid_57c8 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.button_2f1a {
    padding: 4rem 1.25rem;
    background: white;
}

.fresh_75bb {
    max-width: 900px;
    margin: 0 auto;
}

.pagination_top_e897 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.pagination_top_e897:hover {
    border-color: var(--primary-purple);
}

.pagination_top_e897[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.pagination_top_e897 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;
}

.pagination_top_e897 summary::-webkit-details-marker {
    display: none;
}

.pagination_top_e897 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.pagination_top_e897[open] summary::after {
    transform: rotate(45deg);
}

.column_e539 {
    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);
    }
}

.column_e539 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.column_e539 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.column_e539 ul,
.column_e539 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.column_e539 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.column_e539 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.slider-46e4 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.form-solid-2ef3 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.form-solid-2ef3 th,
.form-solid-2ef3 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.form-solid-2ef3 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.glass_312c {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.gas_eee1 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.label_selected_1a8c {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .label_selected_1a8c {
        flex-direction: column;
        text-align: center;
    }
}

.label_selected_1a8c img {
    flex-shrink: 0;
}

.status_5ec4 {
    font-size: 4rem;
    flex-shrink: 0;
}

.heading-fast-26a1 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.heading-fast-26a1 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tag-3ef8 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.texture-b1fc {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.link_silver_6476 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.link_silver_6476 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-fcc1 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.wide_8d70 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.tooltip_simple_4b9e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bright-8ccf h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bright-8ccf p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.pattern_9069 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-west-dd01 {
    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);
}

.carousel_iron_60f9 {
    list-style: none;
}

.carousel_iron_60f9 li {
    margin-bottom: 0.75rem;
}

.carousel_iron_60f9 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.carousel_iron_60f9 a:hover {
    color: white;
}

.element-4d99 {
    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;
}

.header-2909 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-2909 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.slider_78ff {
    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);
}

.paper-b537 {
    text-align: right;
}

@media (max-width: 767px) {
    .paper-b537 {
        text-align: center;
        width: 100%;
    }
}

.paper-b537 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.new-7873 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.breadcrumb_under_93be {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.gallery_fab4,
.text-8698,
.element-2000,
.gallery-a6d5,
.content-f49b,
.block-d603,
.static-25b3,
.button_2f1a,
.gas_eee1,
.texture-b1fc {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .label-3870 {
        font-size: 1.75rem;
    }
    
    .solid_9e4e {
        font-size: 1rem;
    }
    
    .block-0bae {
        flex-direction: column;
    }
    
    .feature_brown_6b6c {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .element-b9db {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dropdown_large_0e4e {
        max-width: 100%;
    }
    
    .content_lite_11aa {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .breadcrumb_under_93be {
        padding: 0 1rem;
    }
    
    .avatar_bottom_422e {
        padding: 4rem 1rem 3rem;
    }
    
    .avatar_bottom_422e h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .last-c709 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .notification-west-126c {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .photo_bb42,
    .form-solid-2ef3 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .footer-new-ab01 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .hero_white_f3aa {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .search-east-593d {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .avatar_bottom_422e h1 {
        font-size: 1.5rem;
    }
    
    .notification-west-126c {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .center-ea75 {
        padding: 0.75rem;
    }
    
    .current_e27e {
        font-size: 1.5rem;
    }
    
    .footer-new-ab01 {
        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 */
.dropdown_large_0e4e:hover,
.progress_26b3:hover,
.short_7458:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .gallery-a6d5,
    .static-25b3,
    .button_2f1a {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.bright_cc9f)
   ======================================== */

.column_soft_c811.dropdown_left_6c3e {
    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;
}

.column_soft_c811.dropdown_left_6c3e .liquid-df83 {
    color: #334155;
}

.column_soft_c811.dropdown_left_6c3e .liquid-df83:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.column_soft_c811.dropdown_left_6c3e .liquid-df83.fn-active-b0f8 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.column_soft_c811.dropdown_left_6c3e .nav_ac32 {
    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);
}

.column_soft_c811.dropdown_left_6c3e .nav_ac32::before {
    border-bottom-color: #ffffff;
}

.column_soft_c811.dropdown_left_6c3e .surface-bf6a {
    color: #475569;
}

.column_soft_c811.dropdown_left_6c3e .surface-bf6a::before {
    background: #818cf8;
}

.column_soft_c811.dropdown_left_6c3e .surface-bf6a:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.column_soft_c811.dropdown_left_6c3e .surface-bf6a:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.column_soft_c811.dropdown_left_6c3e .south-3e0a {
    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);
}

.column_soft_c811.dropdown_left_6c3e .south-3e0a:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.column_soft_c811.dropdown_left_6c3e .south-3e0a span {
    background: #475569;
    box-shadow: none;
}

.column_soft_c811.dropdown_left_6c3e .south-3e0a.fn-active-b0f8 span:nth-child(1),
.column_soft_c811.dropdown_left_6c3e .south-3e0a.fn-active-b0f8 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .column_soft_c811.dropdown_left_6c3e {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .column_soft_c811.dropdown_left_6c3e .element_1a49 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .column_soft_c811.dropdown_left_6c3e .element_1a49 span {
        color: #334155 !important;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 {
        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);
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .liquid-df83 {
        color: #334155;
        text-shadow: none;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .liquid-df83:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .liquid-df83.dark_c763::after {
        color: #64748b;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .nav_ac32 {
        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) */
    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .paper-e784.fn-active-b0f8 .nav_ac32 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .surface-bf6a {
        color: #475569;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .surface-bf6a::before {
        color: #6366f1;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .surface-bf6a:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .surface-bf6a:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .column_soft_c811.dropdown_left_6c3e .brown_50f2 .surface-bf6a:hover::before {
        color: #4f46e5;
    }
}

/* apk.copper_070c — mesmo tema claro da home; blocos extras */
body.grid-advanced-2293 {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid-advanced-2293 .pattern_next_ceef {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid-advanced-2293 .filter_e368 {
    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);
}

.grid-advanced-2293 .filter_e368 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid-advanced-2293 .filter_e368 p:last-child {
    margin-bottom: 0;
}

.grid-advanced-2293 .filter_e368 strong {
    color: var(--text-primary);
}

.grid-advanced-2293 .focus-8181 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.grid-advanced-2293 .focus-8181 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.frame-smooth-37f9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.frame-smooth-37f9 .complex_d57f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.frame-smooth-37f9 .outline_0974 {
    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);
}

.frame-smooth-37f9 .outline_0974 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame-smooth-37f9 .outline_0974 p:last-child {
    margin-bottom: 0;
}

.frame-smooth-37f9 .outline_0974 strong {
    color: var(--text-primary);
}

.frame-smooth-37f9 .table-white-2bc1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.frame-smooth-37f9 .table-white-2bc1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.nav-rough-fc56 {
    background: #f8f9fa;
    color: #2c3e50;
}

.nav-rough-fc56 .title_east_e3cb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.nav-rough-fc56 .progress-3c92 {
    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);
}

.nav-rough-fc56 .progress-3c92 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.nav-rough-fc56 .progress-3c92 p:last-child {
    margin-bottom: 0;
}

.nav-rough-fc56 .progress-3c92 strong {
    color: var(--text-primary);
}

.nav-rough-fc56 .alert-stale-0b81 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.nav-rough-fc56 .alert-stale-0b81 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dark_6f36 {
    background: #f8f9fa;
    color: #2c3e50;
}

.dark_6f36 .preview_1386 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dark_6f36 .heading-fixed-efa3 {
    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);
}

.dark_6f36 .heading-fixed-efa3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dark_6f36 .heading-fixed-efa3 p:last-child {
    margin-bottom: 0;
}

.dark_6f36 .heading-fixed-efa3 strong {
    color: var(--text-primary);
}

.dark_6f36 .thumbnail-a7ff {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dark_6f36 .thumbnail-a7ff img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dirty_69d5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.dirty_69d5 .fixed-0312 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dirty_69d5 .panel-fluid-573b {
    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);
}

.dirty_69d5 .panel-fluid-573b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dirty_69d5 .panel-fluid-573b p:last-child {
    margin-bottom: 0;
}

.dirty_69d5 .panel-fluid-573b strong {
    color: var(--text-primary);
}

.dirty_69d5 .thumbnail-prev-ab64 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dirty_69d5 .thumbnail-prev-ab64 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tertiary-warm-e3e1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tertiary-warm-e3e1 .huge_34ea {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tertiary-warm-e3e1 .component_8a68 {
    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);
}

.tertiary-warm-e3e1 .component_8a68 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary-warm-e3e1 .component_8a68 p:last-child {
    margin-bottom: 0;
}

.tertiary-warm-e3e1 .component_8a68 strong {
    color: var(--text-primary);
}

.tertiary-warm-e3e1 .column-19b2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tertiary-warm-e3e1 .column-19b2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.iron-b454 {
    background: #f8f9fa;
    color: #2c3e50;
}

.iron-b454 .link-simple-ebd6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.iron-b454 .up_c4cd {
    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);
}

.iron-b454 .up_c4cd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.iron-b454 .up_c4cd p:last-child {
    margin-bottom: 0;
}

.iron-b454 .up_c4cd strong {
    color: var(--text-primary);
}

.iron-b454 .cool-1391 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.iron-b454 .cool-1391 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.east_3234 {
    background: #f8f9fa;
    color: #2c3e50;
}

.east_3234 .picture-upper-41b0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.east_3234 .progress-28af {
    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);
}

.east_3234 .progress-28af p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.east_3234 .progress-28af p:last-child {
    margin-bottom: 0;
}

.east_3234 .progress-28af strong {
    color: var(--text-primary);
}

.east_3234 .popup_up_0300 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.east_3234 .popup_up_0300 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.alert_bronze_f4c2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.alert_bronze_f4c2 .tertiary-mini-6a89 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.alert_bronze_f4c2 .widget-ed9c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.alert_bronze_f4c2 .widget-ed9c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.alert_bronze_f4c2 .widget-ed9c p:last-child {
    margin-bottom: 0;
}

.alert_bronze_f4c2 .widget-ed9c strong {
    color: var(--text-primary);
}

.alert_bronze_f4c2 .grid_0ff7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.alert_bronze_f4c2 .grid_0ff7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.photo_basic_a304 {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo_basic_a304 .link_26f3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo_basic_a304 .shadow_d026 {
    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);
}

.photo_basic_a304 .shadow_d026 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_basic_a304 .shadow_d026 p:last-child {
    margin-bottom: 0;
}

.photo_basic_a304 .shadow_d026 strong {
    color: var(--text-primary);
}

.photo_basic_a304 .module-4318 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo_basic_a304 .module-4318 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_66b4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.badge_66b4 .top_00c7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.badge_66b4 .surface_3312 {
    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_66b4 .surface_3312 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge_66b4 .surface_3312 p:last-child {
    margin-bottom: 0;
}

.badge_66b4 .surface_3312 strong {
    color: var(--text-primary);
}

.badge_66b4 .backdrop-last-7e97 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge_66b4 .backdrop-last-7e97 li {
    margin-bottom: 0.65rem;
}

.badge_66b4 .backdrop-last-7e97 li:last-child {
    margin-bottom: 0;
}

.badge_66b4 .module-black-e63e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.badge_66b4 .module-black-e63e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.title-small-4ccd {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-small-4ccd .clean_7449 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-small-4ccd .in-0ed2 {
    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);
}

.title-small-4ccd .in-0ed2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-small-4ccd .in-0ed2 p:last-child {
    margin-bottom: 0;
}

.title-small-4ccd .in-0ed2 strong {
    color: var(--text-primary);
}

.title-small-4ccd .hover_3547 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-small-4ccd .hover_3547 li {
    margin-bottom: 0.65rem;
}

.title-small-4ccd .hover_3547 li:last-child {
    margin-bottom: 0;
}

.title-small-4ccd .dirty-625f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title-small-4ccd .dirty-625f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pagination-16bc {
    background: #f8f9fa;
    color: #2c3e50;
}

.pagination-16bc .media_stone_990f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pagination-16bc .avatar-9d2f {
    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);
}

.pagination-16bc .avatar-9d2f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pagination-16bc .avatar-9d2f p:last-child {
    margin-bottom: 0;
}

.pagination-16bc .avatar-9d2f strong {
    color: var(--text-primary);
}

.pagination-16bc .video-2f22 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pagination-16bc .video-2f22 li {
    margin-bottom: 0.65rem;
}

.pagination-16bc .video-2f22 li:last-child {
    margin-bottom: 0;
}

.pagination-16bc .table-cdcb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pagination-16bc .table-cdcb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper_04bf {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper_04bf .hot_8fa0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper_04bf .outline-31eb {
    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);
}

.wrapper_04bf .outline-31eb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_04bf .outline-31eb p:last-child {
    margin-bottom: 0;
}

.wrapper_04bf .outline-31eb strong {
    color: var(--text-primary);
}

.wrapper_04bf .tooltip_large_570b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_04bf .tooltip_large_570b li {
    margin-bottom: 0.65rem;
}

.wrapper_04bf .tooltip_large_570b li:last-child {
    margin-bottom: 0;
}

body.over_e1df {
    background: #f8f9fa;
    color: #2c3e50;
}

.over_e1df .preview-huge-f5e5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.over_e1df .message-static-ae48 {
    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);
}

.over_e1df .message-static-ae48 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.over_e1df .message-static-ae48 p:last-child {
    margin-bottom: 0;
}

.over_e1df .message-static-ae48 strong {
    color: var(--text-primary);
}

.over_e1df .item-narrow-31ad {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.over_e1df .item-narrow-31ad li {
    margin-bottom: 0.65rem;
}

.over_e1df .item-narrow-31ad li:last-child {
    margin-bottom: 0;
}

.over_e1df .last_ddf1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.over_e1df .last_ddf1 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-96b5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.element-96b5 .center-18b9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.element-96b5 .black_fb47 {
    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-96b5 .black_fb47 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element-96b5 .black_fb47 p:last-child {
    margin-bottom: 0;
}

.element-96b5 .black_fb47 strong {
    color: var(--text-primary);
}

.element-96b5 .chip-over-9289 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element-96b5 .chip-over-9289 li {
    margin-bottom: 0.65rem;
}

.element-96b5 .chip-over-9289 li:last-child {
    margin-bottom: 0;
}

.element-96b5 .mini_557d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.element-96b5 .mini_557d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.message_d9ea {
    background: #f8f9fa;
    color: #2c3e50;
}

.message_d9ea .highlight_f76d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message_d9ea .green_ec38 {
    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);
}

.message_d9ea .green_ec38 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message_d9ea .green_ec38 p:last-child {
    margin-bottom: 0;
}

.message_d9ea .green_ec38 strong {
    color: var(--text-primary);
}

.message_d9ea .under_80ff {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message_d9ea .under_80ff li {
    margin-bottom: 0.65rem;
}

.message_d9ea .under_80ff li:last-child {
    margin-bottom: 0;
}

.message_d9ea .message_72bd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message_d9ea .message_72bd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.purple-3fd9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.purple-3fd9 .advanced-93fc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.purple-3fd9 .hero-pink-71ac {
    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);
}

.purple-3fd9 .hero-pink-71ac p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.purple-3fd9 .hero-pink-71ac p:last-child {
    margin-bottom: 0;
}

.purple-3fd9 .hero-pink-71ac strong {
    color: var(--text-primary);
}

.purple-3fd9 .mini-0208 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.purple-3fd9 .mini-0208 li {
    margin-bottom: 0.65rem;
}

.purple-3fd9 .mini-0208 li:last-child {
    margin-bottom: 0;
}

.purple-3fd9 .breadcrumb-stale-4209 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.purple-3fd9 .breadcrumb-stale-4209 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: 3e5d */
.phantom-card-p7 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
