/* 
 * 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.bronze-a80b) — fixed together on mobile */
.fixed_128d {
    width: 100%;
}

.purple_cc03 {
    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) {
    .fixed_128d {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .purple_cc03 {
        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.photo-1755. Conta) stay reachable.
     */
    .progress-0f2d .top-cf5d {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .fixed_128d .progress-0f2d > .top-cf5d {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .fixed_128d:has(.over-1da6.fn-show-20a8) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .fixed_128d:has(.over-1da6.fn-show-20a8) .purple_cc03 {
        flex-shrink: 0;
    }

    .fixed_128d:has(.over-1da6.fn-show-20a8) .progress-0f2d {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .fixed_128d:has(.over-1da6.fn-show-20a8) .progress-0f2d > .top-cf5d {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .fixed_128d:has(.over-1da6.fn-show-20a8) .main_yellow_560a {
        flex-shrink: 0;
    }

    .fixed_128d:has(.over-1da6.fn-show-20a8) .over-1da6.fn-show-20a8 {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-sizing: border-box;
    }

    /* Dropdown inside open menu: allow full height + scroll if many items */
    .progress-0f2d .over-1da6 .banner-under-1e31.fn-active-20a8 .photo_b799 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .purple_cc03 {
        position: sticky;
        top: 0;
    }
}

.fixed_128d.heading-81e7,
.fixed_128d.heading-81e7 .purple_cc03 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.column-lower-5a2f {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .column-lower-5a2f {
        padding: 0.75rem 0;
    }
}

.mask-dark-2210 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.card-45f4 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .card-45f4 img {
        height: 35px;
    }
}

/* .progress-0f2d / .clean-1529 — inner pages (brown bar); index uses .image-3c37 below */

.progress-0f2d:not(.image-3c37) .clean-1529.fn-active-20a8 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.active-034e {
    display: flex;
    gap: var(--spacing-md);
}

.steel-d5a3,
.dropdown_focused_35ca {
    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) {
    .steel-d5a3,
    .dropdown_focused_35ca {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .active-034e {
        gap: 0.5rem;
    }
}

.steel-d5a3 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.steel-d5a3:hover {
    background: var(--primary-purple);
    color: white;
}

.dropdown_focused_35ca {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.dropdown_focused_35ca:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.banner-light-6ba7 {
    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%;
}

.banner-light-6ba7::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;
}

.banner-light-6ba7::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;
}

.pagination_582e {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.steel-0380 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.steel-0380 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);
}

.banner-light-6ba7 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;
}

.row-warm-c3a1 {
    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;
}

.row-warm-c3a1 strong {
    font-weight: 700;
}

.detail-yellow-6ae9 {
    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);
}

.message_e55f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.input_red_5315 {
    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);
}

.input_red_5315:hover {
    transform: translateY(-4px);
}

.hovered_97d1 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.purple_1a11 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.media-fixed-885f {
    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;
}

.media-fixed-885f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.media-fixed-885f.wood_db22 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.west-89af {
    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);
}

.west-89af:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.secondary-cd28 {
    padding: 3rem 1.25rem;
    background: white;
}

.paragraph_liquid_9ec9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.black-16ff {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.black-16ff:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.black-16ff img {
    margin-bottom: 1rem;
}

.mini_d187 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.black-16ff h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.black-16ff 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 */
.image_78fd {
    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);
}

.steel-4953 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.current-47a2 {
    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);
}

