/* 
 * 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.paper_75e1) — fixed together on mobile */
.layout-5bb5 {
    width: 100%;
}

.smooth_34d8 {
    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) {
    .layout-5bb5 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .smooth_34d8 {
        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.filter-c830. Conta) stay reachable.
     */
    .tabs-complex-c958 .aside_inner_abd3 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .layout-5bb5 .tabs-complex-c958 > .aside_inner_abd3 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .layout-5bb5:has(.block_7467.fn-show-3c3e) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .layout-5bb5:has(.block_7467.fn-show-3c3e) .smooth_34d8 {
        flex-shrink: 0;
    }

    .layout-5bb5:has(.block_7467.fn-show-3c3e) .tabs-complex-c958 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .layout-5bb5:has(.block_7467.fn-show-3c3e) .tabs-complex-c958 > .aside_inner_abd3 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .layout-5bb5:has(.block_7467.fn-show-3c3e) .primary-3854 {
        flex-shrink: 0;
    }

    .layout-5bb5:has(.block_7467.fn-show-3c3e) .block_7467.fn-show-3c3e {
        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 */
    .tabs-complex-c958 .block_7467 .list-e2f3.fn-active-3c3e .layout-71f5 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .smooth_34d8 {
        position: sticky;
        top: 0;
    }
}

.layout-5bb5.bronze-fc14,
.layout-5bb5.bronze-fc14 .smooth_34d8 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hover-hovered-2dec {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .hover-hovered-2dec {
        padding: 0.75rem 0;
    }
}

.east-1f2f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.lower-4374 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .lower-4374 img {
        height: 35px;
    }
}

/* .tabs-complex-c958 / .table_green_abb9 — inner pages (brown bar); index uses .notification-basic-25d7 below */

.tabs-complex-c958:not(.notification-basic-25d7) .table_green_abb9.fn-active-3c3e {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.outer_c762 {
    display: flex;
    gap: var(--spacing-md);
}

.active_73e1,
.liquid-c22f {
    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) {
    .active_73e1,
    .liquid-c22f {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .outer_c762 {
        gap: 0.5rem;
    }
}

.active_73e1 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.active_73e1:hover {
    background: var(--primary-purple);
    color: white;
}

.liquid-c22f {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.liquid-c22f:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.notification-64c3 {
    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%;
}

.notification-64c3::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;
}

.notification-64c3::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;
}

.overlay_black_8271 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.thumbnail-6dbe {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.thumbnail-6dbe 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);
}

.notification-64c3 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;
}

.banner-2e10 {
    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;
}

.banner-2e10 strong {
    font-weight: 700;
}

.menu-wide-bc0c {
    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);
}

.pagination_5639 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.image_9d31 {
    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);
}

.image_9d31:hover {
    transform: translateY(-4px);
}

.hero_stone_5d92 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.dropdown_gold_520a {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.layout-pro-9d34 {
    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;
}

.layout-pro-9d34:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.layout-pro-9d34.focused_1fa3 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.media-stale-bc09 {
    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);
}

.media-stale-bc09:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.popup-eb3c {
    padding: 3rem 1.25rem;
    background: white;
}

.content_dark_3013 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-6903 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.summary-6903:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.summary-6903 img {
    margin-bottom: 1rem;
}

