/* 
 * 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.paragraph-last-6cde) — fixed together on mobile */
.text-upper-581f {
    width: 100%;
}

.rough_3e31 {
    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) {
    .text-upper-581f {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .rough_3e31 {
        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.dropdown-98bd. Conta) stay reachable.
     */
    .card-8e2f .notice-4f23 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .text-upper-581f .card-8e2f > .notice-4f23 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .text-upper-581f:has(.list-f319.fn-show-9065) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .text-upper-581f:has(.list-f319.fn-show-9065) .rough_3e31 {
        flex-shrink: 0;
    }

    .text-upper-581f:has(.list-f319.fn-show-9065) .card-8e2f {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .text-upper-581f:has(.list-f319.fn-show-9065) .card-8e2f > .notice-4f23 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .text-upper-581f:has(.list-f319.fn-show-9065) .current_b1ed {
        flex-shrink: 0;
    }

    .text-upper-581f:has(.list-f319.fn-show-9065) .list-f319.fn-show-9065 {
        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 */
    .card-8e2f .list-f319 .stone-52eb.fn-active-9065 .focus_57b9 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .rough_3e31 {
        position: sticky;
        top: 0;
    }
}

.text-upper-581f.tabs_old_2c75,
.text-upper-581f.tabs_old_2c75 .rough_3e31 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.container-out-be4f {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .container-out-be4f {
        padding: 0.75rem 0;
    }
}

.link_419f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.basic-08d0 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .basic-08d0 img {
        height: 35px;
    }
}

/* .card-8e2f / .summary_f7f1 — inner pages (brown bar); index uses .texture_3dd4 below */

.card-8e2f:not(.texture_3dd4) .summary_f7f1.fn-active-9065 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.slow_e5af {
    display: flex;
    gap: var(--spacing-md);
}

.action_789e,
.block_1bca {
    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) {
    .action_789e,
    .block_1bca {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .slow_e5af {
        gap: 0.5rem;
    }
}

.action_789e {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.action_789e:hover {
    background: var(--primary-purple);
    color: white;
}

.block_1bca {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.block_1bca:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.label-a16d {
    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%;
}

.label-a16d::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;
}

.label-a16d::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;
}

.fluid_8f80 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.tooltip-36a1 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.tooltip-36a1 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);
}

.label-a16d 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;
}

.gas-f838 {
    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;
}

.gas-f838 strong {
    font-weight: 700;
}

.wood-1858 {
    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);
}

.dropdown_rough_49b6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.static-cab6 {
    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);
}

.static-cab6:hover {
    transform: translateY(-4px);
}

.brown_9327 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.box_f3a7 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.section-dynamic-3bb8 {
    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;
}

.section-dynamic-3bb8:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.section-dynamic-3bb8.light_3a1a {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.hover-blue-6091 {
    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);
}

.hover-blue-6091:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.row_out_4e13 {
    padding: 3rem 1.25rem;
    background: white;
}

.content-f87e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.panel-plasma-3e0a {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.panel-plasma-3e0a:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.panel-plasma-3e0a img {
    margin-bottom: 1rem;
}

.first-4f5e {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.panel-plasma-3e0a h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.panel-plasma-3e0a 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 */
.overlay_basic_6bf1 {
    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);
}

.basic-e531 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.filter_21a6 {
    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);
}

