/* 
 * 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.out-6e0e) — fixed together on mobile */
.badge_6000 {
    width: 100%;
}

.text-4cc1 {
    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) {
    .badge_6000 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .text-4cc1 {
        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.accordion-f1e5. Conta) stay reachable.
     */
    .nav-349e .accordion-ed37 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .badge_6000 .nav-349e > .accordion-ed37 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .badge_6000:has(.pink_3282.fn-show-c140) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .badge_6000:has(.pink_3282.fn-show-c140) .text-4cc1 {
        flex-shrink: 0;
    }

    .badge_6000:has(.pink_3282.fn-show-c140) .nav-349e {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .badge_6000:has(.pink_3282.fn-show-c140) .nav-349e > .accordion-ed37 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .badge_6000:has(.pink_3282.fn-show-c140) .item-c901 {
        flex-shrink: 0;
    }

    .badge_6000:has(.pink_3282.fn-show-c140) .pink_3282.fn-show-c140 {
        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 */
    .nav-349e .pink_3282 .breadcrumb_b6f8.fn-active-c140 .video-lower-b125 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .text-4cc1 {
        position: sticky;
        top: 0;
    }
}

.badge_6000.copper_5b9d,
.badge_6000.copper_5b9d .text-4cc1 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dark_9dab {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .dark_9dab {
        padding: 0.75rem 0;
    }
}

.action-1f38 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.icon_45e5 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .icon_45e5 img {
        height: 35px;
    }
}

/* .nav-349e / .blue-7cc9 — inner pages (brown bar); index uses .top-acdb below */

.nav-349e:not(.top-acdb) .blue-7cc9.fn-active-c140 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.notification_copper_040a {
    display: flex;
    gap: var(--spacing-md);
}

.gallery_basic_862d,
.outline-0764 {
    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) {
    .gallery_basic_862d,
    .outline-0764 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .notification_copper_040a {
        gap: 0.5rem;
    }
}

.gallery_basic_862d {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.gallery_basic_862d:hover {
    background: var(--primary-purple);
    color: white;
}

.outline-0764 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.outline-0764:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.shadow-56a3 {
    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%;
}

.shadow-56a3::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;
}

.shadow-56a3::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;
}

.tall-6642 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.layout_hard_8871 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.layout_hard_8871 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);
}

.shadow-56a3 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;
}

.gradient-action-b918 {
    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;
}

.gradient-action-b918 strong {
    font-weight: 700;
}

.frame_4c7a {
    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);
}

.old_b74a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.frame-over-96a1 {
    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);
}

.frame-over-96a1:hover {
    transform: translateY(-4px);
}

.description_brown_25f5 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.title_7bf5 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.wide-ced5 {
    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;
}

.wide-ced5:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.wide-ced5.input_30db {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.row-0166 {
    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);
}

.row-0166:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.title_4d27 {
    padding: 3rem 1.25rem;
    background: white;
}

.avatar-7433 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.silver-3cbb {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.silver-3cbb:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.silver-3cbb img {
    margin-bottom: 1rem;
}

.filter-fresh-f45c {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.silver-3cbb h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.silver-3cbb 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 */
.heading_easy_36b7 {
    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);
}

.action-f1bb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.paragraph_4b13 {
    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);
}