.column-be16 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.summary-6903 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.summary-6903 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 */
.dark-ea6a {
    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_e6ce {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.old_ab05 {
    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);
}

.old_ab05 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.old_ab05 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.old_ab05 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.slider_first_6e5b {
    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
   ======================================== */

.progress_cool_8dcd {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.media-hard-1631 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.silver-448a {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.table-7077 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fluid-7940 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.fluid-7940:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.fluid-7940.shade-8d04 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fluid-7940.shade-8d04 h3,
.fluid-7940.shade-8d04 p {
    color: white;
}

.layout-4303 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fluid-7940 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.fluid-7940 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.preview_9637 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.preview_9637:hover {
    gap: 0.75rem;
}

.fluid-7940.shade-8d04 .preview_9637 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.section-plasma-13fb {
    padding: 4rem 1.25rem;
    background: white;
}

.complex-eaa2 {
    text-align: center;
    margin-bottom: 3rem;
}

.left_b8c7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.photo_tiny_20b9 {
    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%;
}

.photo_tiny_20b9:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.filter-thick-6baf {
    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);
}

.full_9bf6 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.outline-soft-6a7e {
    padding: 1.5rem;
}

.outline-soft-6a7e h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.logo_bb7c {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.search_f2e2 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.secondary-brown-510a,
.row-0b9b {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.secondary-brown-510a {
    background: #dcfce7;
    color: #166534;
}

.secondary-brown-510a.light-6064 {
    background: #10b981;
    color: white;
}

.row-0b9b {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.row-0b9b.narrow-264f {
    background: #fee2e2;
    color: #991b1b;
}

.row-0b9b.wide-7c51 {
    background: #fef3c7;
    color: #92400e;
}

.row-0b9b.bottom_2c6f {
    background: #dcfce7;
    color: #166534;
}

.slider-black-b36c {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.slider-black-b36c strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.wide_c8aa {
    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);
}

.wide_c8aa:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.nav-57a7 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.surface-stone-b2ce {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.primary_f3c9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .primary_f3c9 {
        grid-template-columns: 1fr 1fr;
    }
}

.tall_03a9 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.steel-c995 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.caption_0d71 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.footer_east_e2c9 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pro-cefc {
    font-size: 1rem;
    opacity: 0.9;
}

.steel-c995 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.selected_44c0 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.selected_44c0 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.selected_44c0 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;
}

.selected_44c0 li strong {
    color: var(--primary-purple);
}

.selected_44c0 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.tag-advanced-bdd6 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.accent_45d9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.red_356a {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.accent_45d9 .dropdown_gold_520a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.overlay-ca92 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.tall-87aa {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.tall-87aa a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.icon-16fd {
    padding: 4rem 1.25rem;
    background: white;
}

.solid-bd23 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .solid-bd23 {
        grid-template-columns: 1fr 1fr;
    }
}

.accordion_soft_e091 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.article_69a7 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.chip-d245 {
    margin-bottom: 1.5rem;
}

.link_86fd {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.module-dirty-73c7 {
    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);
}

.nav-8e24 {
    white-space: nowrap;
}

.pagination-f410 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.block-slow-8245 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.caption-800f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.caption-800f:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.overlay_1ebc {
    font-size: 2rem;
    flex-shrink: 0;
}

.aside-prev-0960 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.aside-prev-0960 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.shade_left_7af0 {
    margin-top: 3rem;
}

.shade_left_7af0 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.dynamic_ea73 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.dynamic_ea73 thead {
    background: var(--primary-purple);
    color: white;
}

.dynamic_ea73 th,
.dynamic_ea73 td {
    padding: 1rem;
    text-align: left;
}

.dynamic_ea73 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.dynamic_ea73 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.dynamic_ea73 tbody tr:last-child {
    border-bottom: none;
}

.dynamic_ea73 tbody tr:hover {
    background: var(--light-bg);
}

.background-6af5 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.layout_brown_345c {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.prev_e9e0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.thumbnail_out_2aa5 {
    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);
}

.thumbnail_out_2aa5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.thumbnail_out_2aa5.text-655c::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;
}

.row-hot-478b {
    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;
}

.description-selected-fd95 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.small-836b h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-6490 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card_0132 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.card_0132 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.card_0132 p:last-child {
    margin-bottom: 0;
}

.card_0132 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.accordion_yellow_0a9f {
    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;
}

.description_9de1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.table-59cd {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.table-59cd .hero_stone_5d92 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.table-59cd .dropdown_gold_520a {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.gas-db83 {
    padding: 4rem 1.25rem;
    background: white;
}

.shade_ce53 {
    max-width: 900px;
    margin: 0 auto;
}

.main_58b4 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.main_58b4:hover {
    border-color: var(--primary-purple);
}

.main_58b4[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.main_58b4 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;
}

.main_58b4 summary::-webkit-details-marker {
    display: none;
}

.main_58b4 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.main_58b4[open] summary::after {
    transform: rotate(45deg);
}

.red-d397 {
    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);
    }
}

.red-d397 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.red-d397 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.red-d397 ul,
.red-d397 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.red-d397 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.red-d397 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.description_active_a453 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.stale-7041 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stale-7041 th,
.stale-7041 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.stale-7041 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.gradient-liquid-7983 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.south-94e1 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.brown_fcd8 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .brown_fcd8 {
        flex-direction: column;
        text-align: center;
    }
}

.brown_fcd8 img {
    flex-shrink: 0;
}

.active-fe95 {
    font-size: 4rem;
    flex-shrink: 0;
}

.background_hard_ab5a h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.background_hard_ab5a p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.box_f903 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.carousel-silver-b856 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.outline_41ba h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.outline_41ba > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.paper_660e {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.nav_steel_fc8d {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.stale_6092 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.badge-advanced-2814 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-advanced-2814 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.background-256c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.center_6728 {
    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);
}

.red-748e {
    list-style: none;
}

.red-748e li {
    margin-bottom: 0.75rem;
}

.red-748e a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.red-748e a:hover {
    color: white;
}

.out-f15f {
    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;
}

.filter-hard-8d1f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-hard-8d1f span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.badge-9d0b {
    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);
}

.overlay_selected_522a {
    text-align: right;
}

@media (max-width: 767px) {
    .overlay_selected_522a {
        text-align: center;
        width: 100%;
    }
}

.overlay_selected_522a p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.popup_fluid_ddb4 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.aside_inner_abd3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.popup-eb3c,
.dark-ea6a,
.progress_cool_8dcd,
.section-plasma-13fb,
.surface-stone-b2ce,
.icon-16fd,
.layout_brown_345c,
.gas-db83,
.south-94e1,
.carousel-silver-b856 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .media-hard-1631 {
        font-size: 1.75rem;
    }
    
    .silver-448a {
        font-size: 1rem;
    }
    
    .tag-advanced-bdd6 {
        flex-direction: column;
    }
    
    .solid-bd23 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .left_b8c7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photo_tiny_20b9 {
        max-width: 100%;
    }
    
    .full_9bf6 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .aside_inner_abd3 {
        padding: 0 1rem;
    }
    
    .notification-64c3 {
        padding: 4rem 1rem 3rem;
    }
    
    .notification-64c3 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .layout-pro-9d34 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .pagination_5639 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .dynamic_ea73,
    .stale-7041 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .content_dark_3013 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .table-7077 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .prev_e9e0 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .notification-64c3 h1 {
        font-size: 1.5rem;
    }
    
    .pagination_5639 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .image_9d31 {
        padding: 0.75rem;
    }
    
    .hero_stone_5d92 {
        font-size: 1.5rem;
    }
    
    .content_dark_3013 {
        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 */
.photo_tiny_20b9:hover,
.fluid-7940:hover,
.thumbnail_out_2aa5:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .section-plasma-13fb,
    .layout_brown_345c,
    .gas-db83 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.paper_75e1)
   ======================================== */

.tabs-complex-c958.notification-basic-25d7 {
    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;
}

.tabs-complex-c958.notification-basic-25d7 .table_green_abb9 {
    color: #334155;
}

.tabs-complex-c958.notification-basic-25d7 .table_green_abb9:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.tabs-complex-c958.notification-basic-25d7 .table_green_abb9.fn-active-3c3e {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.tabs-complex-c958.notification-basic-25d7 .layout-71f5 {
    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);
}

.tabs-complex-c958.notification-basic-25d7 .layout-71f5::before {
    border-bottom-color: #ffffff;
}

.tabs-complex-c958.notification-basic-25d7 .outline-simple-8a04 {
    color: #475569;
}

.tabs-complex-c958.notification-basic-25d7 .outline-simple-8a04::before {
    background: #818cf8;
}

.tabs-complex-c958.notification-basic-25d7 .outline-simple-8a04:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.tabs-complex-c958.notification-basic-25d7 .outline-simple-8a04:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.tabs-complex-c958.notification-basic-25d7 .shade-hovered-2b77 {
    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);
}

.tabs-complex-c958.notification-basic-25d7 .shade-hovered-2b77:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.tabs-complex-c958.notification-basic-25d7 .shade-hovered-2b77 span {
    background: #475569;
    box-shadow: none;
}

.tabs-complex-c958.notification-basic-25d7 .shade-hovered-2b77.fn-active-3c3e span:nth-child(1),
.tabs-complex-c958.notification-basic-25d7 .shade-hovered-2b77.fn-active-3c3e span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .tabs-complex-c958.notification-basic-25d7 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .tabs-complex-c958.notification-basic-25d7 .primary-3854 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .tabs-complex-c958.notification-basic-25d7 .primary-3854 span {
        color: #334155 !important;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 {
        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);
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .table_green_abb9 {
        color: #334155;
        text-shadow: none;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .table_green_abb9:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .table_green_abb9.chip-selected-7e37::after {
        color: #64748b;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .layout-71f5 {
        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) */
    .tabs-complex-c958.notification-basic-25d7 .block_7467 .list-e2f3.fn-active-3c3e .layout-71f5 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .outline-simple-8a04 {
        color: #475569;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .outline-simple-8a04::before {
        color: #6366f1;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .outline-simple-8a04:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .outline-simple-8a04:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .tabs-complex-c958.notification-basic-25d7 .block_7467 .outline-simple-8a04:hover::before {
        color: #4f46e5;
    }
}

/* apk.pattern-5d96 — mesmo tema claro da home; blocos extras */
body.sidebar-9dc3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.sidebar-9dc3 .table-west-8475 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sidebar-9dc3 .hard_6bed {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.sidebar-9dc3 .hard_6bed p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar-9dc3 .hard_6bed p:last-child {
    margin-bottom: 0;
}

.sidebar-9dc3 .hard_6bed strong {
    color: var(--text-primary);
}

.sidebar-9dc3 .picture_7cdc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sidebar-9dc3 .picture_7cdc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dirty_a80b {
    background: #f8f9fa;
    color: #2c3e50;
}

.dirty_a80b .grid_f3b2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dirty_a80b .small_263e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.dirty_a80b .small_263e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dirty_a80b .small_263e p:last-child {
    margin-bottom: 0;
}

.dirty_a80b .small_263e strong {
    color: var(--text-primary);
}

.dirty_a80b .in_a9c3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dirty_a80b .in_a9c3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.summary_9cef {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary_9cef .status_f7fa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary_9cef .full-2712 {
    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);
}

.summary_9cef .full-2712 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary_9cef .full-2712 p:last-child {
    margin-bottom: 0;
}

.summary_9cef .full-2712 strong {
    color: var(--text-primary);
}

.summary_9cef .photo-e6df {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary_9cef .photo-e6df img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shadow-simple-dde2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow-simple-dde2 .focus-f693 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow-simple-dde2 .carousel-fba6 {
    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);
}

.shadow-simple-dde2 .carousel-fba6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow-simple-dde2 .carousel-fba6 p:last-child {
    margin-bottom: 0;
}

.shadow-simple-dde2 .carousel-fba6 strong {
    color: var(--text-primary);
}

.shadow-simple-dde2 .outline-hard-1034 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shadow-simple-dde2 .outline-hard-1034 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.surface_selected_b37b {
    background: #f8f9fa;
    color: #2c3e50;
}

.surface_selected_b37b .module_left_d07d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.surface_selected_b37b .tooltip-5ef2 {
    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);
}

.surface_selected_b37b .tooltip-5ef2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.surface_selected_b37b .tooltip-5ef2 p:last-child {
    margin-bottom: 0;
}

.surface_selected_b37b .tooltip-5ef2 strong {
    color: var(--text-primary);
}

.surface_selected_b37b .first-c900 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.surface_selected_b37b .first-c900 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.description-b440 {
    background: #f8f9fa;
    color: #2c3e50;
}

.description-b440 .status_mini_7ddc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description-b440 .element_d2b5 {
    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);
}

.description-b440 .element_d2b5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description-b440 .element_d2b5 p:last-child {
    margin-bottom: 0;
}

.description-b440 .element_d2b5 strong {
    color: var(--text-primary);
}

.description-b440 .backdrop_right_d0ad {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.description-b440 .backdrop_right_d0ad img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.panel_selected_9e72 {
    background: #f8f9fa;
    color: #2c3e50;
}

.panel_selected_9e72 .active-dark-2b18 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.panel_selected_9e72 .hero_bd58 {
    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);
}

.panel_selected_9e72 .hero_bd58 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.panel_selected_9e72 .hero_bd58 p:last-child {
    margin-bottom: 0;
}

.panel_selected_9e72 .hero_bd58 strong {
    color: var(--text-primary);
}

.panel_selected_9e72 .up_c251 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.panel_selected_9e72 .up_c251 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-lower-abcf {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail-lower-abcf .hard-e9be {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail-lower-abcf .picture-07a3 {
    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-lower-abcf .picture-07a3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail-lower-abcf .picture-07a3 p:last-child {
    margin-bottom: 0;
}

.thumbnail-lower-abcf .picture-07a3 strong {
    color: var(--text-primary);
}

.thumbnail-lower-abcf .tiny_20d0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail-lower-abcf .tiny_20d0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.modal-tall-3171 {
    background: #f8f9fa;
    color: #2c3e50;
}

.modal-tall-3171 .title_2ec7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.modal-tall-3171 .slow_96b5 {
    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);
}

.modal-tall-3171 .slow_96b5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal-tall-3171 .slow_96b5 p:last-child {
    margin-bottom: 0;
}

.modal-tall-3171 .slow_96b5 strong {
    color: var(--text-primary);
}

.modal-tall-3171 .sidebar_fecb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.modal-tall-3171 .sidebar_fecb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thick-d350 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thick-d350 .detail_874b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thick-d350 .prev_e73b {
    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);
}

.thick-d350 .prev_e73b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thick-d350 .prev_e73b p:last-child {
    margin-bottom: 0;
}

.thick-d350 .prev_e73b strong {
    color: var(--text-primary);
}

.thick-d350 .outer-a163 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thick-d350 .outer-a163 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.card_dark_bca4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.card_dark_bca4 .mask_smooth_fe99 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.card_dark_bca4 .layout_8e95 {
    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);
}

.card_dark_bca4 .layout_8e95 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card_dark_bca4 .layout_8e95 p:last-child {
    margin-bottom: 0;
}

.card_dark_bca4 .layout_8e95 strong {
    color: var(--text-primary);
}

.card_dark_bca4 .component_solid_f5c0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card_dark_bca4 .component_solid_f5c0 li {
    margin-bottom: 0.65rem;
}

.card_dark_bca4 .component_solid_f5c0 li:last-child {
    margin-bottom: 0;
}

.card_dark_bca4 .out-68fa {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.card_dark_bca4 .out-68fa img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dynamic-c4a9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.dynamic-c4a9 .thick-c522 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dynamic-c4a9 .disabled-2e2e {
    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);
}

.dynamic-c4a9 .disabled-2e2e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dynamic-c4a9 .disabled-2e2e p:last-child {
    margin-bottom: 0;
}

.dynamic-c4a9 .disabled-2e2e strong {
    color: var(--text-primary);
}

.dynamic-c4a9 .column-8bfb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dynamic-c4a9 .column-8bfb li {
    margin-bottom: 0.65rem;
}

.dynamic-c4a9 .column-8bfb li:last-child {
    margin-bottom: 0;
}

.dynamic-c4a9 .active-upper-1818 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dynamic-c4a9 .active-upper-1818 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tag_e714 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag_e714 .shade_green_df6b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag_e714 .search-motion-6f23 {
    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);
}

.tag_e714 .search-motion-6f23 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag_e714 .search-motion-6f23 p:last-child {
    margin-bottom: 0;
}

.tag_e714 .search-motion-6f23 strong {
    color: var(--text-primary);
}

.tag_e714 .fast-2b92 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag_e714 .fast-2b92 li {
    margin-bottom: 0.65rem;
}

.tag_e714 .fast-2b92 li:last-child {
    margin-bottom: 0;
}

.tag_e714 .complex-4542 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tag_e714 .complex-4542 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.yellow_6571 {
    background: #f8f9fa;
    color: #2c3e50;
}

.yellow_6571 .paper-3c79 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.yellow_6571 .west-d1e3 {
    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);
}

