/* 
 * 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.outer_c31c) — fixed together on mobile */
.footer_stone_5e34 {
    width: 100%;
}

.shadow-right-a497 {
    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) {
    .footer_stone_5e34 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .shadow-right-a497 {
        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.breadcrumb_next_04ca. Conta) stay reachable.
     */
    .breadcrumb-basic-87fb .bright_ee86 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .footer_stone_5e34 .breadcrumb-basic-87fb > .bright_ee86 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .footer_stone_5e34:has(.border-yellow-e90e.fn-show-050c) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .footer_stone_5e34:has(.border-yellow-e90e.fn-show-050c) .shadow-right-a497 {
        flex-shrink: 0;
    }

    .footer_stone_5e34:has(.border-yellow-e90e.fn-show-050c) .breadcrumb-basic-87fb {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .footer_stone_5e34:has(.border-yellow-e90e.fn-show-050c) .breadcrumb-basic-87fb > .bright_ee86 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .footer_stone_5e34:has(.border-yellow-e90e.fn-show-050c) .static-91e9 {
        flex-shrink: 0;
    }

    .footer_stone_5e34:has(.border-yellow-e90e.fn-show-050c) .border-yellow-e90e.fn-show-050c {
        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 */
    .breadcrumb-basic-87fb .border-yellow-e90e .current_9abe.fn-active-050c .image_lower_561d {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .shadow-right-a497 {
        position: sticky;
        top: 0;
    }
}

.footer_stone_5e34.steel-d824,
.footer_stone_5e34.steel-d824 .shadow-right-a497 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.preview-right-0942 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .preview-right-0942 {
        padding: 0.75rem 0;
    }
}

.search_bright_b174 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.element_new_f970 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .element_new_f970 img {
        height: 35px;
    }
}

/* .breadcrumb-basic-87fb / .tabs_left_31b8 — inner pages (brown bar); index uses .inner-e7c3 below */

.breadcrumb-basic-87fb:not(.inner-e7c3) .tabs_left_31b8.fn-active-050c {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.card_a3c5 {
    display: flex;
    gap: var(--spacing-md);
}

.description_focused_3879,
.in_5834 {
    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) {
    .description_focused_3879,
    .in_5834 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .card_a3c5 {
        gap: 0.5rem;
    }
}

.description_focused_3879 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.description_focused_3879:hover {
    background: var(--primary-purple);
    color: white;
}

.in_5834 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.in_5834:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.mask-under-3365 {
    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%;
}

.mask-under-3365::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;
}

.mask-under-3365::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;
}

.section_afdf {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.lite_4ffe {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.lite_4ffe 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);
}

.mask-under-3365 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;
}

.label-7166 {
    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;
}

.label-7166 strong {
    font-weight: 700;
}

.carousel-6a1a {
    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);
}

.detail-thick-d31c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.search-motion-3f5f {
    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);
}

.search-motion-3f5f:hover {
    transform: translateY(-4px);
}