.current-47a2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.current-47a2 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.current-47a2 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.badge-690e {
    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
   ======================================== */

.fresh_96e3 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.thumbnail_9fb1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.wood_497a {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.label_warm_15b6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.shadow_620d {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.shadow_620d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.shadow_620d.first-49a4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.shadow_620d.first-49a4 h3,
.shadow_620d.first-49a4 p {
    color: white;
}

.overlay-626e {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shadow_620d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.shadow_620d p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.steel-c32a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.steel-c32a:hover {
    gap: 0.75rem;
}

.shadow_620d.first-49a4 .steel-c32a {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.preview_0e6e {
    padding: 4rem 1.25rem;
    background: white;
}

.dynamic_c920 {
    text-align: center;
    margin-bottom: 3rem;
}

.copper_eaa9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.border_7f42 {
    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%;
}

.border_7f42:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.outer_2ee8 {
    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);
}

.prev_6f56 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.fixed_8f3c {
    padding: 1.5rem;
}

.fixed_8f3c h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.slider_f070 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.accordion-active-f4a2 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pattern-0da3,
.button-hot-16db {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.pattern-0da3 {
    background: #dcfce7;
    color: #166534;
}

.pattern-0da3.summary-76d7 {
    background: #10b981;
    color: white;
}

.button-hot-16db {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.button-hot-16db.block_thick_74f1 {
    background: #fee2e2;
    color: #991b1b;
}

.button-hot-16db.item_advanced_7447 {
    background: #fef3c7;
    color: #92400e;
}

.button-hot-16db.huge-b793 {
    background: #dcfce7;
    color: #166534;
}

.box-64b3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.box-64b3 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.element_373e {
    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);
}

.element_373e:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.warm_01c9 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.focus-smooth-521f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.chip_mini_4cf6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .chip_mini_4cf6 {
        grid-template-columns: 1fr 1fr;
    }
}

.detail-slow-51ef img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.footer_8888 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.small_9f49 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.aside_d424 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-494e {
    font-size: 1rem;
    opacity: 0.9;
}

.footer_8888 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form_next_e92f {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.form_next_e92f li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.form_next_e92f 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;
}

.form_next_e92f li strong {
    color: var(--primary-purple);
}

.form_next_e92f li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.liquid-8a93 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.pattern-7be4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.table_4e48 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.pattern-7be4 .purple_1a11 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.summary-small-9a58 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.smooth_f99b {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.smooth_f99b a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.secondary_bottom_6003 {
    padding: 4rem 1.25rem;
    background: white;
}

.border-4b08 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .border-4b08 {
        grid-template-columns: 1fr 1fr;
    }
}

.breadcrumb-fresh-db49 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.top_7d70 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.shadow_8a1a {
    margin-bottom: 1.5rem;
}

.dropdown_642d {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.button_ac7f {
    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);
}

.cool_6765 {
    white-space: nowrap;
}

.detail-5f11 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.active-47c7 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tooltip-silver-b2f9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.tooltip-silver-b2f9:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.copper_1387 {
    font-size: 2rem;
    flex-shrink: 0;
}

.avatar-3c6b h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.avatar-3c6b p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.message-6564 {
    margin-top: 3rem;
}

.message-6564 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.secondary-yellow-5cea {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.secondary-yellow-5cea thead {
    background: var(--primary-purple);
    color: white;
}

.secondary-yellow-5cea th,
.secondary-yellow-5cea td {
    padding: 1rem;
    text-align: left;
}

.secondary-yellow-5cea th {
    font-weight: 700;
    font-size: 0.9rem;
}

.secondary-yellow-5cea tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.secondary-yellow-5cea tbody tr:last-child {
    border-bottom: none;
}

.secondary-yellow-5cea tbody tr:hover {
    background: var(--light-bg);
}

.background_94ac {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.hard-fc6e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.picture_d1a6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blue_9195 {
    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);
}

.blue_9195:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.blue_9195.dim-e476::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;
}

.accent-e057 {
    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;
}

.thumbnail_c997 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.section-last-9649 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.block-0b99 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.banner_outer_c09a {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.banner_outer_c09a p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.banner_outer_c09a p:last-child {
    margin-bottom: 0;
}

.banner_outer_c09a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.thick-b930 {
    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;
}

.shadow_27b3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.secondary-wide-1446 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.secondary-wide-1446 .hovered_97d1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.secondary-wide-1446 .purple_1a11 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.active-f8b2 {
    padding: 4rem 1.25rem;
    background: white;
}

.hard-ec0b {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-971d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.carousel-971d:hover {
    border-color: var(--primary-purple);
}

.carousel-971d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.carousel-971d 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;
}

.carousel-971d summary::-webkit-details-marker {
    display: none;
}

.carousel-971d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.carousel-971d[open] summary::after {
    transform: rotate(45deg);
}

.steel-98f8 {
    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);
    }
}

.steel-98f8 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.steel-98f8 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.steel-98f8 ul,
.steel-98f8 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.steel-98f8 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.steel-98f8 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.basic_0967 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.hard_1c85 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hard_1c85 th,
.hard_1c85 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.hard_1c85 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.description-fae5 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.search-pressed-f28c {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.active_ebc3 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .active_ebc3 {
        flex-direction: column;
        text-align: center;
    }
}

.active_ebc3 img {
    flex-shrink: 0;
}

.tabs-short-6ac0 {
    font-size: 4rem;
    flex-shrink: 0;
}

.tooltip-light-5457 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tooltip-light-5457 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.backdrop-b3ea {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.west-f28f {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.column_393c h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.column_393c > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gallery-2808 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.accordion_pink_72d1 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.row-70cc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.panel_0191 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.panel_0191 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.stale_430d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dim-56e1 {
    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);
}

.card-2d13 {
    list-style: none;
}

.card-2d13 li {
    margin-bottom: 0.75rem;
}

.card-2d13 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.card-2d13 a:hover {
    color: white;
}

.button_e91f {
    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;
}

.primary_2acd {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary_2acd span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.button-basic-4d65 {
    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);
}

.gas-de66 {
    text-align: right;
}

@media (max-width: 767px) {
    .gas-de66 {
        text-align: center;
        width: 100%;
    }
}

.gas-de66 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.white_58d2 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.top-cf5d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.secondary-cd28,
.image_78fd,
.fresh_96e3,
.preview_0e6e,
.focus-smooth-521f,
.secondary_bottom_6003,
.hard-fc6e,
.active-f8b2,
.search-pressed-f28c,
.west-f28f {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .thumbnail_9fb1 {
        font-size: 1.75rem;
    }
    
    .wood_497a {
        font-size: 1rem;
    }
    
    .liquid-8a93 {
        flex-direction: column;
    }
    
    .border-4b08 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .copper_eaa9 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .border_7f42 {
        max-width: 100%;
    }
    
    .prev_6f56 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .top-cf5d {
        padding: 0 1rem;
    }
    
    .banner-light-6ba7 {
        padding: 4rem 1rem 3rem;
    }
    
    .banner-light-6ba7 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .media-fixed-885f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .message_e55f {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .secondary-yellow-5cea,
    .hard_1c85 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .paragraph_liquid_9ec9 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .label_warm_15b6 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .picture_d1a6 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .banner-light-6ba7 h1 {
        font-size: 1.5rem;
    }
    
    .message_e55f {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .input_red_5315 {
        padding: 0.75rem;
    }
    
    .hovered_97d1 {
        font-size: 1.5rem;
    }
    
    .paragraph_liquid_9ec9 {
        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 */
.border_7f42:hover,
.shadow_620d:hover,
.blue_9195:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .preview_0e6e,
    .hard-fc6e,
    .active-f8b2 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.bronze-a80b)
   ======================================== */

.progress-0f2d.image-3c37 {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(248, 250, 252, 0.92) 45%,
        rgba(239, 246, 255, 0.93) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow:
        0 6px 24px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
    border-radius: 16px;
    margin: 0.35rem 0 0.5rem;
}

.progress-0f2d.image-3c37 .clean-1529 {
    color: #334155;
}

.progress-0f2d.image-3c37 .clean-1529:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.progress-0f2d.image-3c37 .clean-1529.fn-active-20a8 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.progress-0f2d.image-3c37 .photo_b799 {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(99, 102, 241, 0.08);
}

.progress-0f2d.image-3c37 .photo_b799::before {
    border-bottom-color: #ffffff;
}

.progress-0f2d.image-3c37 .footer_c7f2 {
    color: #475569;
}

.progress-0f2d.image-3c37 .footer_c7f2::before {
    background: #818cf8;
}

.progress-0f2d.image-3c37 .footer_c7f2:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.progress-0f2d.image-3c37 .footer_c7f2:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.progress-0f2d.image-3c37 .tabs_right_3d0a {
    background: rgba(241, 245, 249, 0.95);
    border-color: rgba(148, 163, 184, 0.55);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.progress-0f2d.image-3c37 .tabs_right_3d0a:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.progress-0f2d.image-3c37 .tabs_right_3d0a span {
    background: #475569;
    box-shadow: none;
}

.progress-0f2d.image-3c37 .tabs_right_3d0a.fn-active-20a8 span:nth-child(1),
.progress-0f2d.image-3c37 .tabs_right_3d0a.fn-active-20a8 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .progress-0f2d.image-3c37 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .progress-0f2d.image-3c37 .main_yellow_560a {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .progress-0f2d.image-3c37 .main_yellow_560a span {
        color: #334155 !important;
    }

    .progress-0f2d.image-3c37 .over-1da6 {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 252, 0.98) 100%
        );
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .progress-0f2d.image-3c37 .over-1da6 .clean-1529 {
        color: #334155;
        text-shadow: none;
    }

    .progress-0f2d.image-3c37 .over-1da6 .clean-1529:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .progress-0f2d.image-3c37 .over-1da6 .clean-1529.dark_6214::after {
        color: #64748b;
    }

    .progress-0f2d.image-3c37 .over-1da6 .photo_b799 {
        background: linear-gradient(
            180deg,
            rgba(241, 245, 249, 0.98) 0%,
            rgba(226, 232, 240, 0.55) 100%
        );
        border-top-color: rgba(203, 213, 225, 0.8);
        border-bottom-color: rgba(203, 213, 225, 0.5);
    }

    /* Garantir submenu visível ao tocar (evita conflito de especificidade com o tema index) */
    .progress-0f2d.image-3c37 .over-1da6 .banner-under-1e31.fn-active-20a8 .photo_b799 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .progress-0f2d.image-3c37 .over-1da6 .footer_c7f2 {
        color: #475569;
    }

    .progress-0f2d.image-3c37 .over-1da6 .footer_c7f2::before {
        color: #6366f1;
    }

    .progress-0f2d.image-3c37 .over-1da6 .footer_c7f2:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .progress-0f2d.image-3c37 .over-1da6 .footer_c7f2:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .progress-0f2d.image-3c37 .over-1da6 .footer_c7f2:hover::before {
        color: #4f46e5;
    }
}

/* apk.outer-d721 — mesmo tema claro da home; blocos extras */
body.selected-c403 {
    background: #f8f9fa;
    color: #2c3e50;
}

.selected-c403 .input_north_d959 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.selected-c403 .paper-6b97 {
    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);
}

.selected-c403 .paper-6b97 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.selected-c403 .paper-6b97 p:last-child {
    margin-bottom: 0;
}

.selected-c403 .paper-6b97 strong {
    color: var(--text-primary);
}

.selected-c403 .column_c2a1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.selected-c403 .column_c2a1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.block_53e2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.block_53e2 .heading_dark_3eec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.block_53e2 .black-7c60 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.block_53e2 .black-7c60 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block_53e2 .black-7c60 p:last-child {
    margin-bottom: 0;
}

.block_53e2 .black-7c60 strong {
    color: var(--text-primary);
}

.block_53e2 .picture_thick_c7b5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.block_53e2 .picture_thick_c7b5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer-steel-59b6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer-steel-59b6 .frame_9db0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer-steel-59b6 .pagination-last-1ce5 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.footer-steel-59b6 .pagination-last-1ce5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-steel-59b6 .pagination-last-1ce5 p:last-child {
    margin-bottom: 0;
}

.footer-steel-59b6 .pagination-last-1ce5 strong {
    color: var(--text-primary);
}

.footer-steel-59b6 .header-mini-1a23 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer-steel-59b6 .header-mini-1a23 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.iron_a379 {
    background: #f8f9fa;
    color: #2c3e50;
}

.iron_a379 .paper-3596 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.iron_a379 .overlay_584a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.iron_a379 .overlay_584a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.iron_a379 .overlay_584a p:last-child {
    margin-bottom: 0;
}

.iron_a379 .overlay_584a strong {
    color: var(--text-primary);
}

.iron_a379 .focused-d04e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.iron_a379 .focused-d04e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tooltip_inner_1c8d {
    background: #f8f9fa;
    color: #2c3e50;
}

.tooltip_inner_1c8d .shade_current_55de {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tooltip_inner_1c8d .thumbnail_475a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.tooltip_inner_1c8d .thumbnail_475a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip_inner_1c8d .thumbnail_475a p:last-child {
    margin-bottom: 0;
}

.tooltip_inner_1c8d .thumbnail_475a strong {
    color: var(--text-primary);
}

.tooltip_inner_1c8d .main_7bbd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tooltip_inner_1c8d .main_7bbd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.medium_2b6a {
    background: #f8f9fa;
    color: #2c3e50;
}

.medium_2b6a .slow_7b3b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.medium_2b6a .border-last-e101 {
    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);
}

.medium_2b6a .border-last-e101 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.medium_2b6a .border-last-e101 p:last-child {
    margin-bottom: 0;
}

.medium_2b6a .border-last-e101 strong {
    color: var(--text-primary);
}

.medium_2b6a .top-3d3b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.medium_2b6a .top-3d3b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.notice-simple-7e82 {
    background: #f8f9fa;
    color: #2c3e50;
}

.notice-simple-7e82 .highlight-center-1d40 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notice-simple-7e82 .container-dirty-165b {
    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);
}

.notice-simple-7e82 .container-dirty-165b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice-simple-7e82 .container-dirty-165b p:last-child {
    margin-bottom: 0;
}

.notice-simple-7e82 .container-dirty-165b strong {
    color: var(--text-primary);
}

.notice-simple-7e82 .highlight-b27c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notice-simple-7e82 .highlight-b27c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern_844f {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern_844f .status-last-933b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern_844f .sort-d322 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.pattern_844f .sort-d322 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_844f .sort-d322 p:last-child {
    margin-bottom: 0;
}

.pattern_844f .sort-d322 strong {
    color: var(--text-primary);
}

.pattern_844f .background-thick-a327 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern_844f .background-thick-a327 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.item_fb54 {
    background: #f8f9fa;
    color: #2c3e50;
}

.item_fb54 .media_754a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.item_fb54 .card-cff1 {
    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);
}

.item_fb54 .card-cff1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item_fb54 .card-cff1 p:last-child {
    margin-bottom: 0;
}

.item_fb54 .card-cff1 strong {
    color: var(--text-primary);
}

.item_fb54 .breadcrumb_medium_eae6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.item_fb54 .breadcrumb_medium_eae6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.avatar_fresh_1456 {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar_fresh_1456 .brown-f8f3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar_fresh_1456 .banner-3db3 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.avatar_fresh_1456 .banner-3db3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar_fresh_1456 .banner-3db3 p:last-child {
    margin-bottom: 0;
}

.avatar_fresh_1456 .banner-3db3 strong {
    color: var(--text-primary);
}

.avatar_fresh_1456 .gradient-middle-0b5d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar_fresh_1456 .gradient-middle-0b5d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.medium_bb3d {
    background: #f8f9fa;
    color: #2c3e50;
}

.medium_bb3d .hovered_7571 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.medium_bb3d .stone-01eb {
    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);
}

.medium_bb3d .stone-01eb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.medium_bb3d .stone-01eb p:last-child {
    margin-bottom: 0;
}

.medium_bb3d .stone-01eb strong {
    color: var(--text-primary);
}

.medium_bb3d .primary_action_3668 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.medium_bb3d .primary_action_3668 li {
    margin-bottom: 0.65rem;
}

.medium_bb3d .primary_action_3668 li:last-child {
    margin-bottom: 0;
}

.medium_bb3d .feature_basic_abf9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.medium_bb3d .feature_basic_abf9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.banner-light-9762 {
    background: #f8f9fa;
    color: #2c3e50;
}

.banner-light-9762 .current-0265 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.banner-light-9762 .search-green-c0be {
    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);
}

.banner-light-9762 .search-green-c0be p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.banner-light-9762 .search-green-c0be p:last-child {
    margin-bottom: 0;
}

.banner-light-9762 .search-green-c0be strong {
    color: var(--text-primary);
}

.banner-light-9762 .picture_26ee {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.banner-light-9762 .picture_26ee li {
    margin-bottom: 0.65rem;
}

.banner-light-9762 .picture_26ee li:last-child {
    margin-bottom: 0;
}

.banner-light-9762 .gallery-huge-4cf9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.banner-light-9762 .gallery-huge-4cf9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hidden-e701 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hidden-e701 .filter-70da {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hidden-e701 .block-wood-d2f4 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.hidden-e701 .block-wood-d2f4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden-e701 .block-wood-d2f4 p:last-child {
    margin-bottom: 0;
}

.hidden-e701 .block-wood-d2f4 strong {
    color: var(--text-primary);
}

.hidden-e701 .next-208e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden-e701 .next-208e li {
    margin-bottom: 0.65rem;
}

.hidden-e701 .next-208e li:last-child {
    margin-bottom: 0;
}

.hidden-e701 .tooltip_b16c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hidden-e701 .tooltip_b16c 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_401e {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow_401e .top-9e10 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow_401e .orange_ad0f {
    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_401e .orange_ad0f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow_401e .orange_ad0f p:last-child {
    margin-bottom: 0;
}

.shadow_401e .orange_ad0f strong {
    color: var(--text-primary);
}

.shadow_401e .tertiary_complex_c515 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow_401e .tertiary_complex_c515 li {
    margin-bottom: 0.65rem;
}

.shadow_401e .tertiary_complex_c515 li:last-child {
    margin-bottom: 0;
}

body.detail_e210 {
    background: #f8f9fa;
    color: #2c3e50;
}

.detail_e210 .filter-static-95dc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.detail_e210 .full-2faf {
    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);
}

.detail_e210 .full-2faf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail_e210 .full-2faf p:last-child {
    margin-bottom: 0;
}

.detail_e210 .full-2faf strong {
    color: var(--text-primary);
}

.detail_e210 .dim-3059 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail_e210 .dim-3059 li {
    margin-bottom: 0.65rem;
}

.detail_e210 .dim-3059 li:last-child {
    margin-bottom: 0;
}

.detail_e210 .pro_47ae {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.detail_e210 .pro_47ae img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.overlay_eb40 {
    background: #f8f9fa;
    color: #2c3e50;
}

.overlay_eb40 .preview-fluid-03bb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.overlay_eb40 .complex_dd29 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.overlay_eb40 .complex_dd29 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay_eb40 .complex_dd29 p:last-child {
    margin-bottom: 0;
}

.overlay_eb40 .complex_dd29 strong {
    color: var(--text-primary);
}

.overlay_eb40 .popup_complex_7723 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay_eb40 .popup_complex_7723 li {
    margin-bottom: 0.65rem;
}

.overlay_eb40 .popup_complex_7723 li:last-child {
    margin-bottom: 0;
}

.overlay_eb40 .shadow_2543 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.overlay_eb40 .shadow_2543 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.up-f3c4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.up-f3c4 .action-1b0d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.up-f3c4 .shade-8150 {
    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);
}

.up-f3c4 .shade-8150 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.up-f3c4 .shade-8150 p:last-child {
    margin-bottom: 0;
}

.up-f3c4 .shade-8150 strong {
    color: var(--text-primary);
}

.up-f3c4 .smooth-1de3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.up-f3c4 .smooth-1de3 li {
    margin-bottom: 0.65rem;
}

.up-f3c4 .smooth-1de3 li:last-child {
    margin-bottom: 0;
}

.up-f3c4 .center_a77b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.up-f3c4 .center_a77b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.center-fb20 {
    background: #f8f9fa;
    color: #2c3e50;
}

.center-fb20 .hover-east-d458 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.center-fb20 .outline-smooth-5b56 {
    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);
}

.center-fb20 .outline-smooth-5b56 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.center-fb20 .outline-smooth-5b56 p:last-child {
    margin-bottom: 0;
}

.center-fb20 .outline-smooth-5b56 strong {
    color: var(--text-primary);
}

.center-fb20 .current_2799 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.center-fb20 .current_2799 li {
    margin-bottom: 0.65rem;
}

.center-fb20 .current_2799 li:last-child {
    margin-bottom: 0;
}

.center-fb20 .center_a377 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.center-fb20 .center_a377 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: ba09 */
.promo-block-y5 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
