/* 
 * 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.highlight_bb62) — fixed together on mobile */
.sidebar_pressed_e304 {
    width: 100%;
}

.sidebar_solid_010c {
    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) {
    .sidebar_pressed_e304 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .sidebar_solid_010c {
        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.column-right-adc1. Conta) stay reachable.
     */
    .progress_north_2e76 .component-f470 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .sidebar_pressed_e304 .progress_north_2e76 > .component-f470 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .sidebar_pressed_e304:has(.cold-b4b8.fn-show-bc2a) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .sidebar_pressed_e304:has(.cold-b4b8.fn-show-bc2a) .sidebar_solid_010c {
        flex-shrink: 0;
    }

    .sidebar_pressed_e304:has(.cold-b4b8.fn-show-bc2a) .progress_north_2e76 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .sidebar_pressed_e304:has(.cold-b4b8.fn-show-bc2a) .progress_north_2e76 > .component-f470 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .sidebar_pressed_e304:has(.cold-b4b8.fn-show-bc2a) .tooltip-ec5c {
        flex-shrink: 0;
    }

    .sidebar_pressed_e304:has(.cold-b4b8.fn-show-bc2a) .cold-b4b8.fn-show-bc2a {
        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 */
    .progress_north_2e76 .cold-b4b8 .aside_a8b5.fn-active-bc2a .west-3d62 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .sidebar_solid_010c {
        position: sticky;
        top: 0;
    }
}

.sidebar_pressed_e304.next_4725,
.sidebar_pressed_e304.next_4725 .sidebar_solid_010c {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.red-07cb {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .red-07cb {
        padding: 0.75rem 0;
    }
}

.panel-gold-cf41 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.backdrop-east-99ad img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .backdrop-east-99ad img {
        height: 35px;
    }
}

/* .progress_north_2e76 / .yellow-491e — inner pages (brown bar); index uses .title_fast_a8a5 below */

.progress_north_2e76:not(.title_fast_a8a5) .yellow-491e.fn-active-bc2a {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.filter-1a2a {
    display: flex;
    gap: var(--spacing-md);
}

.motion_f152,
.outline-fast-2435 {
    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) {
    .motion_f152,
    .outline-fast-2435 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .filter-1a2a {
        gap: 0.5rem;
    }
}

.motion_f152 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.motion_f152:hover {
    background: var(--primary-purple);
    color: white;
}

.outline-fast-2435 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.outline-fast-2435:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.cool_db1d {
    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%;
}

.cool_db1d::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;
}

.cool_db1d::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;
}

.static_1a35 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.out-213a {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.out-213a 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);
}

.cool_db1d 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;
}

.progress_outer_8395 {
    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;
}

.progress_outer_8395 strong {
    font-weight: 700;
}

.chip-inner-e316 {
    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);
}

.gradient-9da9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.cold-fbd6 {
    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);
}

.cold-fbd6:hover {
    transform: translateY(-4px);
}

.out_7250 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.hover_ea8b {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.badge-yellow-e66b {
    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;
}

.badge-yellow-e66b:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.badge-yellow-e66b.primary_04fe {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.notice_3809 {
    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);
}

.notice_3809:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.table-b13a {
    padding: 3rem 1.25rem;
    background: white;
}

.box-75cd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.item-6214 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.item-6214:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.item-6214 img {
    margin-bottom: 1rem;
}

.gradient_a1d9 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.item-6214 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.item-6214 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_911b {
    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);
}

.outer_b0c7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.accordion_3645 {
    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);
}