.wide-516d {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.in_163d {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.box_purple_a063 {
    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;
}

.box_purple_a063:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.box_purple_a063.top-08cf {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.description_763a {
    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);
}

.description_763a:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.card-02cb {
    padding: 3rem 1.25rem;
    background: white;
}

.button-light-980f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-4fad {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.badge-4fad:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.badge-4fad img {
    margin-bottom: 1rem;
}

.search-ed49 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.badge-4fad h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.badge-4fad 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 */
.preview_thick_8b56 {
    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);
}

.stone-77de {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dynamic_3cbb {
    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);
}

.dynamic_3cbb h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.dynamic_3cbb p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.dynamic_3cbb a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.info_dynamic_99d5 {
    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
   ======================================== */

.wide_1c10 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.logo-upper-c71f {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.hard-6145 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.feature-cdf8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.status-wood-8e54 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.status-wood-8e54:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.status-wood-8e54.card_south_1692 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.status-wood-8e54.card_south_1692 h3,
.status-wood-8e54.card_south_1692 p {
    color: white;
}

.full_ecc0 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status-wood-8e54 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.status-wood-8e54 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.thick-588e {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.thick-588e:hover {
    gap: 0.75rem;
}

.status-wood-8e54.card_south_1692 .thick-588e {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.description_plasma_d5ed {
    padding: 4rem 1.25rem;
    background: white;
}

.fresh-69e8 {
    text-align: center;
    margin-bottom: 3rem;
}

.popup-51e5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.out_41ac {
    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%;
}

.out_41ac:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.gallery_c520 {
    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);
}

.gold_32c1 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.down-8c19 {
    padding: 1.5rem;
}

.down-8c19 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.menu-thick-1199 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fast-9d7b {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.info-fresh-28b2,
.menu_tall_fe8d {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.info-fresh-28b2 {
    background: #dcfce7;
    color: #166534;
}

.info-fresh-28b2.aside-slow-7f43 {
    background: #10b981;
    color: white;
}

.menu_tall_fe8d {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.menu_tall_fe8d.hovered_f6ea {
    background: #fee2e2;
    color: #991b1b;
}

.menu_tall_fe8d.next-8976 {
    background: #fef3c7;
    color: #92400e;
}

.menu_tall_fe8d.west_d9ae {
    background: #dcfce7;
    color: #166534;
}

.right_6ede {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.right_6ede strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.link-fce0 {
    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);
}

.link-fce0:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.logo_412b {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.nav_bcb9 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.breadcrumb-fast-4373 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .breadcrumb-fast-4373 {
        grid-template-columns: 1fr 1fr;
    }
}

.progress-first-b50d img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.first-52d5 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.column_a296 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.short_8744 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.photo-hot-7654 {
    font-size: 1rem;
    opacity: 0.9;
}

.first-52d5 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.focus_c0b2 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.focus_c0b2 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.focus_c0b2 li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.focus_c0b2 li strong {
    color: var(--primary-purple);
}

.focus_c0b2 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.grid-steel-91f5 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.thick_6591 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.steel_101b {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.thick_6591 .in_163d {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.primary-old-913a p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.grid-hard-895d {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.grid-hard-895d a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.dark-59e9 {
    padding: 4rem 1.25rem;
    background: white;
}

.right-c09a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .right-c09a {
        grid-template-columns: 1fr 1fr;
    }
}

.left_0373 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer_9d79 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.fresh_8ea4 {
    margin-bottom: 1.5rem;
}

.cold_9ca7 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.search_dbfc {
    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);
}

.orange-cf86 {
    white-space: nowrap;
}

.panel_inner_be01 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.hot_c4c2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.avatar_2fe1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.avatar_2fe1:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.current_bfd3 {
    font-size: 2rem;
    flex-shrink: 0;
}

.large_55d2 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.large_55d2 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.label_south_2d86 {
    margin-top: 3rem;
}

.label_south_2d86 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-bottom-deec {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-bottom-deec thead {
    background: var(--primary-purple);
    color: white;
}

.feature-bottom-deec th,
.feature-bottom-deec td {
    padding: 1rem;
    text-align: left;
}

.feature-bottom-deec th {
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-bottom-deec tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.feature-bottom-deec tbody tr:last-child {
    border-bottom: none;
}

.feature-bottom-deec tbody tr:hover {
    background: var(--light-bg);
}

.hot_08f2 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.border-63f6 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.iron-df3f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.narrow-9e90 {
    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);
}

.narrow-9e90:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.narrow-9e90.widget-0414::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;
}

.yellow_e315 {
    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;
}

.disabled_e1ea {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.block-3e1f h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.fresh-a2a1 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.static-516d {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.static-516d p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.static-516d p:last-child {
    margin-bottom: 0;
}

.static-516d strong {
    color: var(--text-primary);
    font-weight: 600;
}

.notification-gas-434a {
    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;
}

.feature-fast-4ed0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.image_warm_bdb5 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.image_warm_bdb5 .wide-516d {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.image_warm_bdb5 .in_163d {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.progress_wood_0fbf {
    padding: 4rem 1.25rem;
    background: white;
}

.huge-998c {
    max-width: 900px;
    margin: 0 auto;
}

.aside-pro-1161 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.aside-pro-1161:hover {
    border-color: var(--primary-purple);
}

.aside-pro-1161[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.aside-pro-1161 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;
}

.aside-pro-1161 summary::-webkit-details-marker {
    display: none;
}

.aside-pro-1161 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.aside-pro-1161[open] summary::after {
    transform: rotate(45deg);
}

.old-e4ac {
    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);
    }
}

.old-e4ac p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.old-e4ac h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.old-e4ac ul,
.old-e4ac ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.old-e4ac li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.old-e4ac strong {
    color: var(--text-primary);
    font-weight: 600;
}

.surface-down-0dd3 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.picture-pro-2dac {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.picture-pro-2dac th,
.picture-pro-2dac td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.picture-pro-2dac th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.paragraph_cee5 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.black-967f {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.avatar_bright_41a2 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .avatar_bright_41a2 {
        flex-direction: column;
        text-align: center;
    }
}

.avatar_bright_41a2 img {
    flex-shrink: 0;
}

.shadow_tall_9bff {
    font-size: 4rem;
    flex-shrink: 0;
}

.table-e45a h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.table-e45a p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.notification-center-9aef {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.main_black_aa47 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.down_1d06 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.down_1d06 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.new_446b {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.disabled-wide-4a12 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.short-7ea8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.full-ebe6 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.full-ebe6 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.hot_028c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.accent-full-ec1a {
    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);
}

.warm_84f4 {
    list-style: none;
}

.warm_84f4 li {
    margin-bottom: 0.75rem;
}

.warm_84f4 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.warm_84f4 a:hover {
    color: white;
}

.tabs_1799 {
    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;
}

.hero-c1ed {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-c1ed span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.title-dim-a99e {
    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);
}

.active-1057 {
    text-align: right;
}

@media (max-width: 767px) {
    .active-1057 {
        text-align: center;
        width: 100%;
    }
}

.active-1057 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.form_3718 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.bright_ee86 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.card-02cb,
.preview_thick_8b56,
.wide_1c10,
.description_plasma_d5ed,
.nav_bcb9,
.dark-59e9,
.border-63f6,
.progress_wood_0fbf,
.black-967f,
.main_black_aa47 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .logo-upper-c71f {
        font-size: 1.75rem;
    }
    
    .hard-6145 {
        font-size: 1rem;
    }
    
    .grid-steel-91f5 {
        flex-direction: column;
    }
    
    .right-c09a {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .popup-51e5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .out_41ac {
        max-width: 100%;
    }
    
    .gold_32c1 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .bright_ee86 {
        padding: 0 1rem;
    }
    
    .mask-under-3365 {
        padding: 4rem 1rem 3rem;
    }
    
    .mask-under-3365 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .box_purple_a063 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .detail-thick-d31c {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .feature-bottom-deec,
    .picture-pro-2dac {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .button-light-980f {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .feature-cdf8 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .iron-df3f {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .mask-under-3365 h1 {
        font-size: 1.5rem;
    }
    
    .detail-thick-d31c {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .search-motion-3f5f {
        padding: 0.75rem;
    }
    
    .wide-516d {
        font-size: 1.5rem;
    }
    
    .button-light-980f {
        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 */
.out_41ac:hover,
.status-wood-8e54:hover,
.narrow-9e90:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .description_plasma_d5ed,
    .border-63f6,
    .progress_wood_0fbf {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.outer_c31c)
   ======================================== */

.breadcrumb-basic-87fb.inner-e7c3 {
    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;
}

.breadcrumb-basic-87fb.inner-e7c3 .tabs_left_31b8 {
    color: #334155;
}

.breadcrumb-basic-87fb.inner-e7c3 .tabs_left_31b8:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.breadcrumb-basic-87fb.inner-e7c3 .tabs_left_31b8.fn-active-050c {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.breadcrumb-basic-87fb.inner-e7c3 .image_lower_561d {
    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);
}

.breadcrumb-basic-87fb.inner-e7c3 .image_lower_561d::before {
    border-bottom-color: #ffffff;
}

.breadcrumb-basic-87fb.inner-e7c3 .dark-8790 {
    color: #475569;
}

.breadcrumb-basic-87fb.inner-e7c3 .dark-8790::before {
    background: #818cf8;
}

.breadcrumb-basic-87fb.inner-e7c3 .dark-8790:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.breadcrumb-basic-87fb.inner-e7c3 .dark-8790:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.breadcrumb-basic-87fb.inner-e7c3 .chip_aa97 {
    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);
}

.breadcrumb-basic-87fb.inner-e7c3 .chip_aa97:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.breadcrumb-basic-87fb.inner-e7c3 .chip_aa97 span {
    background: #475569;
    box-shadow: none;
}

.breadcrumb-basic-87fb.inner-e7c3 .chip_aa97.fn-active-050c span:nth-child(1),
.breadcrumb-basic-87fb.inner-e7c3 .chip_aa97.fn-active-050c span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .breadcrumb-basic-87fb.inner-e7c3 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .breadcrumb-basic-87fb.inner-e7c3 .static-91e9 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .breadcrumb-basic-87fb.inner-e7c3 .static-91e9 span {
        color: #334155 !important;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e {
        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);
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .tabs_left_31b8 {
        color: #334155;
        text-shadow: none;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .tabs_left_31b8:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .tabs_left_31b8.outline-47a9::after {
        color: #64748b;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .image_lower_561d {
        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) */
    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .current_9abe.fn-active-050c .image_lower_561d {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .dark-8790 {
        color: #475569;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .dark-8790::before {
        color: #6366f1;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .dark-8790:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .dark-8790:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .breadcrumb-basic-87fb.inner-e7c3 .border-yellow-e90e .dark-8790:hover::before {
        color: #4f46e5;
    }
}

/* apk.form_b02e — mesmo tema claro da home; blocos extras */
body.main-35f2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.main-35f2 .primary-out-5911 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.main-35f2 .pro_84dc {
    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);
}

.main-35f2 .pro_84dc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main-35f2 .pro_84dc p:last-child {
    margin-bottom: 0;
}

.main-35f2 .pro_84dc strong {
    color: var(--text-primary);
}

.main-35f2 .link_904c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.main-35f2 .link_904c 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-db2a {
    background: #f8f9fa;
    color: #2c3e50;
}

.container-db2a .smooth-ddd6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.container-db2a .container-87de {
    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-db2a .container-87de p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.container-db2a .container-87de p:last-child {
    margin-bottom: 0;
}

.container-db2a .container-87de strong {
    color: var(--text-primary);
}

.container-db2a .backdrop-e751 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.container-db2a .backdrop-e751 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.middle_6d50 {
    background: #f8f9fa;
    color: #2c3e50;
}

.middle_6d50 .cold-7840 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.middle_6d50 .table_fast_f72e {
    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);
}

.middle_6d50 .table_fast_f72e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle_6d50 .table_fast_f72e p:last-child {
    margin-bottom: 0;
}

.middle_6d50 .table_fast_f72e strong {
    color: var(--text-primary);
}

.middle_6d50 .article_over_a434 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.middle_6d50 .article_over_a434 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.solid-8b7c {
    background: #f8f9fa;
    color: #2c3e50;
}

.solid-8b7c .wood_135c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.solid-8b7c .summary_soft_b5d3 {
    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);
}

.solid-8b7c .summary_soft_b5d3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.solid-8b7c .summary_soft_b5d3 p:last-child {
    margin-bottom: 0;
}

.solid-8b7c .summary_soft_b5d3 strong {
    color: var(--text-primary);
}

.solid-8b7c .feature_b335 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.solid-8b7c .feature_b335 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.media_lower_b63e {
    background: #f8f9fa;
    color: #2c3e50;
}

.media_lower_b63e .picture_5226 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media_lower_b63e .huge_8003 {
    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);
}

.media_lower_b63e .huge_8003 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media_lower_b63e .huge_8003 p:last-child {
    margin-bottom: 0;
}

.media_lower_b63e .huge_8003 strong {
    color: var(--text-primary);
}

.media_lower_b63e .bottom-1ddc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media_lower_b63e .bottom-1ddc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.basic_6422 {
    background: #f8f9fa;
    color: #2c3e50;
}

.basic_6422 .gold_f3b5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.basic_6422 .pattern_005f {
    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);
}

.basic_6422 .pattern_005f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.basic_6422 .pattern_005f p:last-child {
    margin-bottom: 0;
}

.basic_6422 .pattern_005f strong {
    color: var(--text-primary);
}

.basic_6422 .accordion_3e83 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.basic_6422 .accordion_3e83 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.section_00d4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.section_00d4 .alert-pressed-4d7c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.section_00d4 .shadow_7f48 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.section_00d4 .shadow_7f48 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_00d4 .shadow_7f48 p:last-child {
    margin-bottom: 0;
}

.section_00d4 .shadow_7f48 strong {
    color: var(--text-primary);
}

.section_00d4 .white-11db {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.section_00d4 .white-11db img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.active_31fb {
    background: #f8f9fa;
    color: #2c3e50;
}

.active_31fb .module-over-007a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active_31fb .light_24ef {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.active_31fb .light_24ef p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active_31fb .light_24ef p:last-child {
    margin-bottom: 0;
}

.active_31fb .light_24ef strong {
    color: var(--text-primary);
}

.active_31fb .title-narrow-2419 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active_31fb .title-narrow-2419 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.slider-under-d1b1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slider-under-d1b1 .module_e2a8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slider-under-d1b1 .card_west_001d {
    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);
}

.slider-under-d1b1 .card_west_001d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slider-under-d1b1 .card_west_001d p:last-child {
    margin-bottom: 0;
}

.slider-under-d1b1 .card_west_001d strong {
    color: var(--text-primary);
}

.slider-under-d1b1 .popup-e83b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slider-under-d1b1 .popup-e83b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.media-c4ce {
    background: #f8f9fa;
    color: #2c3e50;
}

.media-c4ce .black-4d61 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media-c4ce .under_ee10 {
    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);
}

.media-c4ce .under_ee10 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media-c4ce .under_ee10 p:last-child {
    margin-bottom: 0;
}

.media-c4ce .under_ee10 strong {
    color: var(--text-primary);
}

.media-c4ce .green_39f8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media-c4ce .green_39f8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.title_fixed_d674 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title_fixed_d674 .shade_dim_d6ff {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title_fixed_d674 .image-steel-00e0 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.title_fixed_d674 .image-steel-00e0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title_fixed_d674 .image-steel-00e0 p:last-child {
    margin-bottom: 0;
}

.title_fixed_d674 .image-steel-00e0 strong {
    color: var(--text-primary);
}

.title_fixed_d674 .modal-8733 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title_fixed_d674 .modal-8733 li {
    margin-bottom: 0.65rem;
}

.title_fixed_d674 .modal-8733 li:last-child {
    margin-bottom: 0;
}

.title_fixed_d674 .gallery-1ec9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title_fixed_d674 .gallery-1ec9 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-75b1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.medium-75b1 .element-2e21 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.medium-75b1 .logo_liquid_f489 {
    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-75b1 .logo_liquid_f489 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.medium-75b1 .logo_liquid_f489 p:last-child {
    margin-bottom: 0;
}

.medium-75b1 .logo_liquid_f489 strong {
    color: var(--text-primary);
}

.medium-75b1 .bottom_24b4 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.medium-75b1 .bottom_24b4 li {
    margin-bottom: 0.65rem;
}

.medium-75b1 .bottom_24b4 li:last-child {
    margin-bottom: 0;
}

.medium-75b1 .image-outer-75a9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.medium-75b1 .image-outer-75a9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.main_right_ad2a {
    background: #f8f9fa;
    color: #2c3e50;
}

.main_right_ad2a .card_middle_e563 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.main_right_ad2a .cool-d1b8 {
    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);
}

.main_right_ad2a .cool-d1b8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main_right_ad2a .cool-d1b8 p:last-child {
    margin-bottom: 0;
}

.main_right_ad2a .cool-d1b8 strong {
    color: var(--text-primary);
}

.main_right_ad2a .container-9a7f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main_right_ad2a .container-9a7f li {
    margin-bottom: 0.65rem;
}

.main_right_ad2a .container-9a7f li:last-child {
    margin-bottom: 0;
}

.main_right_ad2a .red_3e88 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.main_right_ad2a .red_3e88 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.grid_lite_6a77 {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid_lite_6a77 .bright_d8aa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid_lite_6a77 .hard-ecde {
    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);
}

.grid_lite_6a77 .hard-ecde p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_lite_6a77 .hard-ecde p:last-child {
    margin-bottom: 0;
}

.grid_lite_6a77 .hard-ecde strong {
    color: var(--text-primary);
}

.grid_lite_6a77 .hover-972f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_lite_6a77 .hover-972f li {
    margin-bottom: 0.65rem;
}

.grid_lite_6a77 .hover-972f li:last-child {
    margin-bottom: 0;
}

body.glass_8b03 {
    background: #f8f9fa;
    color: #2c3e50;
}

.glass_8b03 .box_motion_ac79 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.glass_8b03 .purple_e059 {
    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);
}

.glass_8b03 .purple_e059 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.glass_8b03 .purple_e059 p:last-child {
    margin-bottom: 0;
}

.glass_8b03 .purple_e059 strong {
    color: var(--text-primary);
}

.glass_8b03 .texture_basic_cd5e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.glass_8b03 .texture_basic_cd5e li {
    margin-bottom: 0.65rem;
}

.glass_8b03 .texture_basic_cd5e li:last-child {
    margin-bottom: 0;
}

.glass_8b03 .out_51e8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.glass_8b03 .out_51e8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.stone-f3c1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.stone-f3c1 .aside-red-1edc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.stone-f3c1 .right_6afc {
    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);
}

.stone-f3c1 .right_6afc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.stone-f3c1 .right_6afc p:last-child {
    margin-bottom: 0;
}

.stone-f3c1 .right_6afc strong {
    color: var(--text-primary);
}

.stone-f3c1 .column-e8e7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.stone-f3c1 .column-e8e7 li {
    margin-bottom: 0.65rem;
}

.stone-f3c1 .column-e8e7 li:last-child {
    margin-bottom: 0;
}

.stone-f3c1 .icon_18b6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.stone-f3c1 .icon_18b6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dropdown_west_2c74 {
    background: #f8f9fa;
    color: #2c3e50;
}

.dropdown_west_2c74 .container_complex_7eb3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dropdown_west_2c74 .slow-e000 {
    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);
}

.dropdown_west_2c74 .slow-e000 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dropdown_west_2c74 .slow-e000 p:last-child {
    margin-bottom: 0;
}

.dropdown_west_2c74 .slow-e000 strong {
    color: var(--text-primary);
}

.dropdown_west_2c74 .heading_5f7d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dropdown_west_2c74 .heading_5f7d li {
    margin-bottom: 0.65rem;
}

.dropdown_west_2c74 .heading_5f7d li:last-child {
    margin-bottom: 0;
}

.dropdown_west_2c74 .alert_paper_633c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dropdown_west_2c74 .alert_paper_633c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.advanced_466b {
    background: #f8f9fa;
    color: #2c3e50;
}

.advanced_466b .tertiary-fc57 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.advanced_466b .active-162f {
    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);
}

.advanced_466b .active-162f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.advanced_466b .active-162f p:last-child {
    margin-bottom: 0;
}

.advanced_466b .active-162f strong {
    color: var(--text-primary);
}

.advanced_466b .disabled_middle_b6f0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.advanced_466b .disabled_middle_b6f0 li {
    margin-bottom: 0.65rem;
}

.advanced_466b .disabled_middle_b6f0 li:last-child {
    margin-bottom: 0;
}

.advanced_466b .section_hard_f4cc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.advanced_466b .section_hard_f4cc 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: 6c06 */
.phantom-card-q1 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