.yellow_6571 .west-d1e3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.yellow_6571 .west-d1e3 p:last-child {
    margin-bottom: 0;
}

.yellow_6571 .west-d1e3 strong {
    color: var(--text-primary);
}

.yellow_6571 .focus-a75c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.yellow_6571 .focus-a75c li {
    margin-bottom: 0.65rem;
}

.yellow_6571 .focus-a75c li:last-child {
    margin-bottom: 0;
}

body.notification-2ea6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.notification-2ea6 .focus-ecef {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notification-2ea6 .disabled-ca12 {
    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);
}

.notification-2ea6 .disabled-ca12 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notification-2ea6 .disabled-ca12 p:last-child {
    margin-bottom: 0;
}

.notification-2ea6 .disabled-ca12 strong {
    color: var(--text-primary);
}

.notification-2ea6 .info-1b5b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notification-2ea6 .info-1b5b li {
    margin-bottom: 0.65rem;
}

.notification-2ea6 .info-1b5b li:last-child {
    margin-bottom: 0;
}

.notification-2ea6 .detail_simple_c4fc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notification-2ea6 .detail_simple_c4fc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.form_3080 {
    background: #f8f9fa;
    color: #2c3e50;
}

.form_3080 .section-silver-6b28 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.form_3080 .yellow_6703 {
    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);
}

