/* 
 * 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.text-bbe5) — fixed together on mobile */
.primary-b594 {
    width: 100%;
}

.card-short-a124 {
    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) {
    .primary-b594 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .card-short-a124 {
        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.mask-aecf. Conta) stay reachable.
     */
    .popup-b330 .pattern-cold-36f2 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .primary-b594 .popup-b330 > .pattern-cold-36f2 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .primary-b594:has(.bright-cbd3.fn-show-f61c) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .primary-b594:has(.bright-cbd3.fn-show-f61c) .card-short-a124 {
        flex-shrink: 0;
    }

    .primary-b594:has(.bright-cbd3.fn-show-f61c) .popup-b330 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .primary-b594:has(.bright-cbd3.fn-show-f61c) .popup-b330 > .pattern-cold-36f2 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .primary-b594:has(.bright-cbd3.fn-show-f61c) .current-0c09 {
        flex-shrink: 0;
    }

    .primary-b594:has(.bright-cbd3.fn-show-f61c) .bright-cbd3.fn-show-f61c {
        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 */
    .popup-b330 .bright-cbd3 .rough-2369.fn-active-f61c .video-down-8335 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .card-short-a124 {
        position: sticky;
        top: 0;
    }
}

.primary-b594.container-b554,
.primary-b594.container-b554 .card-short-a124 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.heading_0511 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .heading_0511 {
        padding: 0.75rem 0;
    }
}

.accent_middle_7294 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.tiny_c13e img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .tiny_c13e img {
        height: 35px;
    }
}

/* .popup-b330 / .over-049d — inner pages (brown bar); index uses .label_dynamic_eaba below */

.popup-b330:not(.label_dynamic_eaba) .over-049d.fn-active-f61c {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.picture_0176 {
    display: flex;
    gap: var(--spacing-md);
}

.section_fefb,
.picture_e050 {
    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) {
    .section_fefb,
    .picture_e050 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .picture_0176 {
        gap: 0.5rem;
    }
}

.section_fefb {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.section_fefb:hover {
    background: var(--primary-purple);
    color: white;
}

.picture_e050 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.picture_e050:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.link_f401 {
    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%;
}

.link_f401::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;
}

.link_f401::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;
}

.panel-b8c6 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.footer_f814 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.footer_f814 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);
}

.link_f401 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;
}

.solid_0a23 {
    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;
}

.solid_0a23 strong {
    font-weight: 700;
}

.down_847e {
    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);
}

.tag-01ea {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.label_middle_31f0 {
    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);
}

.label_middle_31f0:hover {
    transform: translateY(-4px);
}

.wide-86d2 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.picture_3751 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.pattern_cool_99dd {
    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;
}

.pattern_cool_99dd:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.pattern_cool_99dd.label-1e0e {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.popup_1d7d {
    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);
}

.popup_1d7d:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.fast_1831 {
    padding: 3rem 1.25rem;
    background: white;
}

.active_5584 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.right_6d29 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.right_6d29:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.right_6d29 img {
    margin-bottom: 1rem;
}

.thumbnail_64b4 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.right_6d29 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.right_6d29 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 */
.component_soft_0f02 {
    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);
}

.slider-action-0250 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.east_112b {
    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);
}