.filter_21a6 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.filter_21a6 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.filter_21a6 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumb_1a5d {
    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
   ======================================== */

.image-3009 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.footer_2df7 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.shade_mini_4178 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.message-motion-f567 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.layout-5290 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.layout-5290:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.layout-5290.modal-fd5e {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.layout-5290.modal-fd5e h3,
.layout-5290.modal-fd5e p {
    color: white;
}

.tertiary_b955 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.layout-5290 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.layout-5290 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.icon_dynamic_d454 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.icon_dynamic_d454:hover {
    gap: 0.75rem;
}

.layout-5290.modal-fd5e .icon_dynamic_d454 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.shade_lite_cf80 {
    padding: 4rem 1.25rem;
    background: white;
}

.accordion-b544 {
    text-align: center;
    margin-bottom: 3rem;
}

.complex-8971 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.cold_46ba {
    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%;
}

.cold_46ba:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.sort-bronze-b0e6 {
    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);
}

.icon_3d14 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.new-529a {
    padding: 1.5rem;
}

.new-529a h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.card-right-c72d {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.new_a3f3 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.detail-in-8174,
.link-prev-a93c {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-in-8174 {
    background: #dcfce7;
    color: #166534;
}

.detail-in-8174.footer-over-3092 {
    background: #10b981;
    color: white;
}

.link-prev-a93c {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.link-prev-a93c.video-west-c527 {
    background: #fee2e2;
    color: #991b1b;
}

.link-prev-a93c.advanced_4e32 {
    background: #fef3c7;
    color: #92400e;
}

.link-prev-a93c.main-white-2ee9 {
    background: #dcfce7;
    color: #166534;
}

.gallery-short-42f0 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gallery-short-42f0 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.layout_e4d3 {
    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);
}

.layout_e4d3:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.list-94e8 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.tabs_9033 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.soft-4bbc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .soft-4bbc {
        grid-template-columns: 1fr 1fr;
    }
}

.layout_pro_adca img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.tag-blue-481d h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hidden-stone-df2a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.section_d835 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.status-78a6 {
    font-size: 1rem;
    opacity: 0.9;
}

.tag-blue-481d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.green_3cae {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.green_3cae li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.green_3cae 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;
}

.green_3cae li strong {
    color: var(--primary-purple);
}

.green_3cae li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.slider-0424 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.backdrop_010a {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.background-old-55a8 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.backdrop_010a .box_f3a7 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.clean_49e1 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.highlight-1ea3 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.highlight-1ea3 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.fluid_d41c {
    padding: 4rem 1.25rem;
    background: white;
}

.outline_cold_223c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .outline_cold_223c {
        grid-template-columns: 1fr 1fr;
    }
}

.icon_right_8a57 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.chip_17b3 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.basic_5126 {
    margin-bottom: 1.5rem;
}

.article_b5fe {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.right_ab52 {
    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);
}

.paragraph_selected_31ff {
    white-space: nowrap;
}

.fixed-c00f {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.picture-left-3ede h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.primary-6112 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.primary-6112:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.inner-3db4 {
    font-size: 2rem;
    flex-shrink: 0;
}

.gallery-orange-38ed h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery-orange-38ed p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.complex-d1a6 {
    margin-top: 3rem;
}

.complex-d1a6 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.list-9823 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.list-9823 thead {
    background: var(--primary-purple);
    color: white;
}

.list-9823 th,
.list-9823 td {
    padding: 1rem;
    text-align: left;
}

.list-9823 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.list-9823 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.list-9823 tbody tr:last-child {
    border-bottom: none;
}

.list-9823 tbody tr:hover {
    background: var(--light-bg);
}

.module_9bda {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.form_clean_f296 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.label-c1f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.down_fdef {
    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);
}

.down_fdef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.down_fdef.photo-bronze-5cd4::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;
}

.title-fast-429c {
    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;
}

.dim-2138 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.static-4362 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.badge-4df2 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.highlight_first_c9d3 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.highlight_first_c9d3 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.highlight_first_c9d3 p:last-child {
    margin-bottom: 0;
}

.highlight_first_c9d3 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.panel-c6cd {
    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;
}

.popup-lite-e4e7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.shade-orange-9044 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.shade-orange-9044 .brown_9327 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.shade-orange-9044 .box_f3a7 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.clean-285a {
    padding: 4rem 1.25rem;
    background: white;
}

.under-541e {
    max-width: 900px;
    margin: 0 auto;
}

.grid_bottom_aa3d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.grid_bottom_aa3d:hover {
    border-color: var(--primary-purple);
}

.grid_bottom_aa3d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.grid_bottom_aa3d 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;
}

.grid_bottom_aa3d summary::-webkit-details-marker {
    display: none;
}

.grid_bottom_aa3d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.grid_bottom_aa3d[open] summary::after {
    transform: rotate(45deg);
}

.footer_motion_e87e {
    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);
    }
}

