/* 
 * 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.thumbnail_d4a6) — fixed together on mobile */
.label_cb0c {
    width: 100%;
}

.card_huge_bd56 {
    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_cb0c {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .card_huge_bd56 {
        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.backdrop-5201. Conta) stay reachable.
     */
    .static_528a .clean_17ac {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .label_cb0c .static_528a > .clean_17ac {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .label_cb0c:has(.content_complex_eb3f.fn-show-54f2) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .label_cb0c:has(.content_complex_eb3f.fn-show-54f2) .card_huge_bd56 {
        flex-shrink: 0;
    }

    .label_cb0c:has(.content_complex_eb3f.fn-show-54f2) .static_528a {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .label_cb0c:has(.content_complex_eb3f.fn-show-54f2) .static_528a > .clean_17ac {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .label_cb0c:has(.content_complex_eb3f.fn-show-54f2) .disabled_d369 {
        flex-shrink: 0;
    }

    .label_cb0c:has(.content_complex_eb3f.fn-show-54f2) .content_complex_eb3f.fn-show-54f2 {
        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 */
    .static_528a .content_complex_eb3f .element-next-f5c0.fn-active-54f2 .paragraph_2032 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .card_huge_bd56 {
        position: sticky;
        top: 0;
    }
}

.label_cb0c.smooth_9550,
.label_cb0c.smooth_9550 .card_huge_bd56 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.content-bottom-0ae7 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .content-bottom-0ae7 {
        padding: 0.75rem 0;
    }
}

.nav_8aa9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.right_9dcf img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .right_9dcf img {
        height: 35px;
    }
}

/* .static_528a / .video_55cb — inner pages (brown bar); index uses .solid-a086 below */

.static_528a:not(.solid-a086) .video_55cb.fn-active-54f2 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.message_hard_5422 {
    display: flex;
    gap: var(--spacing-md);
}

.grid-1024,
.pagination_eac1 {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    white-space: nowrap;
}

/* 移动端按钮优化 */
@media (max-width: 767px) {
    .grid-1024,
    .pagination_eac1 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .message_hard_5422 {
        gap: 0.5rem;
    }
}

.grid-1024 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.grid-1024:hover {
    background: var(--primary-purple);
    color: white;
}

.pagination_eac1 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.pagination_eac1:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.chip_50d0 {
    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%;
}

.chip_50d0::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;
}

.chip_50d0::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;
}

.bottom_a832 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.status_tall_fb1f {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.status_tall_fb1f 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);
}

.chip_50d0 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;
}

.tall_bd66 {
    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;
}

.tall_bd66 strong {
    font-weight: 700;
}

.tertiary_e517 {
    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);
}

.form_advanced_ba0c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.pagination_06eb {
    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);
}

.pagination_06eb:hover {
    transform: translateY(-4px);
}

