/* 
 * 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.row_e6fb) — fixed together on mobile */
.panel-lite-0081 {
    width: 100%;
}

.tiny_b9f0 {
    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) {
    .panel-lite-0081 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .tiny_b9f0 {
        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.purple_7e4c. Conta) stay reachable.
     */
    .search-723c .info_4aba {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .panel-lite-0081 .search-723c > .info_4aba {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .panel-lite-0081:has(.fluid_3c40.fn-show-1ac6) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .panel-lite-0081:has(.fluid_3c40.fn-show-1ac6) .tiny_b9f0 {
        flex-shrink: 0;
    }

    .panel-lite-0081:has(.fluid_3c40.fn-show-1ac6) .search-723c {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .panel-lite-0081:has(.fluid_3c40.fn-show-1ac6) .search-723c > .info_4aba {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .panel-lite-0081:has(.fluid_3c40.fn-show-1ac6) .border_fe2a {
        flex-shrink: 0;
    }

    .panel-lite-0081:has(.fluid_3c40.fn-show-1ac6) .fluid_3c40.fn-show-1ac6 {
        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 */
    .search-723c .fluid_3c40 .tiny-e12a.fn-active-1ac6 .stone-77f0 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .tiny_b9f0 {
        position: sticky;
        top: 0;
    }
}

.panel-lite-0081.avatar-2d3c,
.panel-lite-0081.avatar-2d3c .tiny_b9f0 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.border-531b {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .border-531b {
        padding: 0.75rem 0;
    }
}

.pagination-rough-586f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.in-dee6 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .in-dee6 img {
        height: 35px;
    }
}

/* .search-723c / .feature_468f — inner pages (brown bar); index uses .medium-794e below */

.search-723c:not(.medium-794e) .feature_468f.fn-active-1ac6 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.main_center_1af8 {
    display: flex;
    gap: var(--spacing-md);
}

.hero-bottom-92d2,
.gas-4c1d {
    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) {
    .hero-bottom-92d2,
    .gas-4c1d {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .main_center_1af8 {
        gap: 0.5rem;
    }
}

.hero-bottom-92d2 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.hero-bottom-92d2:hover {
    background: var(--primary-purple);
    color: white;
}

.gas-4c1d {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.gas-4c1d:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.picture_up_2b50 {
    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%;
}

.picture_up_2b50::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;
}

.picture_up_2b50::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;
}

.detail-5a5c {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.first_af3f {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.first_af3f 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);
}

.picture_up_2b50 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;
}

.surface-old-e562 {
    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;
}

.surface-old-e562 strong {
    font-weight: 700;
}

.section-soft-41fe {
    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);
}

.fluid_9dfd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.large_5a42 {
    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);
}

.large_5a42:hover {
    transform: translateY(-4px);
}

.icon-111d {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.medium-9997 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.aside_fd0b {
    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;
}

.aside_fd0b:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.aside_fd0b.layout-cc2d {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.mask-6bd8 {
    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);
}

.mask-6bd8:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.media_a3a9 {
    padding: 3rem 1.25rem;
    background: white;
}

.next-f3e2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-lite-23fb {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.tabs-lite-23fb:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tabs-lite-23fb img {
    margin-bottom: 1rem;
}

.outline-lite-4764 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tabs-lite-23fb h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tabs-lite-23fb 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 */
.smooth-e4e1 {
    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);
}

.cold-9fda {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gas_819e {
    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);
}

.gas_819e h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.gas_819e p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.gas_819e a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rough-e556 {
    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
   ======================================== */

.simple_735f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.black_4e73 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.up_e0ea {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.purple-53fa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.status_solid_ceef {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.status_solid_ceef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.status_solid_ceef.item_1d26 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.status_solid_ceef.item_1d26 h3,
.status_solid_ceef.item_1d26 p {
    color: white;
}

.new-45d7 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status_solid_ceef h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.status_solid_ceef p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.active_2429 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.active_2429:hover {
    gap: 0.75rem;
}

.status_solid_ceef.item_1d26 .active_2429 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.notice-smooth-df49 {
    padding: 4rem 1.25rem;
    background: white;
}

.full-a4c5 {
    text-align: center;
    margin-bottom: 3rem;
}

.sort-clean-3758 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.north-9750 {
    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%;
}

.north-9750:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.button-9dd4 {
    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);
}

.blue-e4a6 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.sort_focused_4446 {
    padding: 1.5rem;
}

.sort_focused_4446 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.filter_clean_0283 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.prev_061e {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.sort_red_6047,
.accordion_2bb2 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.sort_red_6047 {
    background: #dcfce7;
    color: #166534;
}

.sort_red_6047.down_24c8 {
    background: #10b981;
    color: white;
}

.accordion_2bb2 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.accordion_2bb2.accordion_30c7 {
    background: #fee2e2;
    color: #991b1b;
}

.accordion_2bb2.widget_3f34 {
    background: #fef3c7;
    color: #92400e;
}

.accordion_2bb2.gallery-paper-dafd {
    background: #dcfce7;
    color: #166534;
}

.slider_5553 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.slider_5553 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.grid_e663 {
    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);
}

.grid_e663:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.last_3bfb {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.in_c77c {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.block-dim-8d64 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .block-dim-8d64 {
        grid-template-columns: 1fr 1fr;
    }
}

.new_528b img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.prev_fed4 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.fast-07ce {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.under_5e31 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stale-c2b4 {
    font-size: 1rem;
    opacity: 0.9;
}

.prev_fed4 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cool_72ea {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.cool_72ea li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.cool_72ea 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;
}

.cool_72ea li strong {
    color: var(--primary-purple);
}

.cool_72ea li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.orange_1b90 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.carousel-tall-b5e6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.surface_9384 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.carousel-tall-b5e6 .medium-9997 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.label-07ec p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.huge_d470 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.huge_d470 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.notification-715a {
    padding: 4rem 1.25rem;
    background: white;
}

.progress_paper_3f3d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .progress_paper_3f3d {
        grid-template-columns: 1fr 1fr;
    }
}

.form_purple_c6e8 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.iron-114b {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.search_2c4d {
    margin-bottom: 1.5rem;
}

.frame-bronze-2532 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.block-6547 {
    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);
}

.large_e969 {
    white-space: nowrap;
}

.block-cold-3753 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.green-4f0f h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.link-600a {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.link-600a:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.detail-plasma-6162 {
    font-size: 2rem;
    flex-shrink: 0;
}

.easy-6aff h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.easy-6aff p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.clean-69a6 {
    margin-top: 3rem;
}

.clean-69a6 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.slider-f3a1 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.slider-f3a1 thead {
    background: var(--primary-purple);
    color: white;
}

.slider-f3a1 th,
.slider-f3a1 td {
    padding: 1rem;
    text-align: left;
}

.slider-f3a1 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.slider-f3a1 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.slider-f3a1 tbody tr:last-child {
    border-bottom: none;
}

.slider-f3a1 tbody tr:hover {
    background: var(--light-bg);
}

.slow_ce6b {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.red_4b6d {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.gas_e36f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bronze_5242 {
    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);
}

.bronze_5242:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.bronze_5242.alert-stale-7773::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;
}

.tall-464b {
    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;
}

.dark_88f8 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.search-dim-6429 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gradient-6fab {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.border_9b03 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.border_9b03 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.border_9b03 p:last-child {
    margin-bottom: 0;
}

.border_9b03 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.input-a3fa {
    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;
}

.progress_medium_526f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.border_4dc5 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.border_4dc5 .icon-111d {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.border_4dc5 .medium-9997 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.heading-rough-55f6 {
    padding: 4rem 1.25rem;
    background: white;
}

.tag_easy_4648 {
    max-width: 900px;
    margin: 0 auto;
}

.slider_last_a784 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.slider_last_a784:hover {
    border-color: var(--primary-purple);
}

.slider_last_a784[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.slider_last_a784 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;
}

.slider_last_a784 summary::-webkit-details-marker {
    display: none;
}

.slider_last_a784 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.slider_last_a784[open] summary::after {
    transform: rotate(45deg);
}

.caption-b8c0 {
    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);
    }
}

.caption-b8c0 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.caption-b8c0 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.caption-b8c0 ul,
.caption-b8c0 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.caption-b8c0 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.caption-b8c0 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.form-3723 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.red_7436 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.red_7436 th,
.red_7436 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.red_7436 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.background_aea3 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.input-db4c {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.short_fdb0 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .short_fdb0 {
        flex-direction: column;
        text-align: center;
    }
}

.short_fdb0 img {
    flex-shrink: 0;
}

.nav-copper-8b68 {
    font-size: 4rem;
    flex-shrink: 0;
}

.accent-pro-20d5 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.accent-pro-20d5 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.white-1f30 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.orange_ea27 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.pagination_hard_e6aa h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.pagination_hard_e6aa > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-bronze-bfd4 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.filter-36b8 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.table-bed2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hidden_bottom_2d1c h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hidden_bottom_2d1c p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.block-wide-299b {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video_stale_40da {
    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);
}

.description_96ff {
    list-style: none;
}

.description_96ff li {
    margin-bottom: 0.75rem;
}

.description_96ff a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.description_96ff a:hover {
    color: white;
}

.up_9c51 {
    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;
}

.large-ee83 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.large-ee83 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.accordion-7c0e {
    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);
}

.tiny-cf41 {
    text-align: right;
}

@media (max-width: 767px) {
    .tiny-cf41 {
        text-align: center;
        width: 100%;
    }
}

.tiny-cf41 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.orange-adc1 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.info_4aba {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.media_a3a9,
.smooth-e4e1,
.simple_735f,
.notice-smooth-df49,
.in_c77c,
.notification-715a,
.red_4b6d,
.heading-rough-55f6,
.input-db4c,
.orange_ea27 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .black_4e73 {
        font-size: 1.75rem;
    }
    
    .up_e0ea {
        font-size: 1rem;
    }
    
    .orange_1b90 {
        flex-direction: column;
    }
    
    .progress_paper_3f3d {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .sort-clean-3758 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .north-9750 {
        max-width: 100%;
    }
    
    .blue-e4a6 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .info_4aba {
        padding: 0 1rem;
    }
    
    .picture_up_2b50 {
        padding: 4rem 1rem 3rem;
    }
    
    .picture_up_2b50 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .aside_fd0b {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .fluid_9dfd {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .slider-f3a1,
    .red_7436 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .next-f3e2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .purple-53fa {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .gas_e36f {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .picture_up_2b50 h1 {
        font-size: 1.5rem;
    }
    
    .fluid_9dfd {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .large_5a42 {
        padding: 0.75rem;
    }
    
    .icon-111d {
        font-size: 1.5rem;
    }
    
    .next-f3e2 {
        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 */
.north-9750:hover,
.status_solid_ceef:hover,
.bronze_5242:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .notice-smooth-df49,
    .red_4b6d,
    .heading-rough-55f6 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.row_e6fb)
   ======================================== */

.search-723c.medium-794e {
    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;
}

.search-723c.medium-794e .feature_468f {
    color: #334155;
}

.search-723c.medium-794e .feature_468f:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.search-723c.medium-794e .feature_468f.fn-active-1ac6 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.search-723c.medium-794e .stone-77f0 {
    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);
}

.search-723c.medium-794e .stone-77f0::before {
    border-bottom-color: #ffffff;
}

.search-723c.medium-794e .layout_stale_0dfb {
    color: #475569;
}

.search-723c.medium-794e .layout_stale_0dfb::before {
    background: #818cf8;
}

.search-723c.medium-794e .layout_stale_0dfb:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.search-723c.medium-794e .layout_stale_0dfb:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.search-723c.medium-794e .item_copper_4ac7 {
    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);
}

.search-723c.medium-794e .item_copper_4ac7:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.search-723c.medium-794e .item_copper_4ac7 span {
    background: #475569;
    box-shadow: none;
}

.search-723c.medium-794e .item_copper_4ac7.fn-active-1ac6 span:nth-child(1),
.search-723c.medium-794e .item_copper_4ac7.fn-active-1ac6 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .search-723c.medium-794e {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .search-723c.medium-794e .border_fe2a {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .search-723c.medium-794e .border_fe2a span {
        color: #334155 !important;
    }

    .search-723c.medium-794e .fluid_3c40 {
        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);
    }

    .search-723c.medium-794e .fluid_3c40 .feature_468f {
        color: #334155;
        text-shadow: none;
    }

    .search-723c.medium-794e .fluid_3c40 .feature_468f:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .search-723c.medium-794e .fluid_3c40 .feature_468f.hover-fluid-8aaf::after {
        color: #64748b;
    }

    .search-723c.medium-794e .fluid_3c40 .stone-77f0 {
        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) */
    .search-723c.medium-794e .fluid_3c40 .tiny-e12a.fn-active-1ac6 .stone-77f0 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .search-723c.medium-794e .fluid_3c40 .layout_stale_0dfb {
        color: #475569;
    }

    .search-723c.medium-794e .fluid_3c40 .layout_stale_0dfb::before {
        color: #6366f1;
    }

    .search-723c.medium-794e .fluid_3c40 .layout_stale_0dfb:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .search-723c.medium-794e .fluid_3c40 .layout_stale_0dfb:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .search-723c.medium-794e .fluid_3c40 .layout_stale_0dfb:hover::before {
        color: #4f46e5;
    }
}

/* apk.block-3163 — mesmo tema claro da home; blocos extras */
body.heading-yellow-9bbd {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading-yellow-9bbd .grid_a5e6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading-yellow-9bbd .hot_4e7a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.heading-yellow-9bbd .hot_4e7a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-yellow-9bbd .hot_4e7a p:last-child {
    margin-bottom: 0;
}

.heading-yellow-9bbd .hot_4e7a strong {
    color: var(--text-primary);
}

.heading-yellow-9bbd .fluid_92b3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading-yellow-9bbd .fluid_92b3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.smooth-3099 {
    background: #f8f9fa;
    color: #2c3e50;
}

.smooth-3099 .sidebar_8e55 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.smooth-3099 .box_prev_aad1 {
    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);
}

.smooth-3099 .box_prev_aad1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.smooth-3099 .box_prev_aad1 p:last-child {
    margin-bottom: 0;
}

.smooth-3099 .box_prev_aad1 strong {
    color: var(--text-primary);
}

.smooth-3099 .article-copper-ebd2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.smooth-3099 .article-copper-ebd2 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-dim-e48d {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary-dim-e48d .easy_4c05 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary-dim-e48d .outline_wide_4cfd {
    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-dim-e48d .outline_wide_4cfd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary-dim-e48d .outline_wide_4cfd p:last-child {
    margin-bottom: 0;
}

.summary-dim-e48d .outline_wide_4cfd strong {
    color: var(--text-primary);
}

.summary-dim-e48d .mini-88d3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary-dim-e48d .mini-88d3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sort_dark_7cee {
    background: #f8f9fa;
    color: #2c3e50;
}

.sort_dark_7cee .sort_light_f28e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sort_dark_7cee .east_e536 {
    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);
}

.sort_dark_7cee .east_e536 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sort_dark_7cee .east_e536 p:last-child {
    margin-bottom: 0;
}

.sort_dark_7cee .east_e536 strong {
    color: var(--text-primary);
}

.sort_dark_7cee .column-a44b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sort_dark_7cee .column-a44b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent-pressed-8c27 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent-pressed-8c27 .input_ff68 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent-pressed-8c27 .hard-ef12 {
    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);
}

.accent-pressed-8c27 .hard-ef12 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent-pressed-8c27 .hard-ef12 p:last-child {
    margin-bottom: 0;
}

.accent-pressed-8c27 .hard-ef12 strong {
    color: var(--text-primary);
}

.accent-pressed-8c27 .preview-purple-fa9b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent-pressed-8c27 .preview-purple-fa9b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.carousel_9c14 {
    background: #f8f9fa;
    color: #2c3e50;
}

.carousel_9c14 .new_0320 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.carousel_9c14 .outline_7624 {
    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);
}

.carousel_9c14 .outline_7624 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel_9c14 .outline_7624 p:last-child {
    margin-bottom: 0;
}

.carousel_9c14 .outline_7624 strong {
    color: var(--text-primary);
}

.carousel_9c14 .medium-e913 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.carousel_9c14 .medium-e913 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-0bff {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag-0bff .block-selected-2372 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag-0bff .north_3466 {
    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-0bff .north_3466 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-0bff .north_3466 p:last-child {
    margin-bottom: 0;
}

.tag-0bff .north_3466 strong {
    color: var(--text-primary);
}

.tag-0bff .text_pressed_3206 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tag-0bff .text_pressed_3206 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.soft_999b {
    background: #f8f9fa;
    color: #2c3e50;
}

.soft_999b .link-new-82d8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.soft_999b .tall_4c1d {
    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);
}

.soft_999b .tall_4c1d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft_999b .tall_4c1d p:last-child {
    margin-bottom: 0;
}

.soft_999b .tall_4c1d strong {
    color: var(--text-primary);
}

.soft_999b .outline-simple-5756 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.soft_999b .outline-simple-5756 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wood_4a44 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wood_4a44 .info-mini-c437 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wood_4a44 .fixed_6e9a {
    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);
}

.wood_4a44 .fixed_6e9a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wood_4a44 .fixed_6e9a p:last-child {
    margin-bottom: 0;
}

.wood_4a44 .fixed_6e9a strong {
    color: var(--text-primary);
}

.wood_4a44 .pagination-1ce9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wood_4a44 .pagination-1ce9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.text_6c89 {
    background: #f8f9fa;
    color: #2c3e50;
}

.text_6c89 .article_08fa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.text_6c89 .gallery-hovered-657a {
    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_6c89 .gallery-hovered-657a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_6c89 .gallery-hovered-657a p:last-child {
    margin-bottom: 0;
}

.text_6c89 .gallery-hovered-657a strong {
    color: var(--text-primary);
}

.text_6c89 .bottom-d58c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.text_6c89 .bottom-d58c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.primary-smooth-de49 {
    background: #f8f9fa;
    color: #2c3e50;
}

.primary-smooth-de49 .carousel_last_0925 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.primary-smooth-de49 .orange-cc51 {
    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);
}

.primary-smooth-de49 .orange-cc51 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.primary-smooth-de49 .orange-cc51 p:last-child {
    margin-bottom: 0;
}

.primary-smooth-de49 .orange-cc51 strong {
    color: var(--text-primary);
}

.primary-smooth-de49 .filter-last-ca6d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.primary-smooth-de49 .filter-last-ca6d li {
    margin-bottom: 0.65rem;
}

.primary-smooth-de49 .filter-last-ca6d li:last-child {
    margin-bottom: 0;
}

.primary-smooth-de49 .frame_up_bf48 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.primary-smooth-de49 .frame_up_bf48 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.small_1904 {
    background: #f8f9fa;
    color: #2c3e50;
}

.small_1904 .paragraph-b47f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.small_1904 .accordion-fresh-07a7 {
    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);
}

.small_1904 .accordion-fresh-07a7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.small_1904 .accordion-fresh-07a7 p:last-child {
    margin-bottom: 0;
}

.small_1904 .accordion-fresh-07a7 strong {
    color: var(--text-primary);
}

.small_1904 .tabs-4c4a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.small_1904 .tabs-4c4a li {
    margin-bottom: 0.65rem;
}

.small_1904 .tabs-4c4a li:last-child {
    margin-bottom: 0;
}

.small_1904 .breadcrumb_a2dc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.small_1904 .breadcrumb_a2dc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.full-85f4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.full-85f4 .search-98ab {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.full-85f4 .header-95e5 {
    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);
}

.full-85f4 .header-95e5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.full-85f4 .header-95e5 p:last-child {
    margin-bottom: 0;
}

.full-85f4 .header-95e5 strong {
    color: var(--text-primary);
}

.full-85f4 .carousel-283c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.full-85f4 .carousel-283c li {
    margin-bottom: 0.65rem;
}

.full-85f4 .carousel-283c li:last-child {
    margin-bottom: 0;
}

.full-85f4 .glass-80c9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.full-85f4 .glass-80c9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.section_upper_6a3a {
    background: #f8f9fa;
    color: #2c3e50;
}

.section_upper_6a3a .huge-3eaf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.section_upper_6a3a .pattern-f256 {
    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);
}

.section_upper_6a3a .pattern-f256 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_upper_6a3a .pattern-f256 p:last-child {
    margin-bottom: 0;
}

.section_upper_6a3a .pattern-f256 strong {
    color: var(--text-primary);
}

.section_upper_6a3a .box_smooth_76d7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_upper_6a3a .box_smooth_76d7 li {
    margin-bottom: 0.65rem;
}

.section_upper_6a3a .box_smooth_76d7 li:last-child {
    margin-bottom: 0;
}

body.black-0268 {
    background: #f8f9fa;
    color: #2c3e50;
}

.black-0268 .orange-5e10 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.black-0268 .photo_over_2211 {
    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);
}

.black-0268 .photo_over_2211 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.black-0268 .photo_over_2211 p:last-child {
    margin-bottom: 0;
}

.black-0268 .photo_over_2211 strong {
    color: var(--text-primary);
}

.black-0268 .inner_740f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.black-0268 .inner_740f li {
    margin-bottom: 0.65rem;
}

.black-0268 .inner_740f li:last-child {
    margin-bottom: 0;
}

.black-0268 .west_9e5e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.black-0268 .west_9e5e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.bright_2f3a {
    background: #f8f9fa;
    color: #2c3e50;
}

.bright_2f3a .feature_ab23 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bright_2f3a .static_78bc {
    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);
}

.bright_2f3a .static_78bc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bright_2f3a .static_78bc p:last-child {
    margin-bottom: 0;
}

.bright_2f3a .static_78bc strong {
    color: var(--text-primary);
}

.bright_2f3a .feature_4f65 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bright_2f3a .feature_4f65 li {
    margin-bottom: 0.65rem;
}

.bright_2f3a .feature_4f65 li:last-child {
    margin-bottom: 0;
}

.bright_2f3a .content-out-afec {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bright_2f3a .content-out-afec img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gallery_6be0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gallery_6be0 .link-59ee {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gallery_6be0 .narrow-4848 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.gallery_6be0 .narrow-4848 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery_6be0 .narrow-4848 p:last-child {
    margin-bottom: 0;
}

.gallery_6be0 .narrow-4848 strong {
    color: var(--text-primary);
}

.gallery_6be0 .gradient_blue_3c39 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery_6be0 .gradient_blue_3c39 li {
    margin-bottom: 0.65rem;
}

.gallery_6be0 .gradient_blue_3c39 li:last-child {
    margin-bottom: 0;
}

.gallery_6be0 .content_8315 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gallery_6be0 .content_8315 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.input-wide-a6ae {
    background: #f8f9fa;
    color: #2c3e50;
}

.input-wide-a6ae .pagination_hard_c4c5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input-wide-a6ae .notification_green_51e3 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.input-wide-a6ae .notification_green_51e3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-wide-a6ae .notification_green_51e3 p:last-child {
    margin-bottom: 0;
}

.input-wide-a6ae .notification_green_51e3 strong {
    color: var(--text-primary);
}

.input-wide-a6ae .accent_f7cd {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-wide-a6ae .accent_f7cd li {
    margin-bottom: 0.65rem;
}

.input-wide-a6ae .accent_f7cd li:last-child {
    margin-bottom: 0;
}

.input-wide-a6ae .block_9244 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input-wide-a6ae .block_9244 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: 8be8 */
.shadow-element-x5 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