.footer_motion_e87e p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.footer_motion_e87e h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.footer_motion_e87e ul,
.footer_motion_e87e ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.footer_motion_e87e li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer_motion_e87e strong {
    color: var(--text-primary);
    font-weight: 600;
}

.background-f82f {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.mask-fast-f1d2 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mask-fast-f1d2 th,
.mask-fast-f1d2 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.mask-fast-f1d2 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.steel-61f2 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.left_9473 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.component_narrow_1a27 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .component_narrow_1a27 {
        flex-direction: column;
        text-align: center;
    }
}

.component_narrow_1a27 img {
    flex-shrink: 0;
}

.focus_1b64 {
    font-size: 4rem;
    flex-shrink: 0;
}

.avatar-advanced-1557 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.avatar-advanced-1557 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.silver_fe25 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.footer-black-6992 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.block_3524 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.block_3524 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider_0f04 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.input-8a7d {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.heading-5070 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.box-29ca h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.box-29ca p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.accordion-277c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.active-9c38 {
    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);
}

.advanced-c5dc {
    list-style: none;
}

.advanced-c5dc li {
    margin-bottom: 0.75rem;
}

.advanced-c5dc a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.advanced-c5dc a:hover {
    color: white;
}

.narrow-03b9 {
    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;
}

.dynamic_67d5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dynamic_67d5 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.thumbnail-e1e9 {
    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-51a8 {
    text-align: right;
}

@media (max-width: 767px) {
    .active-51a8 {
        text-align: center;
        width: 100%;
    }
}

.active-51a8 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.surface_smooth_5d8b {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.notice-4f23 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.row_out_4e13,
.overlay_basic_6bf1,
.image-3009,
.shade_lite_cf80,
.tabs_9033,
.fluid_d41c,
.form_clean_f296,
.clean-285a,
.left_9473,
.footer-black-6992 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .footer_2df7 {
        font-size: 1.75rem;
    }
    
    .shade_mini_4178 {
        font-size: 1rem;
    }
    
    .slider-0424 {
        flex-direction: column;
    }
    
    .outline_cold_223c {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .complex-8971 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cold_46ba {
        max-width: 100%;
    }
    
    .icon_3d14 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .notice-4f23 {
        padding: 0 1rem;
    }
    
    .label-a16d {
        padding: 4rem 1rem 3rem;
    }
    
    .label-a16d h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .section-dynamic-3bb8 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown_rough_49b6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .list-9823,
    .mask-fast-f1d2 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .content-f87e {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .message-motion-f567 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .label-c1f1 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .label-a16d h1 {
        font-size: 1.5rem;
    }
    
    .dropdown_rough_49b6 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .static-cab6 {
        padding: 0.75rem;
    }
    
    .brown_9327 {
        font-size: 1.5rem;
    }
    
    .content-f87e {
        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 */
.cold_46ba:hover,
.layout-5290:hover,
.down_fdef:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .shade_lite_cf80,
    .form_clean_f296,
    .clean-285a {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.paragraph-last-6cde)
   ======================================== */

.card-8e2f.texture_3dd4 {
    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;
}

.card-8e2f.texture_3dd4 .summary_f7f1 {
    color: #334155;
}

.card-8e2f.texture_3dd4 .summary_f7f1:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.card-8e2f.texture_3dd4 .summary_f7f1.fn-active-9065 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.card-8e2f.texture_3dd4 .focus_57b9 {
    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);
}

.card-8e2f.texture_3dd4 .focus_57b9::before {
    border-bottom-color: #ffffff;
}

.card-8e2f.texture_3dd4 .tag-green-b14c {
    color: #475569;
}

.card-8e2f.texture_3dd4 .tag-green-b14c::before {
    background: #818cf8;
}

.card-8e2f.texture_3dd4 .tag-green-b14c:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.card-8e2f.texture_3dd4 .tag-green-b14c:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.card-8e2f.texture_3dd4 .dirty-bfa5 {
    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);
}

.card-8e2f.texture_3dd4 .dirty-bfa5:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.card-8e2f.texture_3dd4 .dirty-bfa5 span {
    background: #475569;
    box-shadow: none;
}

.card-8e2f.texture_3dd4 .dirty-bfa5.fn-active-9065 span:nth-child(1),
.card-8e2f.texture_3dd4 .dirty-bfa5.fn-active-9065 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .card-8e2f.texture_3dd4 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .card-8e2f.texture_3dd4 .current_b1ed {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .card-8e2f.texture_3dd4 .current_b1ed span {
        color: #334155 !important;
    }

    .card-8e2f.texture_3dd4 .list-f319 {
        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);
    }

    .card-8e2f.texture_3dd4 .list-f319 .summary_f7f1 {
        color: #334155;
        text-shadow: none;
    }

    .card-8e2f.texture_3dd4 .list-f319 .summary_f7f1:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .card-8e2f.texture_3dd4 .list-f319 .summary_f7f1.tooltip_2b6a::after {
        color: #64748b;
    }

    .card-8e2f.texture_3dd4 .list-f319 .focus_57b9 {
        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) */
    .card-8e2f.texture_3dd4 .list-f319 .stone-52eb.fn-active-9065 .focus_57b9 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .card-8e2f.texture_3dd4 .list-f319 .tag-green-b14c {
        color: #475569;
    }

    .card-8e2f.texture_3dd4 .list-f319 .tag-green-b14c::before {
        color: #6366f1;
    }

    .card-8e2f.texture_3dd4 .list-f319 .tag-green-b14c:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .card-8e2f.texture_3dd4 .list-f319 .tag-green-b14c:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .card-8e2f.texture_3dd4 .list-f319 .tag-green-b14c:hover::before {
        color: #4f46e5;
    }
}

/* apk.secondary_red_f840 — mesmo tema claro da home; blocos extras */
body.slow-d996 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slow-d996 .heading_f1db {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slow-d996 .component_08e8 {
    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);
}

.slow-d996 .component_08e8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow-d996 .component_08e8 p:last-child {
    margin-bottom: 0;
}

.slow-d996 .component_08e8 strong {
    color: var(--text-primary);
}

.slow-d996 .thumbnail_new_8bc2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slow-d996 .thumbnail_new_8bc2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.article_d20c {
    background: #f8f9fa;
    color: #2c3e50;
}

.article_d20c .pagination_659e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.article_d20c .current-df2e {
    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);
}

.article_d20c .current-df2e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.article_d20c .current-df2e p:last-child {
    margin-bottom: 0;
}

.article_d20c .current-df2e strong {
    color: var(--text-primary);
}

.article_d20c .secondary_6d84 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.article_d20c .secondary_6d84 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_6220 {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid_6220 .media_stone_7a0c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid_6220 .hidden-thick-6f36 {
    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_6220 .hidden-thick-6f36 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_6220 .hidden-thick-6f36 p:last-child {
    margin-bottom: 0;
}

.grid_6220 .hidden-thick-6f36 strong {
    color: var(--text-primary);
}

.grid_6220 .gradient_1a57 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.grid_6220 .gradient_1a57 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gas_9cfb {
    background: #f8f9fa;
    color: #2c3e50;
}

.gas_9cfb .notification-eccd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gas_9cfb .down-bd95 {
    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);
}

.gas_9cfb .down-bd95 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gas_9cfb .down-bd95 p:last-child {
    margin-bottom: 0;
}

.gas_9cfb .down-bd95 strong {
    color: var(--text-primary);
}

.gas_9cfb .summary-11f4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gas_9cfb .summary-11f4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.popup_afdb {
    background: #f8f9fa;
    color: #2c3e50;
}

.popup_afdb .purple_65d2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.popup_afdb .card_8adf {
    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);
}

.popup_afdb .card_8adf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.popup_afdb .card_8adf p:last-child {
    margin-bottom: 0;
}

.popup_afdb .card_8adf strong {
    color: var(--text-primary);
}

.popup_afdb .dynamic-7852 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.popup_afdb .dynamic-7852 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper_in_3ab3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper_in_3ab3 .prev_46fa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper_in_3ab3 .tall-b7b9 {
    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);
}