.paragraph_4b13 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.paragraph_4b13 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.paragraph_4b13 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.list_bc26 {
    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
   ======================================== */

.border_wide_1e3d {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.status-fda0 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.preview_tiny_9997 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.tiny_bccf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fixed-a5ac {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.fixed-a5ac:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.fixed-a5ac.tag-da33 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fixed-a5ac.tag-da33 h3,
.fixed-a5ac.tag-da33 p {
    color: white;
}

.large_2aa6 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fixed-a5ac h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.fixed-a5ac p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.paragraph-6b4a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.paragraph-6b4a:hover {
    gap: 0.75rem;
}

.fixed-a5ac.tag-da33 .paragraph-6b4a {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.link_under_64db {
    padding: 4rem 1.25rem;
    background: white;
}

.info-e4d3 {
    text-align: center;
    margin-bottom: 3rem;
}

.left-cbae {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.overlay_white_7afb {
    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%;
}

.overlay_white_7afb:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.widget_e819 {
    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);
}

.cold-771c {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.button_e1a5 {
    padding: 1.5rem;
}

.button_e1a5 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.container_fresh_489f {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fast_760a {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.message_e22b,
.rough-8046 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.message_e22b {
    background: #dcfce7;
    color: #166534;
}

.message_e22b.progress-solid-4db6 {
    background: #10b981;
    color: white;
}

.rough-8046 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.rough-8046.summary_f23e {
    background: #fee2e2;
    color: #991b1b;
}

.rough-8046.primary-3310 {
    background: #fef3c7;
    color: #92400e;
}

.rough-8046.hero_7eb2 {
    background: #dcfce7;
    color: #166534;
}

.input-d735 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.input-d735 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.east-1c47 {
    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);
}

.east-1c47:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.menu_outer_20ad {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.popup-04cf {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.full-4c15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .full-4c15 {
        grid-template-columns: 1fr 1fr;
    }
}

.tag_c3e8 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.accordion-e1ec h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent-prev-b8fc {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.panel-first-0ac0 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.layout-14df {
    font-size: 1rem;
    opacity: 0.9;
}

.accordion-e1ec h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-9aae {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.content-9aae li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.content-9aae 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;
}

.content-9aae li strong {
    color: var(--primary-purple);
}

.content-9aae li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.texture_white_8454 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.border_brown_3946 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.under-c357 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.border_brown_3946 .title_7bf5 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.pagination_3443 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.mini_aaf5 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.mini_aaf5 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.disabled_mini_e6a0 {
    padding: 4rem 1.25rem;
    background: white;
}

.thick_0b80 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .thick_0b80 {
        grid-template-columns: 1fr 1fr;
    }
}

.steel_6f93 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pagination-dirty-7b93 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.border-ac15 {
    margin-bottom: 1.5rem;
}

.highlight_f36a {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gold_850c {
    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);
}

.main-889d {
    white-space: nowrap;
}

.pink-ef8b {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.wide_d965 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.alert_3dc9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.alert_3dc9:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.easy_04bc {
    font-size: 2rem;
    flex-shrink: 0;
}

.bright_1bfb h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bright_1bfb p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.liquid-e84d {
    margin-top: 3rem;
}

.liquid-e84d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pro-257f {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pro-257f thead {
    background: var(--primary-purple);
    color: white;
}

.pro-257f th,
.pro-257f td {
    padding: 1rem;
    text-align: left;
}

.pro-257f th {
    font-weight: 700;
    font-size: 0.9rem;
}

.pro-257f tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.pro-257f tbody tr:last-child {
    border-bottom: none;
}

.pro-257f tbody tr:hover {
    background: var(--light-bg);
}

.breadcrumb-action-77da {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.small_d5b4 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.modal-fast-100e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.accordion_under_bc46 {
    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);
}

.accordion_under_bc46:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.accordion_under_bc46.hidden-pro-d5f8::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;
}

.large_b05b {
    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;
}

.tabs-f4f0 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.notice-static-6c92 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.slow_814e {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.thumbnail_fresh_5e15 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.thumbnail_fresh_5e15 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.thumbnail_fresh_5e15 p:last-child {
    margin-bottom: 0;
}

.thumbnail_fresh_5e15 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumb-warm-2c5a {
    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;
}

.main-d71a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.outline_e1df {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.outline_e1df .description_brown_25f5 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.outline_e1df .title_7bf5 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.current-b86d {
    padding: 4rem 1.25rem;
    background: white;
}

.pagination-ebef {
    max-width: 900px;
    margin: 0 auto;
}

.icon_solid_757d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.icon_solid_757d:hover {
    border-color: var(--primary-purple);
}

.icon_solid_757d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.icon_solid_757d 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;
}

.icon_solid_757d summary::-webkit-details-marker {
    display: none;
}

.icon_solid_757d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.icon_solid_757d[open] summary::after {
    transform: rotate(45deg);
}

.texture-7f2a {
    padding: 0 1.5rem 1.5rem;
    animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.texture-7f2a p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.texture-7f2a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.texture-7f2a ul,
.texture-7f2a ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.texture-7f2a li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.texture-7f2a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.card-a9ec {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.next-c170 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.next-c170 th,
.next-c170 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.next-c170 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.notification_7ccf {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.slider-59ae {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.message_inner_a2ee {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .message_inner_a2ee {
        flex-direction: column;
        text-align: center;
    }
}

.message_inner_a2ee img {
    flex-shrink: 0;
}

.carousel_1fc2 {
    font-size: 4rem;
    flex-shrink: 0;
}

.wrapper-dark-c30f h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.wrapper-dark-c30f p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.hard_c665 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.preview-huge-eea8 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.focus-warm-90cf h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.focus-warm-90cf > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.top-dd52 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.item_gas_1940 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.bottom_fe77 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.surface_thick_92fc h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.surface_thick_92fc p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.tag-mini-8ee3 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.table-iron-cbb4 {
    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);
}

.brown_866d {
    list-style: none;
}

.brown_866d li {
    margin-bottom: 0.75rem;
}

.brown_866d a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.brown_866d a:hover {
    color: white;
}

.soft_dbec {
    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;
}

.status_rough_5cd4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status_rough_5cd4 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.button_ecc6 {
    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);
}

.component-last-6365 {
    text-align: right;
}

@media (max-width: 767px) {
    .component-last-6365 {
        text-align: center;
        width: 100%;
    }
}

.component-last-6365 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.wood_abd8 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.accordion-ed37 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.title_4d27,
.heading_easy_36b7,
.border_wide_1e3d,
.link_under_64db,
.popup-04cf,
.disabled_mini_e6a0,
.small_d5b4,
.current-b86d,
.slider-59ae,
.preview-huge-eea8 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .status-fda0 {
        font-size: 1.75rem;
    }
    
    .preview_tiny_9997 {
        font-size: 1rem;
    }
    
    .texture_white_8454 {
        flex-direction: column;
    }
    
    .thick_0b80 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .left-cbae {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overlay_white_7afb {
        max-width: 100%;
    }
    
    .cold-771c {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .accordion-ed37 {
        padding: 0 1rem;
    }
    
    .shadow-56a3 {
        padding: 4rem 1rem 3rem;
    }
    
    .shadow-56a3 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .wide-ced5 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .old_b74a {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .pro-257f,
    .next-c170 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .avatar-7433 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .tiny_bccf {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .modal-fast-100e {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .shadow-56a3 h1 {
        font-size: 1.5rem;
    }
    
    .old_b74a {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .frame-over-96a1 {
        padding: 0.75rem;
    }
    
    .description_brown_25f5 {
        font-size: 1.5rem;
    }
    
    .avatar-7433 {
        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 */
.overlay_white_7afb:hover,
.fixed-a5ac:hover,
.accordion_under_bc46:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .link_under_64db,
    .small_d5b4,
    .current-b86d {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.out-6e0e)
   ======================================== */

.nav-349e.top-acdb {
    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;
}

.nav-349e.top-acdb .blue-7cc9 {
    color: #334155;
}

.nav-349e.top-acdb .blue-7cc9:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.nav-349e.top-acdb .blue-7cc9.fn-active-c140 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.nav-349e.top-acdb .video-lower-b125 {
    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);
}

.nav-349e.top-acdb .video-lower-b125::before {
    border-bottom-color: #ffffff;
}

.nav-349e.top-acdb .fixed_1be7 {
    color: #475569;
}

.nav-349e.top-acdb .fixed_1be7::before {
    background: #818cf8;
}

.nav-349e.top-acdb .fixed_1be7:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.nav-349e.top-acdb .fixed_1be7:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.nav-349e.top-acdb .layout-last-a3e6 {
    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);
}

.nav-349e.top-acdb .layout-last-a3e6:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.nav-349e.top-acdb .layout-last-a3e6 span {
    background: #475569;
    box-shadow: none;
}

.nav-349e.top-acdb .layout-last-a3e6.fn-active-c140 span:nth-child(1),
.nav-349e.top-acdb .layout-last-a3e6.fn-active-c140 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .nav-349e.top-acdb {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .nav-349e.top-acdb .item-c901 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .nav-349e.top-acdb .item-c901 span {
        color: #334155 !important;
    }

    .nav-349e.top-acdb .pink_3282 {
        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);
    }

    .nav-349e.top-acdb .pink_3282 .blue-7cc9 {
        color: #334155;
        text-shadow: none;
    }

    .nav-349e.top-acdb .pink_3282 .blue-7cc9:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .nav-349e.top-acdb .pink_3282 .blue-7cc9.fresh_8904::after {
        color: #64748b;
    }

    .nav-349e.top-acdb .pink_3282 .video-lower-b125 {
        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) */
    .nav-349e.top-acdb .pink_3282 .breadcrumb_b6f8.fn-active-c140 .video-lower-b125 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .nav-349e.top-acdb .pink_3282 .fixed_1be7 {
        color: #475569;
    }

    .nav-349e.top-acdb .pink_3282 .fixed_1be7::before {
        color: #6366f1;
    }

    .nav-349e.top-acdb .pink_3282 .fixed_1be7:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .nav-349e.top-acdb .pink_3282 .fixed_1be7:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .nav-349e.top-acdb .pink_3282 .fixed_1be7:hover::before {
        color: #4f46e5;
    }
}

/* apk.gallery-98ed — mesmo tema claro da home; blocos extras */
body.copper-1370 {
    background: #f8f9fa;
    color: #2c3e50;
}

.copper-1370 .dim-fc78 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.copper-1370 .hard-1ea1 {
    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);
}

.copper-1370 .hard-1ea1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.copper-1370 .hard-1ea1 p:last-child {
    margin-bottom: 0;
}

.copper-1370 .hard-1ea1 strong {
    color: var(--text-primary);
}

.copper-1370 .column_huge_092c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.copper-1370 .column_huge_092c 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_fbe8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.input_fbe8 .filter-easy-4f79 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input_fbe8 .glass-18c8 {
    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_fbe8 .glass-18c8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input_fbe8 .glass-18c8 p:last-child {
    margin-bottom: 0;
}

.input_fbe8 .glass-18c8 strong {
    color: var(--text-primary);
}

.input_fbe8 .layout_a63f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input_fbe8 .layout_a63f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sidebar_f24c {
    background: #f8f9fa;
    color: #2c3e50;
}

.sidebar_f24c .filter-d00c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sidebar_f24c .outline_19c9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.sidebar_f24c .outline_19c9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar_f24c .outline_19c9 p:last-child {
    margin-bottom: 0;
}

.sidebar_f24c .outline_19c9 strong {
    color: var(--text-primary);
}

.sidebar_f24c .link-liquid-7afa {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sidebar_f24c .link-liquid-7afa img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.list-aa5e {
    background: #f8f9fa;
    color: #2c3e50;
}

.list-aa5e .iron_23c9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list-aa5e .header_13a5 {
    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);
}

.list-aa5e .header_13a5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list-aa5e .header_13a5 p:last-child {
    margin-bottom: 0;
}

.list-aa5e .header_13a5 strong {
    color: var(--text-primary);
}

.list-aa5e .header_short_64e5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list-aa5e .header_short_64e5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outline-prev-9ca6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outline-prev-9ca6 .gallery_under_7365 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outline-prev-9ca6 .accordion_e79f {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.outline-prev-9ca6 .accordion_e79f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outline-prev-9ca6 .accordion_e79f p:last-child {
    margin-bottom: 0;
}

.outline-prev-9ca6 .accordion_e79f strong {
    color: var(--text-primary);
}

.outline-prev-9ca6 .tooltip_f361 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outline-prev-9ca6 .tooltip_f361 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.light-8790 {
    background: #f8f9fa;
    color: #2c3e50;
}

.light-8790 .middle_3edb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.light-8790 .carousel_8468 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.light-8790 .carousel_8468 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.light-8790 .carousel_8468 p:last-child {
    margin-bottom: 0;
}

.light-8790 .carousel_8468 strong {
    color: var(--text-primary);
}

.light-8790 .image_center_6e9b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.light-8790 .image_center_6e9b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.stale-60f3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.stale-60f3 .carousel-complex-af09 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.stale-60f3 .widget_hard_03f9 {
    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);
}

.stale-60f3 .widget_hard_03f9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.stale-60f3 .widget_hard_03f9 p:last-child {
    margin-bottom: 0;
}

.stale-60f3 .widget_hard_03f9 strong {
    color: var(--text-primary);
}

.stale-60f3 .out-b738 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.stale-60f3 .out-b738 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.action_7ad2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.action_7ad2 .out-1d4e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.action_7ad2 .nav-a176 {
    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);
}

.action_7ad2 .nav-a176 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.action_7ad2 .nav-a176 p:last-child {
    margin-bottom: 0;
}

.action_7ad2 .nav-a176 strong {
    color: var(--text-primary);
}

.action_7ad2 .aside_top_534f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.action_7ad2 .aside_top_534f 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_2796 {
    background: #f8f9fa;
    color: #2c3e50;
}

.new_2796 .primary-warm-db6c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.new_2796 .black_9ec4 {
    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_2796 .black_9ec4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.new_2796 .black_9ec4 p:last-child {
    margin-bottom: 0;
}

.new_2796 .black_9ec4 strong {
    color: var(--text-primary);
}

.new_2796 .motion-0cd6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.new_2796 .motion-0cd6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.white_b0a0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.white_b0a0 .bottom-8356 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.white_b0a0 .background_8847 {
    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);
}

.white_b0a0 .background_8847 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.white_b0a0 .background_8847 p:last-child {
    margin-bottom: 0;
}

.white_b0a0 .background_8847 strong {
    color: var(--text-primary);
}

.white_b0a0 .caption_cool_37e1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.white_b0a0 .caption_cool_37e1 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-focused-942e {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer-focused-942e .tooltip_tiny_6059 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer-focused-942e .frame-wood-2ecf {
    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-focused-942e .frame-wood-2ecf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-focused-942e .frame-wood-2ecf p:last-child {
    margin-bottom: 0;
}

.footer-focused-942e .frame-wood-2ecf strong {
    color: var(--text-primary);
}

.footer-focused-942e .image_eb4c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-focused-942e .image_eb4c li {
    margin-bottom: 0.65rem;
}

.footer-focused-942e .image_eb4c li:last-child {
    margin-bottom: 0;
}

.footer-focused-942e .thick-ac9f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer-focused-942e .thick-ac9f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.old_625b {
    background: #f8f9fa;
    color: #2c3e50;
}

.old_625b .bronze-2bb4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.old_625b .box_ba69 {
    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);
}

.old_625b .box_ba69 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.old_625b .box_ba69 p:last-child {
    margin-bottom: 0;
}

.old_625b .box_ba69 strong {
    color: var(--text-primary);
}

.old_625b .summary_blue_1f4e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.old_625b .summary_blue_1f4e li {
    margin-bottom: 0.65rem;
}

.old_625b .summary_blue_1f4e li:last-child {
    margin-bottom: 0;
}

.old_625b .module_330f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.old_625b .module_330f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hidden-e0ea {
    background: #f8f9fa;
    color: #2c3e50;
}

.hidden-e0ea .first_f102 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hidden-e0ea .module-12b8 {
    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);
}

.hidden-e0ea .module-12b8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden-e0ea .module-12b8 p:last-child {
    margin-bottom: 0;
}

.hidden-e0ea .module-12b8 strong {
    color: var(--text-primary);
}

.hidden-e0ea .frame_0782 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden-e0ea .frame_0782 li {
    margin-bottom: 0.65rem;
}

.hidden-e0ea .frame_0782 li:last-child {
    margin-bottom: 0;
}

.hidden-e0ea .tooltip_gas_6b1f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hidden-e0ea .tooltip_gas_6b1f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paragraph-75b8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.paragraph-75b8 .warm_2e8f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paragraph-75b8 .paper_4efb {
    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);
}

.paragraph-75b8 .paper_4efb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph-75b8 .paper_4efb p:last-child {
    margin-bottom: 0;
}

.paragraph-75b8 .paper_4efb strong {
    color: var(--text-primary);
}

.paragraph-75b8 .header_tall_5356 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph-75b8 .header_tall_5356 li {
    margin-bottom: 0.65rem;
}

.paragraph-75b8 .header_tall_5356 li:last-child {
    margin-bottom: 0;
}

body.heading_warm_ad39 {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading_warm_ad39 .logo-upper-e3fa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading_warm_ad39 .last_f7c1 {
    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_warm_ad39 .last_f7c1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading_warm_ad39 .last_f7c1 p:last-child {
    margin-bottom: 0;
}

.heading_warm_ad39 .last_f7c1 strong {
    color: var(--text-primary);
}

.heading_warm_ad39 .mini-cd41 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading_warm_ad39 .mini-cd41 li {
    margin-bottom: 0.65rem;
}

.heading_warm_ad39 .mini-cd41 li:last-child {
    margin-bottom: 0;
}

.heading_warm_ad39 .title_hot_693b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading_warm_ad39 .title_hot_693b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pink_59e6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pink_59e6 .card-motion-1e68 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pink_59e6 .yellow_c457 {
    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);
}

.pink_59e6 .yellow_c457 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pink_59e6 .yellow_c457 p:last-child {
    margin-bottom: 0;
}

.pink_59e6 .yellow_c457 strong {
    color: var(--text-primary);
}

.pink_59e6 .link-silver-1358 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pink_59e6 .link-silver-1358 li {
    margin-bottom: 0.65rem;
}

.pink_59e6 .link-silver-1358 li:last-child {
    margin-bottom: 0;
}

.pink_59e6 .breadcrumb-93a2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pink_59e6 .breadcrumb-93a2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focused-276c {
    background: #f8f9fa;
    color: #2c3e50;
}

.focused-276c .slider-9fd0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focused-276c .hidden-ae6b {
    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);
}

.focused-276c .hidden-ae6b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focused-276c .hidden-ae6b p:last-child {
    margin-bottom: 0;
}

.focused-276c .hidden-ae6b strong {
    color: var(--text-primary);
}

.focused-276c .heading_blue_9f09 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focused-276c .heading_blue_9f09 li {
    margin-bottom: 0.65rem;
}

.focused-276c .heading_blue_9f09 li:last-child {
    margin-bottom: 0;
}

.focused-276c .active-down-7e6b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focused-276c .active-down-7e6b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.disabled-south-602e {
    background: #f8f9fa;
    color: #2c3e50;
}

.disabled-south-602e .tabs_gas_75b5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.disabled-south-602e .outline-bronze-135e {
    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);
}

.disabled-south-602e .outline-bronze-135e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-south-602e .outline-bronze-135e p:last-child {
    margin-bottom: 0;
}

.disabled-south-602e .outline-bronze-135e strong {
    color: var(--text-primary);
}

.disabled-south-602e .logo-thick-453f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-south-602e .logo-thick-453f li {
    margin-bottom: 0.65rem;
}

.disabled-south-602e .logo-thick-453f li:last-child {
    margin-bottom: 0;
}

.disabled-south-602e .down-7a68 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.disabled-south-602e .down-7a68 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: 49f0 */
.promo-block-y9 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