.east_112b h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.east_112b p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.east_112b a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.backdrop-a29e {
    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
   ======================================== */

.carousel_pink_62b6 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.in-f399 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.hero_7294 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.primary_ceea {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pattern-0beb {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.pattern-0beb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.pattern-0beb.preview-south-065f {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pattern-0beb.preview-south-065f h3,
.pattern-0beb.preview-south-065f p {
    color: white;
}

.main_305a {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pattern-0beb h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pattern-0beb p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.disabled-ecd2 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.disabled-ecd2:hover {
    gap: 0.75rem;
}

.pattern-0beb.preview-south-065f .disabled-ecd2 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.fixed_bc2c {
    padding: 4rem 1.25rem;
    background: white;
}

.progress-bottom-ed0a {
    text-align: center;
    margin-bottom: 3rem;
}

.fast-820d {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.title-east-c4db {
    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%;
}

.title-east-c4db:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.column-a3ec {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.125rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-lg);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.main-slow-7ca2 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.outer_9d0e {
    padding: 1.5rem;
}

.outer_9d0e h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.surface-out-fa3b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.list-39ee {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.middle_1b34,
.accordion_first_90c4 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.middle_1b34 {
    background: #dcfce7;
    color: #166534;
}

.middle_1b34.liquid_c872 {
    background: #10b981;
    color: white;
}

.accordion_first_90c4 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.accordion_first_90c4.main-3c27 {
    background: #fee2e2;
    color: #991b1b;
}

.accordion_first_90c4.left-83de {
    background: #fef3c7;
    color: #92400e;
}

.accordion_first_90c4.glass_058e {
    background: #dcfce7;
    color: #166534;
}

.detail-cold-e2a8 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.detail-cold-e2a8 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.slider-south-fe50 {
    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);
}

.slider-south-fe50:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.video-purple-320d {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.item_c25f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.new_dc2a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .new_dc2a {
        grid-template-columns: 1fr 1fr;
    }
}

.outline_up_b753 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.label_9524 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.label_center_7308 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.message_dark_ae41 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tertiary_5f82 {
    font-size: 1rem;
    opacity: 0.9;
}

.label_9524 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.next-62e3 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.next-62e3 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.next-62e3 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;
}

.next-62e3 li strong {
    color: var(--primary-purple);
}

.next-62e3 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.menu-black-2ea7 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.grid_a90b {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.aside-warm-2332 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.grid_a90b .picture_3751 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.breadcrumb-177b p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.wood-9b3d {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.wood-9b3d a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.photo_3337 {
    padding: 4rem 1.25rem;
    background: white;
}

.grid-copper-b2f5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .grid-copper-b2f5 {
        grid-template-columns: 1fr 1fr;
    }
}

.tooltip-stone-5ee9 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.heading-2297 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.clean-197f {
    margin-bottom: 1.5rem;
}

.avatar_narrow_6838 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.panel_steel_f6f3 {
    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);
}

.photo-top-2ada {
    white-space: nowrap;
}

.panel-old-89c4 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.badge-short-42d2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hover-5388 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.hover-5388:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.label_671b {
    font-size: 2rem;
    flex-shrink: 0;
}

.label_bffa h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.label_bffa p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tertiary-tiny-e66f {
    margin-top: 3rem;
}

.tertiary-tiny-e66f h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.slider_smooth_ed4b {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.slider_smooth_ed4b thead {
    background: var(--primary-purple);
    color: white;
}

.slider_smooth_ed4b th,
.slider_smooth_ed4b td {
    padding: 1rem;
    text-align: left;
}

.slider_smooth_ed4b th {
    font-weight: 700;
    font-size: 0.9rem;
}

.slider_smooth_ed4b tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.slider_smooth_ed4b tbody tr:last-child {
    border-bottom: none;
}

.slider_smooth_ed4b tbody tr:hover {
    background: var(--light-bg);
}

.image-6805 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.hero-complex-067d {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.avatar-03ef {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.image-west-c70e {
    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);
}

.image-west-c70e:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.image-west-c70e.input_a829::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;
}

.widget-fixed-b362 {
    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;
}

.surface-next-59ca {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.gold_b937 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.focus-prev-8636 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.button_831b {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.button_831b p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.button_831b p:last-child {
    margin-bottom: 0;
}

.button_831b strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pagination-e425 {
    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;
}

.purple-f72a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.dark-8e95 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.dark-8e95 .wide-86d2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.dark-8e95 .picture_3751 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.active_8594 {
    padding: 4rem 1.25rem;
    background: white;
}

.detail-medium-0510 {
    max-width: 900px;
    margin: 0 auto;
}

.progress-672d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.progress-672d:hover {
    border-color: var(--primary-purple);
}

.progress-672d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.progress-672d 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;
}

.progress-672d summary::-webkit-details-marker {
    display: none;
}

.progress-672d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.progress-672d[open] summary::after {
    transform: rotate(45deg);
}

.bronze_5475 {
    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);
    }
}

.bronze_5475 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.bronze_5475 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.bronze_5475 ul,
.bronze_5475 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.bronze_5475 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.bronze_5475 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.panel_080d {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.in_24f8 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.in_24f8 th,
.in_24f8 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.in_24f8 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.detail_outer_620a {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.carousel-full-0c1b {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.gallery_prev_1752 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .gallery_prev_1752 {
        flex-direction: column;
        text-align: center;
    }
}

.gallery_prev_1752 img {
    flex-shrink: 0;
}

.link-b600 {
    font-size: 4rem;
    flex-shrink: 0;
}

.nav_smooth_2438 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.nav_smooth_2438 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.media_9538 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.alert-41cf {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.active-19e6 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.active-19e6 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.summary_9837 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.hidden_d401 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.menu_6321 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cold_ec84 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cold_ec84 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.dropdown_black_bf8a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rough_87f2 {
    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);
}

.tooltip-smooth-7cd5 {
    list-style: none;
}

.tooltip-smooth-7cd5 li {
    margin-bottom: 0.75rem;
}

.tooltip-smooth-7cd5 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.tooltip-smooth-7cd5 a:hover {
    color: white;
}

.frame_e3d9 {
    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;
}

.title_action_fae9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title_action_fae9 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.input_simple_e054 {
    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);
}

.red_857f {
    text-align: right;
}

@media (max-width: 767px) {
    .red_857f {
        text-align: center;
        width: 100%;
    }
}

.red_857f p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.current-6c65 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.pattern-cold-36f2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.fast_1831,
.component_soft_0f02,
.carousel_pink_62b6,
.fixed_bc2c,
.item_c25f,
.photo_3337,
.hero-complex-067d,
.active_8594,
.carousel-full-0c1b,
.alert-41cf {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .in-f399 {
        font-size: 1.75rem;
    }
    
    .hero_7294 {
        font-size: 1rem;
    }
    
    .menu-black-2ea7 {
        flex-direction: column;
    }
    
    .grid-copper-b2f5 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .fast-820d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .title-east-c4db {
        max-width: 100%;
    }
    
    .main-slow-7ca2 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .pattern-cold-36f2 {
        padding: 0 1rem;
    }
    
    .link_f401 {
        padding: 4rem 1rem 3rem;
    }
    
    .link_f401 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .pattern_cool_99dd {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .tag-01ea {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .slider_smooth_ed4b,
    .in_24f8 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .active_5584 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .primary_ceea {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .avatar-03ef {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .link_f401 h1 {
        font-size: 1.5rem;
    }
    
    .tag-01ea {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .label_middle_31f0 {
        padding: 0.75rem;
    }
    
    .wide-86d2 {
        font-size: 1.5rem;
    }
    
    .active_5584 {
        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 */
.title-east-c4db:hover,
.pattern-0beb:hover,
.image-west-c70e:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .fixed_bc2c,
    .hero-complex-067d,
    .active_8594 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.text-bbe5)
   ======================================== */

.popup-b330.label_dynamic_eaba {
    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;
}

.popup-b330.label_dynamic_eaba .over-049d {
    color: #334155;
}

.popup-b330.label_dynamic_eaba .over-049d:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.popup-b330.label_dynamic_eaba .over-049d.fn-active-f61c {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.popup-b330.label_dynamic_eaba .video-down-8335 {
    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);
}

.popup-b330.label_dynamic_eaba .video-down-8335::before {
    border-bottom-color: #ffffff;
}

.popup-b330.label_dynamic_eaba .short-54c1 {
    color: #475569;
}

.popup-b330.label_dynamic_eaba .short-54c1::before {
    background: #818cf8;
}

.popup-b330.label_dynamic_eaba .short-54c1:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.popup-b330.label_dynamic_eaba .short-54c1:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.popup-b330.label_dynamic_eaba .nav_cold_7cdb {
    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);
}

.popup-b330.label_dynamic_eaba .nav_cold_7cdb:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.popup-b330.label_dynamic_eaba .nav_cold_7cdb span {
    background: #475569;
    box-shadow: none;
}

.popup-b330.label_dynamic_eaba .nav_cold_7cdb.fn-active-f61c span:nth-child(1),
.popup-b330.label_dynamic_eaba .nav_cold_7cdb.fn-active-f61c span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .popup-b330.label_dynamic_eaba {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .popup-b330.label_dynamic_eaba .current-0c09 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .popup-b330.label_dynamic_eaba .current-0c09 span {
        color: #334155 !important;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 {
        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);
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .over-049d {
        color: #334155;
        text-shadow: none;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .over-049d:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .over-049d.out-1dee::after {
        color: #64748b;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .video-down-8335 {
        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) */
    .popup-b330.label_dynamic_eaba .bright-cbd3 .rough-2369.fn-active-f61c .video-down-8335 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .short-54c1 {
        color: #475569;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .short-54c1::before {
        color: #6366f1;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .short-54c1:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .short-54c1:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .popup-b330.label_dynamic_eaba .bright-cbd3 .short-54c1:hover::before {
        color: #4f46e5;
    }
}

/* apk.selected-83c6 — mesmo tema claro da home; blocos extras */
body.shade-dim-e2c9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade-dim-e2c9 .card-a82f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade-dim-e2c9 .photo-dd4b {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.shade-dim-e2c9 .photo-dd4b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade-dim-e2c9 .photo-dd4b p:last-child {
    margin-bottom: 0;
}

.shade-dim-e2c9 .photo-dd4b strong {
    color: var(--text-primary);
}

.shade-dim-e2c9 .white-c00a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade-dim-e2c9 .white-c00a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.texture_af43 {
    background: #f8f9fa;
    color: #2c3e50;
}

.texture_af43 .inner_8ba3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.texture_af43 .link-f6c8 {
    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);
}

.texture_af43 .link-f6c8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.texture_af43 .link-f6c8 p:last-child {
    margin-bottom: 0;
}

.texture_af43 .link-f6c8 strong {
    color: var(--text-primary);
}

.texture_af43 .nav-58cc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.texture_af43 .nav-58cc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thick_a702 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thick_a702 .wood-6a8b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thick_a702 .message-8301 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.thick_a702 .message-8301 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thick_a702 .message-8301 p:last-child {
    margin-bottom: 0;
}

.thick_a702 .message-8301 strong {
    color: var(--text-primary);
}

.thick_a702 .border_b20d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thick_a702 .border_b20d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.box_light_45f4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.box_light_45f4 .brown-d55a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.box_light_45f4 .sidebar_blue_6355 {
    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);
}

.box_light_45f4 .sidebar_blue_6355 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.box_light_45f4 .sidebar_blue_6355 p:last-child {
    margin-bottom: 0;
}

.box_light_45f4 .sidebar_blue_6355 strong {
    color: var(--text-primary);
}

.box_light_45f4 .link-gold-870b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.box_light_45f4 .link-gold-870b 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-26b0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.up-26b0 .sidebar_661f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.up-26b0 .photo_over_7869 {
    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-26b0 .photo_over_7869 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.up-26b0 .photo_over_7869 p:last-child {
    margin-bottom: 0;
}

.up-26b0 .photo_over_7869 strong {
    color: var(--text-primary);
}

.up-26b0 .title_2a66 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.up-26b0 .title_2a66 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.fluid_5d20 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fluid_5d20 .border-3a04 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fluid_5d20 .highlight_fa8a {
    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);
}

.fluid_5d20 .highlight_fa8a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fluid_5d20 .highlight_fa8a p:last-child {
    margin-bottom: 0;
}

.fluid_5d20 .highlight_fa8a strong {
    color: var(--text-primary);
}

.fluid_5d20 .card-49b1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fluid_5d20 .card-49b1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.search-728e {
    background: #f8f9fa;
    color: #2c3e50;
}

.search-728e .form-simple-809a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.search-728e .photo-in-6ed0 {
    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);
}

.search-728e .photo-in-6ed0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.search-728e .photo-in-6ed0 p:last-child {
    margin-bottom: 0;
}

.search-728e .photo-in-6ed0 strong {
    color: var(--text-primary);
}

.search-728e .preview-focused-4539 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.search-728e .preview-focused-4539 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_fa23 {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary_fa23 .tall-9f2c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary_fa23 .highlight_slow_65f6 {
    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_fa23 .highlight_slow_65f6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary_fa23 .highlight_slow_65f6 p:last-child {
    margin-bottom: 0;
}

.summary_fa23 .highlight_slow_65f6 strong {
    color: var(--text-primary);
}

.summary_fa23 .outline_glass_12b9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary_fa23 .outline_glass_12b9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.short-b506 {
    background: #f8f9fa;
    color: #2c3e50;
}

.short-b506 .hero-next-3d05 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.short-b506 .hover_red_a28d {
    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);
}

.short-b506 .hover_red_a28d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.short-b506 .hover_red_a28d p:last-child {
    margin-bottom: 0;
}

.short-b506 .hover_red_a28d strong {
    color: var(--text-primary);
}

.short-b506 .slow-04a4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.short-b506 .slow-04a4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.label-plasma-5d85 {
    background: #f8f9fa;
    color: #2c3e50;
}

.label-plasma-5d85 .pattern-top-e59c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label-plasma-5d85 .under_b4c9 {
    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);
}

.label-plasma-5d85 .under_b4c9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-plasma-5d85 .under_b4c9 p:last-child {
    margin-bottom: 0;
}

.label-plasma-5d85 .under_b4c9 strong {
    color: var(--text-primary);
}

.label-plasma-5d85 .solid_27b6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label-plasma-5d85 .solid_27b6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.container_smooth_50bf {
    background: #f8f9fa;
    color: #2c3e50;
}

.container_smooth_50bf .silver_8db6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.container_smooth_50bf .heading-simple-31a0 {
    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);
}

.container_smooth_50bf .heading-simple-31a0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.container_smooth_50bf .heading-simple-31a0 p:last-child {
    margin-bottom: 0;
}

.container_smooth_50bf .heading-simple-31a0 strong {
    color: var(--text-primary);
}

.container_smooth_50bf .stale_7e17 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.container_smooth_50bf .stale_7e17 li {
    margin-bottom: 0.65rem;
}

.container_smooth_50bf .stale_7e17 li:last-child {
    margin-bottom: 0;
}

.container_smooth_50bf .notification_eb7e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.container_smooth_50bf .notification_eb7e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.north_d154 {
    background: #f8f9fa;
    color: #2c3e50;
}

.north_d154 .overlay-bbe2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.north_d154 .new_0239 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.north_d154 .new_0239 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north_d154 .new_0239 p:last-child {
    margin-bottom: 0;
}

.north_d154 .new_0239 strong {
    color: var(--text-primary);
}

.north_d154 .feature_622f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north_d154 .feature_622f li {
    margin-bottom: 0.65rem;
}

.north_d154 .feature_622f li:last-child {
    margin-bottom: 0;
}

.north_d154 .tiny-78f5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.north_d154 .tiny-78f5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.simple-7b08 {
    background: #f8f9fa;
    color: #2c3e50;
}

.simple-7b08 .title-07cd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.simple-7b08 .tooltip-bright-a119 {
    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);
}

.simple-7b08 .tooltip-bright-a119 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.simple-7b08 .tooltip-bright-a119 p:last-child {
    margin-bottom: 0;
}

.simple-7b08 .tooltip-bright-a119 strong {
    color: var(--text-primary);
}

.simple-7b08 .backdrop_full_4124 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.simple-7b08 .backdrop_full_4124 li {
    margin-bottom: 0.65rem;
}

.simple-7b08 .backdrop_full_4124 li:last-child {
    margin-bottom: 0;
}

.simple-7b08 .in_4d94 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.simple-7b08 .in_4d94 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.feature_5806 {
    background: #f8f9fa;
    color: #2c3e50;
}

.feature_5806 .cool_cd04 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.feature_5806 .cold_b5b7 {
    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);
}

.feature_5806 .cold_b5b7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature_5806 .cold_b5b7 p:last-child {
    margin-bottom: 0;
}

.feature_5806 .cold_b5b7 strong {
    color: var(--text-primary);
}

.feature_5806 .video_glass_8161 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature_5806 .video_glass_8161 li {
    margin-bottom: 0.65rem;
}

.feature_5806 .video_glass_8161 li:last-child {
    margin-bottom: 0;
}

body.input-copper-984a {
    background: #f8f9fa;
    color: #2c3e50;
}

.input-copper-984a .logo-bc27 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input-copper-984a .shade-narrow-d28d {
    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-copper-984a .shade-narrow-d28d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-copper-984a .shade-narrow-d28d p:last-child {
    margin-bottom: 0;
}

.input-copper-984a .shade-narrow-d28d strong {
    color: var(--text-primary);
}

.input-copper-984a .breadcrumb_hot_10f6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-copper-984a .breadcrumb_hot_10f6 li {
    margin-bottom: 0.65rem;
}

.input-copper-984a .breadcrumb_hot_10f6 li:last-child {
    margin-bottom: 0;
}

.input-copper-984a .border-b26e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input-copper-984a .border-b26e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.progress-cool-5575 {
    background: #f8f9fa;
    color: #2c3e50;
}

.progress-cool-5575 .center-d8e2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.progress-cool-5575 .popup_blue_ed12 {
    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);
}

.progress-cool-5575 .popup_blue_ed12 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.progress-cool-5575 .popup_blue_ed12 p:last-child {
    margin-bottom: 0;
}

.progress-cool-5575 .popup_blue_ed12 strong {
    color: var(--text-primary);
}

.progress-cool-5575 .button-b870 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.progress-cool-5575 .button-b870 li {
    margin-bottom: 0.65rem;
}

.progress-cool-5575 .button-b870 li:last-child {
    margin-bottom: 0;
}

.progress-cool-5575 .fast_a95c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.progress-cool-5575 .fast_a95c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.border-stone-07d5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.border-stone-07d5 .info-pink-02b8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.border-stone-07d5 .static-5c0c {
    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);
}

.border-stone-07d5 .static-5c0c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border-stone-07d5 .static-5c0c p:last-child {
    margin-bottom: 0;
}

.border-stone-07d5 .static-5c0c strong {
    color: var(--text-primary);
}

.border-stone-07d5 .smooth-ef70 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border-stone-07d5 .smooth-ef70 li {
    margin-bottom: 0.65rem;
}

.border-stone-07d5 .smooth-ef70 li:last-child {
    margin-bottom: 0;
}

.border-stone-07d5 .hard_9c38 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.border-stone-07d5 .hard_9c38 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_558e {
    background: #f8f9fa;
    color: #2c3e50;
}

.sort_558e .smooth-5f08 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sort_558e .texture_orange_af61 {
    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_558e .texture_orange_af61 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sort_558e .texture_orange_af61 p:last-child {
    margin-bottom: 0;
}

.sort_558e .texture_orange_af61 strong {
    color: var(--text-primary);
}

.sort_558e .link-521b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sort_558e .link-521b li {
    margin-bottom: 0.65rem;
}

.sort_558e .link-521b li:last-child {
    margin-bottom: 0;
}

.sort_558e .nav-3071 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sort_558e .nav-3071 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: d511 */
.shadow-element-p4 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