.wrapper_in_3ab3 .tall-b7b9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_in_3ab3 .tall-b7b9 p:last-child {
    margin-bottom: 0;
}

.wrapper_in_3ab3 .tall-b7b9 strong {
    color: var(--text-primary);
}

.wrapper_in_3ab3 .label-863f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper_in_3ab3 .label-863f 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_40c8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fluid_40c8 .layout-wide-915b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fluid_40c8 .caption-ccff {
    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_40c8 .caption-ccff p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fluid_40c8 .caption-ccff p:last-child {
    margin-bottom: 0;
}

.fluid_40c8 .caption-ccff strong {
    color: var(--text-primary);
}

.fluid_40c8 .modal_3f1c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fluid_40c8 .modal_3f1c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.soft-9d9d {
    background: #f8f9fa;
    color: #2c3e50;
}

.soft-9d9d .media-mini-1d48 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.soft-9d9d .dark_fac1 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.soft-9d9d .dark_fac1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft-9d9d .dark_fac1 p:last-child {
    margin-bottom: 0;
}

.soft-9d9d .dark_fac1 strong {
    color: var(--text-primary);
}

.soft-9d9d .disabled-809b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.soft-9d9d .disabled-809b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.module-upper-a45a {
    background: #f8f9fa;
    color: #2c3e50;
}

.module-upper-a45a .first-4e92 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.module-upper-a45a .static_66ab {
    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);
}

