/* 
 * 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.sidebar-slow-1d02) — fixed together on mobile */
.nav-tall-aecc {
    width: 100%;
}

.bright_6532 {
    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) {
    .nav-tall-aecc {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .bright_6532 {
        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.steel-5669. Conta) stay reachable.
     */
    .media-4bde .secondary-right-19ae {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .nav-tall-aecc .media-4bde > .secondary-right-19ae {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .nav-tall-aecc:has(.purple_3781.fn-show-f931) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .nav-tall-aecc:has(.purple_3781.fn-show-f931) .bright_6532 {
        flex-shrink: 0;
    }

    .nav-tall-aecc:has(.purple_3781.fn-show-f931) .media-4bde {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .nav-tall-aecc:has(.purple_3781.fn-show-f931) .media-4bde > .secondary-right-19ae {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .nav-tall-aecc:has(.purple_3781.fn-show-f931) .soft_9d0b {
        flex-shrink: 0;
    }

    .nav-tall-aecc:has(.purple_3781.fn-show-f931) .purple_3781.fn-show-f931 {
        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 */
    .media-4bde .purple_3781 .content_6649.fn-active-f931 .tag_f056 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .bright_6532 {
        position: sticky;
        top: 0;
    }
}

.nav-tall-aecc.component_black_2394,
.nav-tall-aecc.component_black_2394 .bright_6532 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.notice_69c4 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .notice_69c4 {
        padding: 0.75rem 0;
    }
}

.fixed-f792 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.tooltip-aa9f img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .tooltip-aa9f img {
        height: 35px;
    }
}

/* .media-4bde / .tall-62cc — inner pages (brown bar); index uses .detail_e89e below */

.media-4bde:not(.detail_e89e) .tall-62cc.fn-active-f931 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.top_e632 {
    display: flex;
    gap: var(--spacing-md);
}

.summary-dirty-9290,
.pattern-0f0a {
    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) {
    .summary-dirty-9290,
    .pattern-0f0a {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .top_e632 {
        gap: 0.5rem;
    }
}

.summary-dirty-9290 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.summary-dirty-9290:hover {
    background: var(--primary-purple);
    color: white;
}

.pattern-0f0a {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.pattern-0f0a:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.silver-9bcf {
    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%;
}

.silver-9bcf::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;
}

.silver-9bcf::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;
}

.alert-hot-d31a {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.silver_ad52 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.silver_ad52 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);
}

.silver-9bcf 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;
}

.hidden_9881 {
    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;
}

.hidden_9881 strong {
    font-weight: 700;
}

.fresh-afb9 {
    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);
}

.pressed_dee5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.preview-dd47 {
    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);
}

.preview-dd47:hover {
    transform: translateY(-4px);
}

.gradient_fluid_8b6e {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar_1043 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.sidebar-tiny-271f {
    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;
}

.sidebar-tiny-271f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.sidebar-tiny-271f.focus-fc3d {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.tertiary_15fa {
    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);
}

.tertiary_15fa:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.video-562f {
    padding: 3rem 1.25rem;
    background: white;
}

.accordion_simple_b15e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar-dynamic-f6db {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.sidebar-dynamic-f6db:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sidebar-dynamic-f6db img {
    margin-bottom: 1rem;
}

.button-easy-e592 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.sidebar-dynamic-f6db h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sidebar-dynamic-f6db 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 */
.hard-2f49 {
    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);
}

.description_fluid_d431 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-outer-d14d {
    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);
}