.form_3080 .yellow_6703 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.form_3080 .yellow_6703 p:last-child {
    margin-bottom: 0;
}

.form_3080 .yellow_6703 strong {
    color: var(--text-primary);
}

.form_3080 .widget-e904 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.form_3080 .widget-e904 li {
    margin-bottom: 0.65rem;
}

.form_3080 .widget-e904 li:last-child {
    margin-bottom: 0;
}

.form_3080 .next_6f9e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.form_3080 .next_6f9e 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_fixed_ab17 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title_fixed_ab17 .slider-05e7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title_fixed_ab17 .feature-wide-b750 {
    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_fixed_ab17 .feature-wide-b750 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title_fixed_ab17 .feature-wide-b750 p:last-child {
    margin-bottom: 0;
}

.title_fixed_ab17 .feature-wide-b750 strong {
    color: var(--text-primary);
}

.title_fixed_ab17 .backdrop-soft-5c17 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title_fixed_ab17 .backdrop-soft-5c17 li {
    margin-bottom: 0.65rem;
}

.title_fixed_ab17 .backdrop-soft-5c17 li:last-child {
    margin-bottom: 0;
}

.title_fixed_ab17 .box_fresh_e2c9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title_fixed_ab17 .box_fresh_e2c9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.right_4280 {
    background: #f8f9fa;
    color: #2c3e50;
}

.right_4280 .up_e97b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.right_4280 .copper_6d04 {
    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);
}

.right_4280 .copper_6d04 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.right_4280 .copper_6d04 p:last-child {
    margin-bottom: 0;
}

.right_4280 .copper_6d04 strong {
    color: var(--text-primary);
}

.right_4280 .bronze_5ac3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.right_4280 .bronze_5ac3 li {
    margin-bottom: 0.65rem;
}

.right_4280 .bronze_5ac3 li:last-child {
    margin-bottom: 0;
}

.right_4280 .badge_new_9188 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.right_4280 .badge_new_9188 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: f921 */
.promo-block-f7 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