.module-upper-a45a .static_66ab p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module-upper-a45a .static_66ab p:last-child {
    margin-bottom: 0;
}

.module-upper-a45a .static_66ab strong {
    color: var(--text-primary);
}

.module-upper-a45a .form-advanced-d637 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.module-upper-a45a .form-advanced-d637 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-left-b34e {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary-left-b34e .background-large-798a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary-left-b34e .block-new-20e6 {
    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-left-b34e .block-new-20e6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary-left-b34e .block-new-20e6 p:last-child {
    margin-bottom: 0;
}

.summary-left-b34e .block-new-20e6 strong {
    color: var(--text-primary);
}

.summary-left-b34e .pressed_c20e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary-left-b34e .pressed_c20e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.old_5fe3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.old_5fe3 .dirty_b902 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.old_5fe3 .modal_88be {
    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);
}

.old_5fe3 .modal_88be p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.old_5fe3 .modal_88be p:last-child {
    margin-bottom: 0;
}

.old_5fe3 .modal_88be strong {
    color: var(--text-primary);
}

.old_5fe3 .gradient_d5bf {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.old_5fe3 .gradient_d5bf li {
    margin-bottom: 0.65rem;
}

.old_5fe3 .gradient_d5bf li:last-child {
    margin-bottom: 0;
}

.old_5fe3 .table_a0b8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.old_5fe3 .table_a0b8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.column_under_803d {
    background: #f8f9fa;
    color: #2c3e50;
}

.column_under_803d .outline-red-0e77 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.column_under_803d .frame-focused-c7e7 {
    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);
}

.column_under_803d .frame-focused-c7e7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.column_under_803d .frame-focused-c7e7 p:last-child {
    margin-bottom: 0;
}

.column_under_803d .frame-focused-c7e7 strong {
    color: var(--text-primary);
}

.column_under_803d .complex_0aa5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.column_under_803d .complex_0aa5 li {
    margin-bottom: 0.65rem;
}

.column_under_803d .complex_0aa5 li:last-child {
    margin-bottom: 0;
}

.column_under_803d .article-small-bbb3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.column_under_803d .article-small-bbb3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.article-rough-f88b {
    background: #f8f9fa;
    color: #2c3e50;
}

.article-rough-f88b .focus-e3ec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.article-rough-f88b .thumbnail-8f66 {
    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);
}