.hero-outer-d14d h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.hero-outer-d14d p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.hero-outer-d14d a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.motion-cec7 {
    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
   ======================================== */

.label-hard-1102 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hovered-b645 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.shade-2ac0 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.top_c2bf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel_f0e4 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.carousel_f0e4:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.carousel_f0e4.search-out-6428 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.carousel_f0e4.search-out-6428 h3,
.carousel_f0e4.search-out-6428 p {
    color: white;
}

.orange_58a9 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel_f0e4 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.carousel_f0e4 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.plasma_0ac9 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.plasma_0ac9:hover {
    gap: 0.75rem;
}

.carousel_f0e4.search-out-6428 .plasma_0ac9 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.prev-4924 {
    padding: 4rem 1.25rem;
    background: white;
}

.input-1ff8 {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-pro-4237 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.wide-fbc1 {
    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%;
}

.wide-fbc1:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.light_6faa {
    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);
}

.main-hot-15e5 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.sidebar-3c62 {
    padding: 1.5rem;
}

.sidebar-3c62 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.layout-dirty-d95a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.inner_4979 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.north_b57d,
.nav-medium-c3f1 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.north_b57d {
    background: #dcfce7;
    color: #166534;
}

.north_b57d.hard_2e02 {
    background: #10b981;
    color: white;
}

.nav-medium-c3f1 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.nav-medium-c3f1.slider_huge_126d {
    background: #fee2e2;
    color: #991b1b;
}

.nav-medium-c3f1.table_da56 {
    background: #fef3c7;
    color: #92400e;
}

.nav-medium-c3f1.stone-b2d9 {
    background: #dcfce7;
    color: #166534;
}

.menu-a282 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.menu-a282 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.paragraph_575e {
    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);
}

.paragraph_575e:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.title-31b3 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.focus-liquid-0995 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.current-637b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .current-637b {
        grid-template-columns: 1fr 1fr;
    }
}

.fast-59bf img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.progress_8787 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.detail_6e6b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.easy-1c75 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.easy_ab56 {
    font-size: 1rem;
    opacity: 0.9;
}

.progress_8787 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.thick_6d2f {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.thick_6d2f li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.thick_6d2f 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;
}

.thick_6d2f li strong {
    color: var(--primary-purple);
}

.thick_6d2f li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.up_d895 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.outline_dirty_62c4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.column-selected-2683 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.outline_dirty_62c4 .sidebar_1043 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.media-iron-2315 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.description-482b {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.description-482b a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.under_b39a {
    padding: 4rem 1.25rem;
    background: white;
}

.badge-0bf0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .badge-0bf0 {
        grid-template-columns: 1fr 1fr;
    }
}

.container_cool_ab77 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.inner-abde {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.section-huge-0188 {
    margin-bottom: 1.5rem;
}

.caption_78a3 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.banner-128d {
    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);
}

.chip_hovered_42bf {
    white-space: nowrap;
}