.accordion_3645 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.accordion_3645 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.accordion_3645 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.advanced_f932 {
    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
   ======================================== */

.main_3ef6 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pagination_3e22 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.middle-303a {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.hover_427f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.popup_clean_8d5c {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.popup_clean_8d5c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.popup_clean_8d5c.hard_f036 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.popup_clean_8d5c.hard_f036 h3,
.popup_clean_8d5c.hard_f036 p {
    color: white;
}

.static-3bb9 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.popup_clean_8d5c h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.popup_clean_8d5c p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.advanced_81e7 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.advanced_81e7:hover {
    gap: 0.75rem;
}

.popup_clean_8d5c.hard_f036 .advanced_81e7 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.detail_medium_7948 {
    padding: 4rem 1.25rem;
    background: white;
}

.frame-08c7 {
    text-align: center;
    margin-bottom: 3rem;
}

.smooth-ce7c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.south_e8a0 {
    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%;
}

.south_e8a0:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.shadow-fresh-4b24 {
    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);
}

.solid-723f {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.west-f8fd {
    padding: 1.5rem;
}

.west-f8fd h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.stale-2cfd {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.widget_soft_5bc1 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.menu_7623,
.summary-5c7a {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.menu_7623 {
    background: #dcfce7;
    color: #166534;
}

.menu_7623.list-hard-fd2d {
    background: #10b981;
    color: white;
}

.summary-5c7a {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.summary-5c7a.static-628e {
    background: #fee2e2;
    color: #991b1b;
}

.summary-5c7a.media-d0e3 {
    background: #fef3c7;
    color: #92400e;
}

.summary-5c7a.accordion-liquid-23f9 {
    background: #dcfce7;
    color: #166534;
}

.fast-6c2b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fast-6c2b strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.orange-a609 {
    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);
}

.orange-a609:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.hard_f14a {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.background_74a9 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.east_3fef {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .east_3fef {
        grid-template-columns: 1fr 1fr;
    }
}

.smooth_73a4 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.solid-8685 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent_top_6b7d {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.east-0358 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-76a6 {
    font-size: 1rem;
    opacity: 0.9;
}

.solid-8685 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.focus_dynamic_cfdb {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.focus_dynamic_cfdb li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.focus_dynamic_cfdb 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;
}

.focus_dynamic_cfdb li strong {
    color: var(--primary-purple);
}

.focus_dynamic_cfdb li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.red-54a3 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.media-outer-c265 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.search-simple-a87d {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.media-outer-c265 .hover_ea8b {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.paper_4f38 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.blue-642f {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.blue-642f a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.blue_e2c0 {
    padding: 4rem 1.25rem;
    background: white;
}

.surface_019d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .surface_019d {
        grid-template-columns: 1fr 1fr;
    }
}

.outline-top-b2ec h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.shade_right_92f9 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.solid_1614 {
    margin-bottom: 1.5rem;
}

.disabled-plasma-f740 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.popup_yellow_c10b {
    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);
}

.tooltip-db4f {
    white-space: nowrap;
}

.upper-d592 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.inner-0f33 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.steel_49ca {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.steel_49ca:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.notice-over-2682 {
    font-size: 2rem;
    flex-shrink: 0;
}

.outline-hovered-3253 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.outline-hovered-3253 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.filter-fluid-1472 {
    margin-top: 3rem;
}

.filter-fluid-1472 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gas_0f68 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gas_0f68 thead {
    background: var(--primary-purple);
    color: white;
}

.gas_0f68 th,
.gas_0f68 td {
    padding: 1rem;
    text-align: left;
}

.gas_0f68 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.gas_0f68 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.gas_0f68 tbody tr:last-child {
    border-bottom: none;
}

.gas_0f68 tbody tr:hover {
    background: var(--light-bg);
}

.table-basic-68c4 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.slider_d38d {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.down_02b0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.shade_fast_f7d0 {
    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);
}

.shade_fast_f7d0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.shade_fast_f7d0.upper-9a48::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;
}

.old-bf58 {
    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;
}

.photo_9de8 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.list_3b02 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.status_selected_e8df {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.detail-4de0 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.detail-4de0 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.detail-4de0 p:last-child {
    margin-bottom: 0;
}

.detail-4de0 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bottom_71d5 {
    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;
}

.paragraph-gold-97be {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.large-7fb9 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.large-7fb9 .out_7250 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.large-7fb9 .hover_ea8b {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.current-7c74 {
    padding: 4rem 1.25rem;
    background: white;
}

.main_d3bd {
    max-width: 900px;
    margin: 0 auto;
}

.clean_658d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.clean_658d:hover {
    border-color: var(--primary-purple);
}

.clean_658d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.clean_658d 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;
}

.clean_658d summary::-webkit-details-marker {
    display: none;
}

.clean_658d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.clean_658d[open] summary::after {
    transform: rotate(45deg);
}

.pagination-2afe {
    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);
    }
}

.pagination-2afe p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pagination-2afe h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.pagination-2afe ul,
.pagination-2afe ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.pagination-2afe li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pagination-2afe strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pressed_cf80 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.inner-931c {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.inner-931c th,
.inner-931c td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.inner-931c th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.caption-7031 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.summary-basic-78a5 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.chip-gas-d2c6 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .chip-gas-d2c6 {
        flex-direction: column;
        text-align: center;
    }
}

.chip-gas-d2c6 img {
    flex-shrink: 0;
}

.component_white_31a2 {
    font-size: 4rem;
    flex-shrink: 0;
}

.hard_5716 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hard_5716 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.in_6aad {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.gold-9ad4 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.content-tiny-c1e3 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.content-tiny-c1e3 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.status_fa5e {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.primary-c866 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.article_glass_9e2c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.component_bronze_bb90 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.component_bronze_bb90 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.first_cd7e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.table-8096 {
    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);
}

.new-a691 {
    list-style: none;
}

.new-a691 li {
    margin-bottom: 0.75rem;
}

.new-a691 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.new-a691 a:hover {
    color: white;
}

.hidden_5382 {
    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;
}

.blue_c7ff {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blue_c7ff span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tertiary_out_514a {
    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);
}

.icon_mini_ca05 {
    text-align: right;
}

@media (max-width: 767px) {
    .icon_mini_ca05 {
        text-align: center;
        width: 100%;
    }
}

.icon_mini_ca05 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.wrapper-f576 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.component-f470 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.table-b13a,
.hard_911b,
.main_3ef6,
.detail_medium_7948,
.background_74a9,
.blue_e2c0,
.slider_d38d,
.current-7c74,
.summary-basic-78a5,
.gold-9ad4 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .pagination_3e22 {
        font-size: 1.75rem;
    }
    
    .middle-303a {
        font-size: 1rem;
    }
    
    .red-54a3 {
        flex-direction: column;
    }
    
    .surface_019d {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .smooth-ce7c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .south_e8a0 {
        max-width: 100%;
    }
    
    .solid-723f {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .component-f470 {
        padding: 0 1rem;
    }
    
    .cool_db1d {
        padding: 4rem 1rem 3rem;
    }
    
    .cool_db1d h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .badge-yellow-e66b {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .gradient-9da9 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .gas_0f68,
    .inner-931c {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .box-75cd {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .hover_427f {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .down_02b0 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .cool_db1d h1 {
        font-size: 1.5rem;
    }
    
    .gradient-9da9 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .cold-fbd6 {
        padding: 0.75rem;
    }
    
    .out_7250 {
        font-size: 1.5rem;
    }
    
    .box-75cd {
        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 */
.south_e8a0:hover,
.popup_clean_8d5c:hover,
.shade_fast_f7d0:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .detail_medium_7948,
    .slider_d38d,
    .current-7c74 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.highlight_bb62)
   ======================================== */

.progress_north_2e76.title_fast_a8a5 {
    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;
}

.progress_north_2e76.title_fast_a8a5 .yellow-491e {
    color: #334155;
}

.progress_north_2e76.title_fast_a8a5 .yellow-491e:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.progress_north_2e76.title_fast_a8a5 .yellow-491e.fn-active-bc2a {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.progress_north_2e76.title_fast_a8a5 .west-3d62 {
    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);
}

.progress_north_2e76.title_fast_a8a5 .west-3d62::before {
    border-bottom-color: #ffffff;
}

.progress_north_2e76.title_fast_a8a5 .logo-prev-85fa {
    color: #475569;
}

.progress_north_2e76.title_fast_a8a5 .logo-prev-85fa::before {
    background: #818cf8;
}

.progress_north_2e76.title_fast_a8a5 .logo-prev-85fa:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.progress_north_2e76.title_fast_a8a5 .logo-prev-85fa:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.progress_north_2e76.title_fast_a8a5 .highlight_5c9a {
    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);
}

.progress_north_2e76.title_fast_a8a5 .highlight_5c9a:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.progress_north_2e76.title_fast_a8a5 .highlight_5c9a span {
    background: #475569;
    box-shadow: none;
}

.progress_north_2e76.title_fast_a8a5 .highlight_5c9a.fn-active-bc2a span:nth-child(1),
.progress_north_2e76.title_fast_a8a5 .highlight_5c9a.fn-active-bc2a span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .progress_north_2e76.title_fast_a8a5 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .progress_north_2e76.title_fast_a8a5 .tooltip-ec5c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .progress_north_2e76.title_fast_a8a5 .tooltip-ec5c span {
        color: #334155 !important;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 {
        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);
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .yellow-491e {
        color: #334155;
        text-shadow: none;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .yellow-491e:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .yellow-491e.tabs_939f::after {
        color: #64748b;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .west-3d62 {
        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) */
    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .aside_a8b5.fn-active-bc2a .west-3d62 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .logo-prev-85fa {
        color: #475569;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .logo-prev-85fa::before {
        color: #6366f1;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .logo-prev-85fa:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .logo-prev-85fa:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .progress_north_2e76.title_fast_a8a5 .cold-b4b8 .logo-prev-85fa:hover::before {
        color: #4f46e5;
    }
}

/* apk.basic_fb9d — mesmo tema claro da home; blocos extras */
body.wide-8a09 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wide-8a09 .overlay_old_2d3c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wide-8a09 .current-39be {
    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);
}

.wide-8a09 .current-39be p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wide-8a09 .current-39be p:last-child {
    margin-bottom: 0;
}

.wide-8a09 .current-39be strong {
    color: var(--text-primary);
}

.wide-8a09 .breadcrumb_fd51 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wide-8a09 .breadcrumb_fd51 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pagination_5b75 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pagination_5b75 .carousel_full_bdfe {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pagination_5b75 .component-focused-9c2c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.pagination_5b75 .component-focused-9c2c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pagination_5b75 .component-focused-9c2c p:last-child {
    margin-bottom: 0;
}

.pagination_5b75 .component-focused-9c2c strong {
    color: var(--text-primary);
}

.pagination_5b75 .notice_smooth_7e5a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pagination_5b75 .notice_smooth_7e5a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.header_7b9a {
    background: #f8f9fa;
    color: #2c3e50;
}

.header_7b9a .status_75db {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.header_7b9a .shade_29f2 {
    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);
}

.header_7b9a .shade_29f2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.header_7b9a .shade_29f2 p:last-child {
    margin-bottom: 0;
}

.header_7b9a .shade_29f2 strong {
    color: var(--text-primary);
}

.header_7b9a .status-action-4ce4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.header_7b9a .status-action-4ce4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.block_in_dd0a {
    background: #f8f9fa;
    color: #2c3e50;
}

.block_in_dd0a .block-right-bda6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.block_in_dd0a .search_6c49 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.block_in_dd0a .search_6c49 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block_in_dd0a .search_6c49 p:last-child {
    margin-bottom: 0;
}

.block_in_dd0a .search_6c49 strong {
    color: var(--text-primary);
}

.block_in_dd0a .selected-5fd2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.block_in_dd0a .selected-5fd2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.avatar-out-016f {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar-out-016f .list-46d4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar-out-016f .texture_hovered_257c {
    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);
}

.avatar-out-016f .texture_hovered_257c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar-out-016f .texture_hovered_257c p:last-child {
    margin-bottom: 0;
}

.avatar-out-016f .texture_hovered_257c strong {
    color: var(--text-primary);
}

.avatar-out-016f .feature-70df {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar-out-016f .feature-70df img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.fast_4692 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fast_4692 .upper-1620 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fast_4692 .table_full_46fd {
    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);
}

.fast_4692 .table_full_46fd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fast_4692 .table_full_46fd p:last-child {
    margin-bottom: 0;
}

.fast_4692 .table_full_46fd strong {
    color: var(--text-primary);
}

.fast_4692 .hovered_3f46 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fast_4692 .hovered_3f46 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accordion-e1de {
    background: #f8f9fa;
    color: #2c3e50;
}

.accordion-e1de .south_a994 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accordion-e1de .gold-ee61 {
    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);
}

.accordion-e1de .gold-ee61 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accordion-e1de .gold-ee61 p:last-child {
    margin-bottom: 0;
}

.accordion-e1de .gold-ee61 strong {
    color: var(--text-primary);
}

.accordion-e1de .last-b380 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accordion-e1de .last-b380 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hero_5b69 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hero_5b69 .highlight-88e2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hero_5b69 .breadcrumb-black-d4b6 {
    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);
}

.hero_5b69 .breadcrumb-black-d4b6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hero_5b69 .breadcrumb-black-d4b6 p:last-child {
    margin-bottom: 0;
}

.hero_5b69 .breadcrumb-black-d4b6 strong {
    color: var(--text-primary);
}

.hero_5b69 .primary-ccb5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hero_5b69 .primary-ccb5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.info_dc42 {
    background: #f8f9fa;
    color: #2c3e50;
}

.info_dc42 .last_ea3e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.info_dc42 .input-prev-34ba {
    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);
}

.info_dc42 .input-prev-34ba p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.info_dc42 .input-prev-34ba p:last-child {
    margin-bottom: 0;
}

.info_dc42 .input-prev-34ba strong {
    color: var(--text-primary);
}

.info_dc42 .feature-short-67e1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.info_dc42 .feature-short-67e1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.iron-3c61 {
    background: #f8f9fa;
    color: #2c3e50;
}

.iron-3c61 .shadow_fixed_bb94 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.iron-3c61 .video-c8f8 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.iron-3c61 .video-c8f8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.iron-3c61 .video-c8f8 p:last-child {
    margin-bottom: 0;
}

.iron-3c61 .video-c8f8 strong {
    color: var(--text-primary);
}

.iron-3c61 .label-4b00 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.iron-3c61 .label-4b00 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.active_static_bac5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.active_static_bac5 .brown-af8e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active_static_bac5 .picture_next_5bf4 {
    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);
}

.active_static_bac5 .picture_next_5bf4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active_static_bac5 .picture_next_5bf4 p:last-child {
    margin-bottom: 0;
}

.active_static_bac5 .picture_next_5bf4 strong {
    color: var(--text-primary);
}

.active_static_bac5 .accent_west_45e8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active_static_bac5 .accent_west_45e8 li {
    margin-bottom: 0.65rem;
}

.active_static_bac5 .accent_west_45e8 li:last-child {
    margin-bottom: 0;
}

.active_static_bac5 .header-pressed-e5f6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active_static_bac5 .header-pressed-e5f6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.out_518c {
    background: #f8f9fa;
    color: #2c3e50;
}

.out_518c .photo-silver-9c29 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.out_518c .input-f53e {
    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);
}

.out_518c .input-f53e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.out_518c .input-f53e p:last-child {
    margin-bottom: 0;
}

.out_518c .input-f53e strong {
    color: var(--text-primary);
}

.out_518c .texture-hovered-e59a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.out_518c .texture-hovered-e59a li {
    margin-bottom: 0.65rem;
}

.out_518c .texture-hovered-e59a li:last-child {
    margin-bottom: 0;
}

.out_518c .gallery_thick_d3c8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.out_518c .gallery_thick_d3c8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focus_2ae3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.focus_2ae3 .iron-27c6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focus_2ae3 .text-thick-c7a4 {
    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);
}

.focus_2ae3 .text-thick-c7a4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus_2ae3 .text-thick-c7a4 p:last-child {
    margin-bottom: 0;
}

.focus_2ae3 .text-thick-c7a4 strong {
    color: var(--text-primary);
}

.focus_2ae3 .blue-5541 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus_2ae3 .blue-5541 li {
    margin-bottom: 0.65rem;
}

.focus_2ae3 .blue-5541 li:last-child {
    margin-bottom: 0;
}

.focus_2ae3 .fixed_a5ac {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focus_2ae3 .fixed_a5ac img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.photo-iron-0ff0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo-iron-0ff0 .content_inner_0545 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo-iron-0ff0 .list-fce0 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.photo-iron-0ff0 .list-fce0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-iron-0ff0 .list-fce0 p:last-child {
    margin-bottom: 0;
}

.photo-iron-0ff0 .list-fce0 strong {
    color: var(--text-primary);
}

.photo-iron-0ff0 .up-7752 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-iron-0ff0 .up-7752 li {
    margin-bottom: 0.65rem;
}

.photo-iron-0ff0 .up-7752 li:last-child {
    margin-bottom: 0;
}

body.text_short_65e4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.text_short_65e4 .liquid_ce5b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.text_short_65e4 .disabled_6e5e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.text_short_65e4 .disabled_6e5e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_short_65e4 .disabled_6e5e p:last-child {
    margin-bottom: 0;
}

.text_short_65e4 .disabled_6e5e strong {
    color: var(--text-primary);
}

.text_short_65e4 .detail-black-9746 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_short_65e4 .detail-black-9746 li {
    margin-bottom: 0.65rem;
}

.text_short_65e4 .detail-black-9746 li:last-child {
    margin-bottom: 0;
}

.text_short_65e4 .banner_5000 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.text_short_65e4 .banner_5000 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shade_7ea2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade_7ea2 .surface_current_9f69 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade_7ea2 .accordion_76af {
    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);
}

.shade_7ea2 .accordion_76af p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade_7ea2 .accordion_76af p:last-child {
    margin-bottom: 0;
}

.shade_7ea2 .accordion_76af strong {
    color: var(--text-primary);
}

.shade_7ea2 .logo-a76c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade_7ea2 .logo-a76c li {
    margin-bottom: 0.65rem;
}

.shade_7ea2 .logo-a76c li:last-child {
    margin-bottom: 0;
}

.shade_7ea2 .focused_8252 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade_7ea2 .focused_8252 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.status-south-0224 {
    background: #f8f9fa;
    color: #2c3e50;
}

.status-south-0224 .header_77a0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.status-south-0224 .texture_stale_299a {
    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);
}

.status-south-0224 .texture_stale_299a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-south-0224 .texture_stale_299a p:last-child {
    margin-bottom: 0;
}

.status-south-0224 .texture_stale_299a strong {
    color: var(--text-primary);
}

.status-south-0224 .pagination_8771 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-south-0224 .pagination_8771 li {
    margin-bottom: 0.65rem;
}

.status-south-0224 .pagination_8771 li:last-child {
    margin-bottom: 0;
}

.status-south-0224 .lower_9f1b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.status-south-0224 .lower_9f1b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.south-324a {
    background: #f8f9fa;
    color: #2c3e50;
}

.south-324a .widget-top-636f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.south-324a .list_b099 {
    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);
}

.south-324a .list_b099 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south-324a .list_b099 p:last-child {
    margin-bottom: 0;
}

.south-324a .list_b099 strong {
    color: var(--text-primary);
}

.south-324a .cool_2734 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south-324a .cool_2734 li {
    margin-bottom: 0.65rem;
}

.south-324a .cool_2734 li:last-child {
    margin-bottom: 0;
}

.south-324a .paragraph-5556 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.south-324a .paragraph-5556 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: f4b4 */
.ghost-box-h5 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