.summary-b8af {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.widget_57a1 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.main_a19c {
    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;
}

.main_a19c:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.main_a19c.banner-5dbe {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.aside_aa6b {
    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);
}

.aside_aa6b:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.article-4d88 {
    padding: 3rem 1.25rem;
    background: white;
}

.module-up-30f3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.white_4a6c {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.white_4a6c:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.white_4a6c img {
    margin-bottom: 1rem;
}

.container_d28a {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.white_4a6c h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.white_4a6c 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 */
.block-outer-9afe {
    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);
}

.primary_7767 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.article-d51a {
    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);
}

.article-d51a h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.article-d51a p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.article-d51a a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.layout_7361 {
    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
   ======================================== */

.icon-active-65e6 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.header-steel-8b4e {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.avatar_9f95 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.thumbnail-5753 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.first-048e {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.first-048e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.first-048e.feature-c46b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.first-048e.feature-c46b h3,
.first-048e.feature-c46b p {
    color: white;
}

.new_1f18 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.first-048e h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.first-048e p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tertiary-c091 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.tertiary-c091:hover {
    gap: 0.75rem;
}

.first-048e.feature-c46b .tertiary-c091 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.wide-2937 {
    padding: 4rem 1.25rem;
    background: white;
}

.footer_13e4 {
    text-align: center;
    margin-bottom: 3rem;
}

.video-next-e80b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.prev_cf7d {
    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%;
}

.prev_cf7d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.sidebar-gold-73fe {
    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);
}

.upper-e7c3 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.fluid-b837 {
    padding: 1.5rem;
}

.fluid-b837 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.hard-63a1 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.accent_inner_a34a {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.description_f79f,
.icon_dim_a8d3 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.description_f79f {
    background: #dcfce7;
    color: #166534;
}

.description_f79f.hard-ea54 {
    background: #10b981;
    color: white;
}

.icon_dim_a8d3 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.icon_dim_a8d3.row-5665 {
    background: #fee2e2;
    color: #991b1b;
}

.icon_dim_a8d3.label-26ad {
    background: #fef3c7;
    color: #92400e;
}

.icon_dim_a8d3.filter-lower-ac2e {
    background: #dcfce7;
    color: #166534;
}

.shade_4f05 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.shade_4f05 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.bright-260a {
    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);
}

.bright-260a:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.pressed_a3be {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.badge_e036 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.text_29af {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .text_29af {
        grid-template-columns: 1fr 1fr;
    }
}

.picture_bottom_3039 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.grid_dc3f h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.summary-plasma-7899 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.banner-3f01 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.label_4321 {
    font-size: 1rem;
    opacity: 0.9;
}

.grid_dc3f h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.image_lite_ad73 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.image_lite_ad73 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.image_lite_ad73 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;
}

.image_lite_ad73 li strong {
    color: var(--primary-purple);
}

.image_lite_ad73 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.bronze_005c {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.tabs_4f04 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.tertiary-orange-7532 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.tabs_4f04 .widget_57a1 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.fluid_439c p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.main_1349 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.main_1349 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.hidden-ec1a {
    padding: 4rem 1.25rem;
    background: white;
}

.dropdown-black-fbf3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dropdown-black-fbf3 {
        grid-template-columns: 1fr 1fr;
    }
}

.icon-821e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent-pink-f3de {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.label_large_9b7e {
    margin-bottom: 1.5rem;
}

.iron-215d {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.west_254e {
    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);
}

.video_small_f64f {
    white-space: nowrap;
}

.backdrop_37e9 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.clean-e627 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.border_current_4833 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.border_current_4833:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.center-4211 {
    font-size: 2rem;
    flex-shrink: 0;
}

.hidden-glass-b206 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hidden-glass-b206 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tiny-24da {
    margin-top: 3rem;
}

.tiny-24da h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.basic_74fe {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.basic_74fe thead {
    background: var(--primary-purple);
    color: white;
}

.basic_74fe th,
.basic_74fe td {
    padding: 1rem;
    text-align: left;
}

.basic_74fe th {
    font-weight: 700;
    font-size: 0.9rem;
}

.basic_74fe tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.basic_74fe tbody tr:last-child {
    border-bottom: none;
}

.basic_74fe tbody tr:hover {
    background: var(--light-bg);
}

.warm-c8ae {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.disabled-d3d5 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.detail_focused_5567 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.disabled_black_49f0 {
    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);
}

.disabled_black_49f0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.disabled_black_49f0.article_0c99::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;
}

.nav_e48d {
    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;
}

.header-basic-d43f {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.item_8373 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.notice_large_9c7f {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tag_f0ee {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.tag_f0ee p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.tag_f0ee p:last-child {
    margin-bottom: 0;
}

.tag_f0ee strong {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-2d0b {
    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;
}

.element_209c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-upper-f5e0 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.gallery-upper-f5e0 .summary-b8af {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-upper-f5e0 .widget_57a1 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.panel-fixed-ae30 {
    padding: 4rem 1.25rem;
    background: white;
}

.hero-inner-4ffb {
    max-width: 900px;
    margin: 0 auto;
}

.chip-8b2c {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.chip-8b2c:hover {
    border-color: var(--primary-purple);
}

.chip-8b2c[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.chip-8b2c 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;
}

.chip-8b2c summary::-webkit-details-marker {
    display: none;
}

.chip-8b2c summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.chip-8b2c[open] summary::after {
    transform: rotate(45deg);
}

.sidebar-2d10 {
    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);
    }
}

.sidebar-2d10 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.sidebar-2d10 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.sidebar-2d10 ul,
.sidebar-2d10 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.sidebar-2d10 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.sidebar-2d10 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.aside-97eb {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.easy-8f49 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.easy-8f49 th,
.easy-8f49 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.easy-8f49 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.summary-solid-1617 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.hidden_full_4942 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.grid-80a6 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .grid-80a6 {
        flex-direction: column;
        text-align: center;
    }
}

.grid-80a6 img {
    flex-shrink: 0;
}

.avatar_purple_178a {
    font-size: 4rem;
    flex-shrink: 0;
}

.stale_7d91 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.stale_7d91 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.first-d3bb {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.gradient_fresh_46a9 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.outline_active_4cc3 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.outline_active_4cc3 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mask_632a {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.fluid_a66f {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.glass_c2f7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.north_6867 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.north_6867 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.section_in_2d2e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.active_orange_8afb {
    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);
}

.center-1219 {
    list-style: none;
}

.center-1219 li {
    margin-bottom: 0.75rem;
}

.center-1219 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.center-1219 a:hover {
    color: white;
}

.focused-2ff9 {
    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;
}

.thick-642c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.thick-642c span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hard_d7cb {
    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);
}

.outline_west_a1b1 {
    text-align: right;
}

@media (max-width: 767px) {
    .outline_west_a1b1 {
        text-align: center;
        width: 100%;
    }
}

.outline_west_a1b1 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.frame_9adf {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.clean_17ac {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.article-4d88,
.block-outer-9afe,
.icon-active-65e6,
.wide-2937,
.badge_e036,
.hidden-ec1a,
.disabled-d3d5,
.panel-fixed-ae30,
.hidden_full_4942,
.gradient_fresh_46a9 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .header-steel-8b4e {
        font-size: 1.75rem;
    }
    
    .avatar_9f95 {
        font-size: 1rem;
    }
    
    .bronze_005c {
        flex-direction: column;
    }
    
    .dropdown-black-fbf3 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .video-next-e80b {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prev_cf7d {
        max-width: 100%;
    }
    
    .upper-e7c3 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .clean_17ac {
        padding: 0 1rem;
    }
    
    .chip_50d0 {
        padding: 4rem 1rem 3rem;
    }
    
    .chip_50d0 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .main_a19c {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .form_advanced_ba0c {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .basic_74fe,
    .easy-8f49 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .module-up-30f3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .thumbnail-5753 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .detail_focused_5567 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .chip_50d0 h1 {
        font-size: 1.5rem;
    }
    
    .form_advanced_ba0c {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .pagination_06eb {
        padding: 0.75rem;
    }
    
    .summary-b8af {
        font-size: 1.5rem;
    }
    
    .module-up-30f3 {
        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 */
.prev_cf7d:hover,
.first-048e:hover,
.disabled_black_49f0:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .wide-2937,
    .disabled-d3d5,
    .panel-fixed-ae30 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.thumbnail_d4a6)
   ======================================== */

.static_528a.solid-a086 {
    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;
}

.static_528a.solid-a086 .video_55cb {
    color: #334155;
}

.static_528a.solid-a086 .video_55cb:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.static_528a.solid-a086 .video_55cb.fn-active-54f2 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.static_528a.solid-a086 .paragraph_2032 {
    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);
}

.static_528a.solid-a086 .paragraph_2032::before {
    border-bottom-color: #ffffff;
}

.static_528a.solid-a086 .copper-44a2 {
    color: #475569;
}

.static_528a.solid-a086 .copper-44a2::before {
    background: #818cf8;
}

.static_528a.solid-a086 .copper-44a2:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.static_528a.solid-a086 .copper-44a2:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.static_528a.solid-a086 .image-yellow-f1b0 {
    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);
}

.static_528a.solid-a086 .image-yellow-f1b0:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.static_528a.solid-a086 .image-yellow-f1b0 span {
    background: #475569;
    box-shadow: none;
}

.static_528a.solid-a086 .image-yellow-f1b0.fn-active-54f2 span:nth-child(1),
.static_528a.solid-a086 .image-yellow-f1b0.fn-active-54f2 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .static_528a.solid-a086 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .static_528a.solid-a086 .disabled_d369 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .static_528a.solid-a086 .disabled_d369 span {
        color: #334155 !important;
    }

    .static_528a.solid-a086 .content_complex_eb3f {
        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);
    }

    .static_528a.solid-a086 .content_complex_eb3f .video_55cb {
        color: #334155;
        text-shadow: none;
    }

    .static_528a.solid-a086 .content_complex_eb3f .video_55cb:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .static_528a.solid-a086 .content_complex_eb3f .video_55cb.in-1d7f::after {
        color: #64748b;
    }

    .static_528a.solid-a086 .content_complex_eb3f .paragraph_2032 {
        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) */
    .static_528a.solid-a086 .content_complex_eb3f .element-next-f5c0.fn-active-54f2 .paragraph_2032 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .static_528a.solid-a086 .content_complex_eb3f .copper-44a2 {
        color: #475569;
    }

    .static_528a.solid-a086 .content_complex_eb3f .copper-44a2::before {
        color: #6366f1;
    }

    .static_528a.solid-a086 .content_complex_eb3f .copper-44a2:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .static_528a.solid-a086 .content_complex_eb3f .copper-44a2:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .static_528a.solid-a086 .content_complex_eb3f .copper-44a2:hover::before {
        color: #4f46e5;
    }
}

/* apk.tabs_338a — mesmo tema claro da home; blocos extras */
body.content_7ac6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.content_7ac6 .alert_3452 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content_7ac6 .shade-d1c0 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.content_7ac6 .shade-d1c0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content_7ac6 .shade-d1c0 p:last-child {
    margin-bottom: 0;
}

.content_7ac6 .shade-d1c0 strong {
    color: var(--text-primary);
}

.content_7ac6 .header_solid_dc90 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content_7ac6 .header_solid_dc90 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.secondary_0cc1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.secondary_0cc1 .full-68a5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.secondary_0cc1 .card-b303 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.secondary_0cc1 .card-b303 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary_0cc1 .card-b303 p:last-child {
    margin-bottom: 0;
}

.secondary_0cc1 .card-b303 strong {
    color: var(--text-primary);
}

.secondary_0cc1 .content-bottom-34d2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.secondary_0cc1 .content-bottom-34d2 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-a2fb {
    background: #f8f9fa;
    color: #2c3e50;
}

.hard-a2fb .feature-e2f5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hard-a2fb .block-1e6a {
    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-a2fb .block-1e6a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hard-a2fb .block-1e6a p:last-child {
    margin-bottom: 0;
}

.hard-a2fb .block-1e6a strong {
    color: var(--text-primary);
}

.hard-a2fb .icon-current-8c44 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hard-a2fb .icon-current-8c44 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.block-3d56 {
    background: #f8f9fa;
    color: #2c3e50;
}

.block-3d56 .in_a305 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.block-3d56 .label-7ee5 {
    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);
}

.block-3d56 .label-7ee5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block-3d56 .label-7ee5 p:last-child {
    margin-bottom: 0;
}

.block-3d56 .label-7ee5 strong {
    color: var(--text-primary);
}

.block-3d56 .over_4dbd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.block-3d56 .over_4dbd 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-out-241e {
    background: #f8f9fa;
    color: #2c3e50;
}

.label-out-241e .input-paper-f7bd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label-out-241e .inner_21c9 {
    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-out-241e .inner_21c9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-out-241e .inner_21c9 p:last-child {
    margin-bottom: 0;
}

.label-out-241e .inner_21c9 strong {
    color: var(--text-primary);
}

.label-out-241e .caption-dd16 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label-out-241e .caption-dd16 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.new_9756 {
    background: #f8f9fa;
    color: #2c3e50;
}

.new_9756 .primary-bottom-3ce8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.new_9756 .aside-basic-9537 {
    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);
}

.new_9756 .aside-basic-9537 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.new_9756 .aside-basic-9537 p:last-child {
    margin-bottom: 0;
}

.new_9756 .aside-basic-9537 strong {
    color: var(--text-primary);
}

.new_9756 .chip-green-7687 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.new_9756 .chip-green-7687 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.content_lite_f3a1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.content_lite_f3a1 .header_b9e2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content_lite_f3a1 .card_first_17cd {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.content_lite_f3a1 .card_first_17cd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content_lite_f3a1 .card_first_17cd p:last-child {
    margin-bottom: 0;
}

.content_lite_f3a1 .card_first_17cd strong {
    color: var(--text-primary);
}

.content_lite_f3a1 .paragraph-137a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content_lite_f3a1 .paragraph-137a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.next-0a62 {
    background: #f8f9fa;
    color: #2c3e50;
}

.next-0a62 .caption_fresh_ffde {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.next-0a62 .panel-8b57 {
    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);
}

.next-0a62 .panel-8b57 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.next-0a62 .panel-8b57 p:last-child {
    margin-bottom: 0;
}

.next-0a62 .panel-8b57 strong {
    color: var(--text-primary);
}

.next-0a62 .dropdown_5906 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.next-0a62 .dropdown_5906 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.image_e2c7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.image_e2c7 .card_active_678c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.image_e2c7 .photo-b0fd {
    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);
}

.image_e2c7 .photo-b0fd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.image_e2c7 .photo-b0fd p:last-child {
    margin-bottom: 0;
}

.image_e2c7 .photo-b0fd strong {
    color: var(--text-primary);
}

.image_e2c7 .focus_new_1d0b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.image_e2c7 .focus_new_1d0b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.input-tall-bf5d {
    background: #f8f9fa;
    color: #2c3e50;
}

.input-tall-bf5d .panel_5e0b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input-tall-bf5d .module_092b {
    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);
}

.input-tall-bf5d .module_092b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-tall-bf5d .module_092b p:last-child {
    margin-bottom: 0;
}

.input-tall-bf5d .module_092b strong {
    color: var(--text-primary);
}

.input-tall-bf5d .bottom-b1fa {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input-tall-bf5d .bottom-b1fa img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.north_b51f {
    background: #f8f9fa;
    color: #2c3e50;
}

.north_b51f .surface-hard-13df {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.north_b51f .center-d08a {
    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);
}

.north_b51f .center-d08a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north_b51f .center-d08a p:last-child {
    margin-bottom: 0;
}

.north_b51f .center-d08a strong {
    color: var(--text-primary);
}

.north_b51f .link-top-1cfe {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north_b51f .link-top-1cfe li {
    margin-bottom: 0.65rem;
}

.north_b51f .link-top-1cfe li:last-child {
    margin-bottom: 0;
}

.north_b51f .gradient_tall_417f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.north_b51f .gradient_tall_417f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.silver_29c3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.silver_29c3 .video_cool_e434 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.silver_29c3 .frame-2d99 {
    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);
}

.silver_29c3 .frame-2d99 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver_29c3 .frame-2d99 p:last-child {
    margin-bottom: 0;
}

.silver_29c3 .frame-2d99 strong {
    color: var(--text-primary);
}

.silver_29c3 .frame-20f0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver_29c3 .frame-20f0 li {
    margin-bottom: 0.65rem;
}

.silver_29c3 .frame-20f0 li:last-child {
    margin-bottom: 0;
}

.silver_29c3 .lite_1364 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.silver_29c3 .lite_1364 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.upper-62ab {
    background: #f8f9fa;
    color: #2c3e50;
}

.upper-62ab .avatar_active_acaf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.upper-62ab .layout_medium_5ca5 {
    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);
}

.upper-62ab .layout_medium_5ca5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.upper-62ab .layout_medium_5ca5 p:last-child {
    margin-bottom: 0;
}

.upper-62ab .layout_medium_5ca5 strong {
    color: var(--text-primary);
}

.upper-62ab .carousel_blue_0a16 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.upper-62ab .carousel_blue_0a16 li {
    margin-bottom: 0.65rem;
}

.upper-62ab .carousel_blue_0a16 li:last-child {
    margin-bottom: 0;
}

.upper-62ab .fresh-8c31 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.upper-62ab .fresh-8c31 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer-e1d0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer-e1d0 .hidden-pink-0ec5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer-e1d0 .label_liquid_8977 {
    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);
}

.footer-e1d0 .label_liquid_8977 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-e1d0 .label_liquid_8977 p:last-child {
    margin-bottom: 0;
}

.footer-e1d0 .label_liquid_8977 strong {
    color: var(--text-primary);
}

.footer-e1d0 .module_72f8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-e1d0 .module_72f8 li {
    margin-bottom: 0.65rem;
}

.footer-e1d0 .module_72f8 li:last-child {
    margin-bottom: 0;
}

body.text-0fdf {
    background: #f8f9fa;
    color: #2c3e50;
}

.text-0fdf .dim_6aca {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.text-0fdf .modal-1b16 {
    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);
}

.text-0fdf .modal-1b16 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text-0fdf .modal-1b16 p:last-child {
    margin-bottom: 0;
}

.text-0fdf .modal-1b16 strong {
    color: var(--text-primary);
}

.text-0fdf .sidebar-f718 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text-0fdf .sidebar-f718 li {
    margin-bottom: 0.65rem;
}

.text-0fdf .sidebar-f718 li:last-child {
    margin-bottom: 0;
}

.text-0fdf .sidebar-3239 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.text-0fdf .sidebar-3239 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.picture_dbfa {
    background: #f8f9fa;
    color: #2c3e50;
}

.picture_dbfa .glass_0f5a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.picture_dbfa .black_59c3 {
    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);
}

.picture_dbfa .black_59c3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.picture_dbfa .black_59c3 p:last-child {
    margin-bottom: 0;
}

.picture_dbfa .black_59c3 strong {
    color: var(--text-primary);
}

.picture_dbfa .simple-647f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.picture_dbfa .simple-647f li {
    margin-bottom: 0.65rem;
}

.picture_dbfa .simple-647f li:last-child {
    margin-bottom: 0;
}

.picture_dbfa .secondary-south-4789 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.picture_dbfa .secondary-south-4789 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.down-313b {
    background: #f8f9fa;
    color: #2c3e50;
}

.down-313b .paper_1221 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.down-313b .focus_4b76 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.down-313b .focus_4b76 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.down-313b .focus_4b76 p:last-child {
    margin-bottom: 0;
}

.down-313b .focus_4b76 strong {
    color: var(--text-primary);
}

.down-313b .table-medium-43ad {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.down-313b .table-medium-43ad li {
    margin-bottom: 0.65rem;
}

.down-313b .table-medium-43ad li:last-child {
    margin-bottom: 0;
}

.down-313b .paragraph_565f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.down-313b .paragraph_565f 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-old-bd88 {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading-old-bd88 .outer_53ec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading-old-bd88 .wide_1b89 {
    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-old-bd88 .wide_1b89 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-old-bd88 .wide_1b89 p:last-child {
    margin-bottom: 0;
}

.heading-old-bd88 .wide_1b89 strong {
    color: var(--text-primary);
}

.heading-old-bd88 .shadow-e7e6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-old-bd88 .shadow-e7e6 li {
    margin-bottom: 0.65rem;
}

.heading-old-bd88 .shadow-e7e6 li:last-child {
    margin-bottom: 0;
}

.heading-old-bd88 .under-7657 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading-old-bd88 .under-7657 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: cf2f */
.widget-item-y1 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