.shadow_d5fe {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.mask_glass_90af h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.list-small-dab6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.list-small-dab6:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.bright_7103 {
    font-size: 2rem;
    flex-shrink: 0;
}

.light_240f h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.light_240f p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.layout-silver-b1f7 {
    margin-top: 3rem;
}

.layout-silver-b1f7 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.sort-in-ba43 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sort-in-ba43 thead {
    background: var(--primary-purple);
    color: white;
}

.sort-in-ba43 th,
.sort-in-ba43 td {
    padding: 1rem;
    text-align: left;
}

.sort-in-ba43 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.sort-in-ba43 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.sort-in-ba43 tbody tr:last-child {
    border-bottom: none;
}

.sort-in-ba43 tbody tr:hover {
    background: var(--light-bg);
}

.logo-068c {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.fresh_07b0 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.cold-f5ab {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.active-1498 {
    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);
}

.active-1498:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.active-1498.layout-bronze-7fa0::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;
}

.medium_f9dc {
    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;
}

.slider-basic-04a0 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.sidebar-green-d270 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.popup_solid_dda5 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.inner_898b {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.inner_898b p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.inner_898b p:last-child {
    margin-bottom: 0;
}

.inner_898b strong {
    color: var(--text-primary);
    font-weight: 600;
}

.orange-9dc6 {
    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;
}

.first-f2df {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.table-huge-bac2 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.table-huge-bac2 .gradient_fluid_8b6e {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.table-huge-bac2 .sidebar_1043 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.tooltip-east-a073 {
    padding: 4rem 1.25rem;
    background: white;
}

.in-898e {
    max-width: 900px;
    margin: 0 auto;
}

.backdrop_fresh_43d8 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.backdrop_fresh_43d8:hover {
    border-color: var(--primary-purple);
}

.backdrop_fresh_43d8[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.backdrop_fresh_43d8 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;
}

.backdrop_fresh_43d8 summary::-webkit-details-marker {
    display: none;
}

.backdrop_fresh_43d8 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.backdrop_fresh_43d8[open] summary::after {
    transform: rotate(45deg);
}

.tabs-8da5 {
    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);
    }
}

.tabs-8da5 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.tabs-8da5 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.tabs-8da5 ul,
.tabs-8da5 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tabs-8da5 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tabs-8da5 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.description_yellow_14f6 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.frame_fresh_d6fa {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.frame_fresh_d6fa th,
.frame_fresh_d6fa td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.frame_fresh_d6fa th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.over-b9cc {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.status-5d07 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.accent_f158 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .accent_f158 {
        flex-direction: column;
        text-align: center;
    }
}

.accent_f158 img {
    flex-shrink: 0;
}

.secondary-wide-e985 {
    font-size: 4rem;
    flex-shrink: 0;
}

.list-plasma-b336 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.list-plasma-b336 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.shadow-4ee7 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.link-current-5108 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.gallery_0ff6 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.gallery_0ff6 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.focus_061d {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.nav_outer_c049 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.breadcrumb_warm_8f76 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tertiary-27d4 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tertiary-27d4 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.gas_e4ac {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.surface-red-d0f1 {
    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);
}

.background_orange_2213 {
    list-style: none;
}

.background_orange_2213 li {
    margin-bottom: 0.75rem;
}

.background_orange_2213 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.background_orange_2213 a:hover {
    color: white;
}

.focused-b5bd {
    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;
}

.dynamic-cf85 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dynamic-cf85 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.wrapper-mini-bf9e {
    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);
}

.advanced-5ea4 {
    text-align: right;
}

@media (max-width: 767px) {
    .advanced-5ea4 {
        text-align: center;
        width: 100%;
    }
}

.advanced-5ea4 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.card_simple_a120 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.secondary-right-19ae {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.video-562f,
.hard-2f49,
.label-hard-1102,
.prev-4924,
.focus-liquid-0995,
.under_b39a,
.fresh_07b0,
.tooltip-east-a073,
.status-5d07,
.link-current-5108 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .hovered-b645 {
        font-size: 1.75rem;
    }
    
    .shade-2ac0 {
        font-size: 1rem;
    }
    
    .up_d895 {
        flex-direction: column;
    }
    
    .badge-0bf0 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .hero-pro-4237 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wide-fbc1 {
        max-width: 100%;
    }
    
    .main-hot-15e5 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .secondary-right-19ae {
        padding: 0 1rem;
    }
    
    .silver-9bcf {
        padding: 4rem 1rem 3rem;
    }
    
    .silver-9bcf h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .sidebar-tiny-271f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .pressed_dee5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .sort-in-ba43,
    .frame_fresh_d6fa {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .accordion_simple_b15e {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .top_c2bf {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .cold-f5ab {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .silver-9bcf h1 {
        font-size: 1.5rem;
    }
    
    .pressed_dee5 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .preview-dd47 {
        padding: 0.75rem;
    }
    
    .gradient_fluid_8b6e {
        font-size: 1.5rem;
    }
    
    .accordion_simple_b15e {
        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 */
.wide-fbc1:hover,
.carousel_f0e4:hover,
.active-1498:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .prev-4924,
    .fresh_07b0,
    .tooltip-east-a073 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.sidebar-slow-1d02)
   ======================================== */

.media-4bde.detail_e89e {
    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;
}

.media-4bde.detail_e89e .tall-62cc {
    color: #334155;
}

.media-4bde.detail_e89e .tall-62cc:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.media-4bde.detail_e89e .tall-62cc.fn-active-f931 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.media-4bde.detail_e89e .tag_f056 {
    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);
}

.media-4bde.detail_e89e .tag_f056::before {
    border-bottom-color: #ffffff;
}

.media-4bde.detail_e89e .lower-c6cc {
    color: #475569;
}

.media-4bde.detail_e89e .lower-c6cc::before {
    background: #818cf8;
}

.media-4bde.detail_e89e .lower-c6cc:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.media-4bde.detail_e89e .lower-c6cc:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.media-4bde.detail_e89e .sidebar-6dd7 {
    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);
}

.media-4bde.detail_e89e .sidebar-6dd7:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.media-4bde.detail_e89e .sidebar-6dd7 span {
    background: #475569;
    box-shadow: none;
}

.media-4bde.detail_e89e .sidebar-6dd7.fn-active-f931 span:nth-child(1),
.media-4bde.detail_e89e .sidebar-6dd7.fn-active-f931 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .media-4bde.detail_e89e {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .media-4bde.detail_e89e .soft_9d0b {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .media-4bde.detail_e89e .soft_9d0b span {
        color: #334155 !important;
    }

    .media-4bde.detail_e89e .purple_3781 {
        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);
    }

    .media-4bde.detail_e89e .purple_3781 .tall-62cc {
        color: #334155;
        text-shadow: none;
    }

    .media-4bde.detail_e89e .purple_3781 .tall-62cc:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .media-4bde.detail_e89e .purple_3781 .tall-62cc.texture-43cd::after {
        color: #64748b;
    }

    .media-4bde.detail_e89e .purple_3781 .tag_f056 {
        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) */
    .media-4bde.detail_e89e .purple_3781 .content_6649.fn-active-f931 .tag_f056 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .media-4bde.detail_e89e .purple_3781 .lower-c6cc {
        color: #475569;
    }

    .media-4bde.detail_e89e .purple_3781 .lower-c6cc::before {
        color: #6366f1;
    }

    .media-4bde.detail_e89e .purple_3781 .lower-c6cc:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .media-4bde.detail_e89e .purple_3781 .lower-c6cc:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .media-4bde.detail_e89e .purple_3781 .lower-c6cc:hover::before {
        color: #4f46e5;
    }
}

/* apk.text-action-078c — mesmo tema claro da home; blocos extras */
body.button-dim-4890 {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-dim-4890 .chip-lower-c827 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-dim-4890 .gas-da5d {
    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);
}

.button-dim-4890 .gas-da5d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-dim-4890 .gas-da5d p:last-child {
    margin-bottom: 0;
}

.button-dim-4890 .gas-da5d strong {
    color: var(--text-primary);
}

.button-dim-4890 .north_0fb9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-dim-4890 .north_0fb9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.overlay_bb70 {
    background: #f8f9fa;
    color: #2c3e50;
}

.overlay_bb70 .table-current-7b22 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.overlay_bb70 .dropdown_96ad {
    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);
}

.overlay_bb70 .dropdown_96ad p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay_bb70 .dropdown_96ad p:last-child {
    margin-bottom: 0;
}

.overlay_bb70 .dropdown_96ad strong {
    color: var(--text-primary);
}

.overlay_bb70 .black-990f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.overlay_bb70 .black-990f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gallery-yellow-0ca4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gallery-yellow-0ca4 .input_top_1ff8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gallery-yellow-0ca4 .block_0758 {
    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);
}

.gallery-yellow-0ca4 .block_0758 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery-yellow-0ca4 .block_0758 p:last-child {
    margin-bottom: 0;
}

.gallery-yellow-0ca4 .block_0758 strong {
    color: var(--text-primary);
}

.gallery-yellow-0ca4 .nav-narrow-8ef9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gallery-yellow-0ca4 .nav-narrow-8ef9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.warm_aef6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.warm_aef6 .feature-a4d4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.warm_aef6 .logo-large-845a {
    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);
}

.warm_aef6 .logo-large-845a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.warm_aef6 .logo-large-845a p:last-child {
    margin-bottom: 0;
}

.warm_aef6 .logo-large-845a strong {
    color: var(--text-primary);
}

.warm_aef6 .north_c7a7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.warm_aef6 .north_c7a7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern_26dc {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern_26dc .pagination_out_3e4f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern_26dc .first-9216 {
    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);
}

.pattern_26dc .first-9216 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_26dc .first-9216 p:last-child {
    margin-bottom: 0;
}

.pattern_26dc .first-9216 strong {
    color: var(--text-primary);
}

.pattern_26dc .action_3743 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern_26dc .action_3743 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_e07f {
    background: #f8f9fa;
    color: #2c3e50;
}

.new_e07f .large-66d1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.new_e07f .soft_af46 {
    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_e07f .soft_af46 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.new_e07f .soft_af46 p:last-child {
    margin-bottom: 0;
}

.new_e07f .soft_af46 strong {
    color: var(--text-primary);
}

.new_e07f .widget_steel_a303 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.new_e07f .widget_steel_a303 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tooltip-dim-e65b {
    background: #f8f9fa;
    color: #2c3e50;
}

.tooltip-dim-e65b .breadcrumb_rough_c32a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tooltip-dim-e65b .label_warm_a099 {
    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);
}

.tooltip-dim-e65b .label_warm_a099 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip-dim-e65b .label_warm_a099 p:last-child {
    margin-bottom: 0;
}

.tooltip-dim-e65b .label_warm_a099 strong {
    color: var(--text-primary);
}

.tooltip-dim-e65b .panel_iron_eecf {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tooltip-dim-e65b .panel_iron_eecf img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern_4628 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern_4628 .element-9d24 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern_4628 .header_da99 {
    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);
}

.pattern_4628 .header_da99 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_4628 .header_da99 p:last-child {
    margin-bottom: 0;
}

.pattern_4628 .header_da99 strong {
    color: var(--text-primary);
}

.pattern_4628 .large_7ba4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern_4628 .large_7ba4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dark-b18d {
    background: #f8f9fa;
    color: #2c3e50;
}

.dark-b18d .out_73d0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dark-b18d .video_dd25 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.dark-b18d .video_dd25 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dark-b18d .video_dd25 p:last-child {
    margin-bottom: 0;
}

.dark-b18d .video_dd25 strong {
    color: var(--text-primary);
}

.dark-b18d .simple-f431 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dark-b18d .simple-f431 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-4a05 {
    background: #f8f9fa;
    color: #2c3e50;
}

.disabled-4a05 .gas_a3a9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.disabled-4a05 .section-brown-c0a8 {
    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-4a05 .section-brown-c0a8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-4a05 .section-brown-c0a8 p:last-child {
    margin-bottom: 0;
}

.disabled-4a05 .section-brown-c0a8 strong {
    color: var(--text-primary);
}

.disabled-4a05 .video_a7f1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.disabled-4a05 .video_a7f1 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_pro_807e {
    background: #f8f9fa;
    color: #2c3e50;
}

.secondary_pro_807e .message-last-19b7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.secondary_pro_807e .overlay_smooth_75f6 {
    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_pro_807e .overlay_smooth_75f6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary_pro_807e .overlay_smooth_75f6 p:last-child {
    margin-bottom: 0;
}

.secondary_pro_807e .overlay_smooth_75f6 strong {
    color: var(--text-primary);
}

.secondary_pro_807e .stale-4d53 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary_pro_807e .stale-4d53 li {
    margin-bottom: 0.65rem;
}

.secondary_pro_807e .stale-4d53 li:last-child {
    margin-bottom: 0;
}

.secondary_pro_807e .west-9c09 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.secondary_pro_807e .west-9c09 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thumbnail_yellow_f1bb {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_yellow_f1bb .video_f25a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_yellow_f1bb .caption-cool-d62b {
    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);
}

.thumbnail_yellow_f1bb .caption-cool-d62b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_yellow_f1bb .caption-cool-d62b p:last-child {
    margin-bottom: 0;
}

.thumbnail_yellow_f1bb .caption-cool-d62b strong {
    color: var(--text-primary);
}

.thumbnail_yellow_f1bb .in_26f0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_yellow_f1bb .in_26f0 li {
    margin-bottom: 0.65rem;
}

.thumbnail_yellow_f1bb .in_26f0 li:last-child {
    margin-bottom: 0;
}

.thumbnail_yellow_f1bb .filter-5f70 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail_yellow_f1bb .filter-5f70 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_687a {
    background: #f8f9fa;
    color: #2c3e50;
}

.north_687a .video_935d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.north_687a .link-a5f7 {
    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_687a .link-a5f7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north_687a .link-a5f7 p:last-child {
    margin-bottom: 0;
}

.north_687a .link-a5f7 strong {
    color: var(--text-primary);
}

.north_687a .grid_e83c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north_687a .grid_e83c li {
    margin-bottom: 0.65rem;
}

.north_687a .grid_e83c li:last-child {
    margin-bottom: 0;
}

.north_687a .element_44a8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.north_687a .element_44a8 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-2acc {
    background: #f8f9fa;
    color: #2c3e50;
}

.disabled-2acc .active-inner-76d4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.disabled-2acc .table_thick_b49d {
    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-2acc .table_thick_b49d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-2acc .table_thick_b49d p:last-child {
    margin-bottom: 0;
}

.disabled-2acc .table_thick_b49d strong {
    color: var(--text-primary);
}

.disabled-2acc .logo-black-e7af {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-2acc .logo-black-e7af li {
    margin-bottom: 0.65rem;
}

.disabled-2acc .logo-black-e7af li:last-child {
    margin-bottom: 0;
}

body.tooltip-north-5833 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tooltip-north-5833 .element_1a5a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tooltip-north-5833 .plasma_13c8 {
    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);
}

.tooltip-north-5833 .plasma_13c8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip-north-5833 .plasma_13c8 p:last-child {
    margin-bottom: 0;
}

.tooltip-north-5833 .plasma_13c8 strong {
    color: var(--text-primary);
}

.tooltip-north-5833 .red-f74c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip-north-5833 .red-f74c li {
    margin-bottom: 0.65rem;
}

.tooltip-north-5833 .red-f74c li:last-child {
    margin-bottom: 0;
}

.tooltip-north-5833 .layout-medium-987b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tooltip-north-5833 .layout-medium-987b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.background-pressed-c8de {
    background: #f8f9fa;
    color: #2c3e50;
}

.background-pressed-c8de .texture-f508 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.background-pressed-c8de .content_41be {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.background-pressed-c8de .content_41be p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-pressed-c8de .content_41be p:last-child {
    margin-bottom: 0;
}

.background-pressed-c8de .content_41be strong {
    color: var(--text-primary);
}

.background-pressed-c8de .up-cb0e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-pressed-c8de .up-cb0e li {
    margin-bottom: 0.65rem;
}

.background-pressed-c8de .up-cb0e li:last-child {
    margin-bottom: 0;
}

.background-pressed-c8de .text_left_c375 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.background-pressed-c8de .text_left_c375 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.title-dynamic-7f50 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-dynamic-7f50 .hero-d3f8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-dynamic-7f50 .surface-323a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.title-dynamic-7f50 .surface-323a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-dynamic-7f50 .surface-323a p:last-child {
    margin-bottom: 0;
}

.title-dynamic-7f50 .surface-323a strong {
    color: var(--text-primary);
}

.title-dynamic-7f50 .shadow_3d22 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-dynamic-7f50 .shadow_3d22 li {
    margin-bottom: 0.65rem;
}

.title-dynamic-7f50 .shadow_3d22 li:last-child {
    margin-bottom: 0;
}

.title-dynamic-7f50 .slow-c9c5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title-dynamic-7f50 .slow-c9c5 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_55fc {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer_55fc .column_tiny_ed15 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer_55fc .grid_51f7 {
    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_55fc .grid_51f7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_55fc .grid_51f7 p:last-child {
    margin-bottom: 0;
}

.footer_55fc .grid_51f7 strong {
    color: var(--text-primary);
}

.footer_55fc .breadcrumb_west_9e5e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_55fc .breadcrumb_west_9e5e li {
    margin-bottom: 0.65rem;
}

.footer_55fc .breadcrumb_west_9e5e li:last-child {
    margin-bottom: 0;
}

.footer_55fc .disabled-blue-789e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer_55fc .disabled-blue-789e 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: bb8f */
.ghost-box-g2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