.article-rough-f88b .thumbnail-8f66 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.article-rough-f88b .thumbnail-8f66 p:last-child {
    margin-bottom: 0;
}

.article-rough-f88b .thumbnail-8f66 strong {
    color: var(--text-primary);
}

.article-rough-f88b .active-6312 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.article-rough-f88b .active-6312 li {
    margin-bottom: 0.65rem;
}

.article-rough-f88b .active-6312 li:last-child {
    margin-bottom: 0;
}

.article-rough-f88b .fixed_1824 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.article-rough-f88b .fixed_1824 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-5caa {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-5caa .shadow_action_2c75 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-5caa .modal-c323 {
    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-5caa .modal-c323 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-5caa .modal-c323 p:last-child {
    margin-bottom: 0;
}

.title-5caa .modal-c323 strong {
    color: var(--text-primary);
}

.title-5caa .header_out_0b77 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-5caa .header_out_0b77 li {
    margin-bottom: 0.65rem;
}

.title-5caa .header_out_0b77 li:last-child {
    margin-bottom: 0;
}

body.feature-a765 {
    background: #f8f9fa;
    color: #2c3e50;
}

.feature-a765 .red-d665 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.feature-a765 .button-12e0 {
    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-a765 .button-12e0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-a765 .button-12e0 p:last-child {
    margin-bottom: 0;
}

.feature-a765 .button-12e0 strong {
    color: var(--text-primary);
}

.feature-a765 .sort-plasma-2bcf {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-a765 .sort-plasma-2bcf li {
    margin-bottom: 0.65rem;
}

.feature-a765 .sort-plasma-2bcf li:last-child {
    margin-bottom: 0;
}

.feature-a765 .large_98c2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.feature-a765 .large_98c2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer_8698 {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer_8698 .pressed-12c1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer_8698 .outline-2994 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.footer_8698 .outline-2994 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_8698 .outline-2994 p:last-child {
    margin-bottom: 0;
}

.footer_8698 .outline-2994 strong {
    color: var(--text-primary);
}

.footer_8698 .dirty-93ee {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_8698 .dirty-93ee li {
    margin-bottom: 0.65rem;
}

.footer_8698 .dirty-93ee li:last-child {
    margin-bottom: 0;
}

.footer_8698 .pink_1366 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer_8698 .pink_1366 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-68d7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.media-lower-68d7 .feature_upper_0ddf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media-lower-68d7 .notification-a344 {
    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-68d7 .notification-a344 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media-lower-68d7 .notification-a344 p:last-child {
    margin-bottom: 0;
}

.media-lower-68d7 .notification-a344 strong {
    color: var(--text-primary);
}

.media-lower-68d7 .progress_7d50 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media-lower-68d7 .progress_7d50 li {
    margin-bottom: 0.65rem;
}

.media-lower-68d7 .progress_7d50 li:last-child {
    margin-bottom: 0;
}

.media-lower-68d7 .texture-south-273c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media-lower-68d7 .texture-south-273c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focused-635f {
    background: #f8f9fa;
    color: #2c3e50;
}

.focused-635f .picture_action_3412 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focused-635f .smooth-c766 {
    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);
}

.focused-635f .smooth-c766 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focused-635f .smooth-c766 p:last-child {
    margin-bottom: 0;
}

.focused-635f .smooth-c766 strong {
    color: var(--text-primary);
}

.focused-635f .nav_stone_cfa3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focused-635f .nav_stone_cfa3 li {
    margin-bottom: 0.65rem;
}

.focused-635f .nav_stone_cfa3 li:last-child {
    margin-bottom: 0;
}

.focused-635f .copper-077a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focused-635f .copper-077a 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: 0df7 */
.shadow-element-k9 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
