/* 
 * 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.label_0467) — fixed together on mobile */
.first-dfee {
    width: 100%;
}

.gas-d57e {
    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) {
    .first-dfee {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .gas-d57e {
        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.module_33c9. Conta) stay reachable.
     */
    .feature_b720 .hero_outer_2dc8 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .first-dfee .feature_b720 > .hero_outer_2dc8 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .first-dfee:has(.right_1abd.fn-show-392a) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .first-dfee:has(.right_1abd.fn-show-392a) .gas-d57e {
        flex-shrink: 0;
    }

    .first-dfee:has(.right_1abd.fn-show-392a) .feature_b720 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .first-dfee:has(.right_1abd.fn-show-392a) .feature_b720 > .hero_outer_2dc8 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .first-dfee:has(.right_1abd.fn-show-392a) .texture_8370 {
        flex-shrink: 0;
    }

    .first-dfee:has(.right_1abd.fn-show-392a) .right_1abd.fn-show-392a {
        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 */
    .feature_b720 .right_1abd .article-7870.fn-active-392a .header_active_4efc {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .gas-d57e {
        position: sticky;
        top: 0;
    }
}

.first-dfee.liquid-1ec9,
.first-dfee.liquid-1ec9 .gas-d57e {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.green_2ed5 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .green_2ed5 {
        padding: 0.75rem 0;
    }
}

.mini_60a5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.sort-slow-9c88 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .sort-slow-9c88 img {
        height: 35px;
    }
}

/* .feature_b720 / .panel-90ea — inner pages (brown bar); index uses .hard_4549 below */

.feature_b720:not(.hard_4549) .panel-90ea.fn-active-392a {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.next-8916 {
    display: flex;
    gap: var(--spacing-md);
}

.icon-b737,
.dropdown_e181 {
    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) {
    .icon-b737,
    .dropdown_e181 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .next-8916 {
        gap: 0.5rem;
    }
}

.icon-b737 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.icon-b737:hover {
    background: var(--primary-purple);
    color: white;
}

.dropdown_e181 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.dropdown_e181:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.copper_631b {
    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%;
}

.copper_631b::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;
}

.copper_631b::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 30vw;
    max-width: 400px;
    height: 30vw;
    max-height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.pagination-4707 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.plasma-a74a {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.plasma-a74a 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);
}

.copper_631b 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;
}

.nav_3cf2 {
    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;
}

.nav_3cf2 strong {
    font-weight: 700;
}

.dirty_acb7 {
    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);
}

.progress_hard_3f6a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.texture_4e10 {
    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);
}

.texture_4e10:hover {
    transform: translateY(-4px);
}

.message_7e44 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.hover_6085 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.rough_2210 {
    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;
}

.rough_2210:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.rough_2210.content-east-4665 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.detail-25ac {
    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);
}

.detail-25ac:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.content-glass-5c62 {
    padding: 3rem 1.25rem;
    background: white;
}

.form-red-bf74 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hot-37ee {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.hot-37ee:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hot-37ee img {
    margin-bottom: 1rem;
}

.small-24bd {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.hot-37ee h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hot-37ee 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 */
.picture_fast_3d69 {
    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);
}

.hover_red_0d9a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.sidebar_9597 {
    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);
}

.sidebar_9597 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.sidebar_9597 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.sidebar_9597 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.header_9b25 {
    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
   ======================================== */

.text-8a0f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tertiary_next_7544 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.active_d89b {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.white_c261 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.south-d323 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.south-d323:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.south-d323.last_71a1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.south-d323.last_71a1 h3,
.south-d323.last_71a1 p {
    color: white;
}

.card_complex_89c1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.south-d323 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.south-d323 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.box-aa18 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.box-aa18:hover {
    gap: 0.75rem;
}

.south-d323.last_71a1 .box-aa18 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.content_large_30f5 {
    padding: 4rem 1.25rem;
    background: white;
}

.feature_east_636a {
    text-align: center;
    margin-bottom: 3rem;
}

.clean-2b04 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.new_b5b2 {
    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%;
}

.new_b5b2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.dirty-bd3a {
    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);
}

.texture-motion-951a {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.widget-thick-4368 {
    padding: 1.5rem;
}

.widget-thick-4368 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.aside_under_bc7c {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-a110 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.disabled_c037,
.up-e165 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.disabled_c037 {
    background: #dcfce7;
    color: #166534;
}

.disabled_c037.accordion-stale-87ed {
    background: #10b981;
    color: white;
}

.up-e165 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.up-e165.hot-c0af {
    background: #fee2e2;
    color: #991b1b;
}

.up-e165.border_cool_dd6b {
    background: #fef3c7;
    color: #92400e;
}

.up-e165.selected-0aea {
    background: #dcfce7;
    color: #166534;
}

.focus-active-33de {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.focus-active-33de strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.avatar-649b {
    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);
}

.avatar-649b:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.aside-dark-9dec {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.accordion_steel_af3e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.easy_7dff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .easy_7dff {
        grid-template-columns: 1fr 1fr;
    }
}

.aside_warm_e646 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.advanced_bef3 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.wrapper_fresh_6bde {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.focus_9511 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.accordion_huge_1105 {
    font-size: 1rem;
    opacity: 0.9;
}

.advanced_bef3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mask_3ea2 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.mask_3ea2 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.mask_3ea2 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;
}

.mask_3ea2 li strong {
    color: var(--primary-purple);
}

.mask_3ea2 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.tertiary-9244 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.status_aae3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.gallery-7267 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.status_aae3 .hover_6085 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.list_green_3560 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.green_c3bf {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.green_c3bf a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.element-silver-af08 {
    padding: 4rem 1.25rem;
    background: white;
}

.accent-6e7a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .accent-6e7a {
        grid-template-columns: 1fr 1fr;
    }
}

.article-iron-d7fa h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.outline_mini_0324 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.breadcrumb-5ae2 {
    margin-bottom: 1.5rem;
}

.aside_bright_16a9 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.surface_wood_e74a {
    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);
}

.label_1ddd {
    white-space: nowrap;
}

.last-d9f7 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.breadcrumb-narrow-79f5 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.menu-7743 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.menu-7743:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.column_8c16 {
    font-size: 2rem;
    flex-shrink: 0;
}

.accordion-slow-9e22 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.accordion-slow-9e22 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.dynamic-6eba {
    margin-top: 3rem;
}

.dynamic-6eba h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.paragraph_warm_dff3 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.paragraph_warm_dff3 thead {
    background: var(--primary-purple);
    color: white;
}

.paragraph_warm_dff3 th,
.paragraph_warm_dff3 td {
    padding: 1rem;
    text-align: left;
}

.paragraph_warm_dff3 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.paragraph_warm_dff3 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.paragraph_warm_dff3 tbody tr:last-child {
    border-bottom: none;
}

.paragraph_warm_dff3 tbody tr:hover {
    background: var(--light-bg);
}

.layout_b5ab {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.header_4353 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.element-2670 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.title-rough-93c7 {
    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);
}

.title-rough-93c7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.title-rough-93c7.steel_d94c::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;
}

.north-70ee {
    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;
}

.message_light_8cff {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.chip_wood_0aca h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.thumbnail_d933 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.mini_1399 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.mini_1399 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.mini_1399 p:last-child {
    margin-bottom: 0;
}

.mini_1399 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.panel-a963 {
    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;
}

.tertiary-b6b6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.slow_734b {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.slow_734b .message_7e44 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.slow_734b .hover_6085 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.video-d35e {
    padding: 4rem 1.25rem;
    background: white;
}

.link_tiny_a1b7 {
    max-width: 900px;
    margin: 0 auto;
}

.backdrop_86e0 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.backdrop_86e0:hover {
    border-color: var(--primary-purple);
}

.backdrop_86e0[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.backdrop_86e0 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;
}

.backdrop_86e0 summary::-webkit-details-marker {
    display: none;
}

.backdrop_86e0 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.backdrop_86e0[open] summary::after {
    transform: rotate(45deg);
}

.block_in_2fa1 {
    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);
    }
}

.block_in_2fa1 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.block_in_2fa1 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.block_in_2fa1 ul,
.block_in_2fa1 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.block_in_2fa1 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.block_in_2fa1 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.module_bac8 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.fast-2d2c {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.fast-2d2c th,
.fast-2d2c td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.fast-2d2c th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.progress-6a27 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.accordion-0950 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.hard-df19 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hard-df19 {
        flex-direction: column;
        text-align: center;
    }
}

.hard-df19 img {
    flex-shrink: 0;
}

.popup_f6e8 {
    font-size: 4rem;
    flex-shrink: 0;
}

.component-hovered-9891 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.component-hovered-9891 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.gradient_fast_e95d {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.message-4bac {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.logo_fresh_9f22 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.logo_fresh_9f22 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-lite-6849 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.text-soft-12ab {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.red-af4d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.frame-9a32 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.frame-9a32 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.narrow-7196 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tiny_65ad {
    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);
}

.gradient-first-2e41 {
    list-style: none;
}

.gradient-first-2e41 li {
    margin-bottom: 0.75rem;
}

.gradient-first-2e41 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.gradient-first-2e41 a:hover {
    color: white;
}

.thumbnail-866d {
    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;
}

.banner-8588 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-8588 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hovered_cfc7 {
    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);
}

.card-steel-303a {
    text-align: right;
}

@media (max-width: 767px) {
    .card-steel-303a {
        text-align: center;
        width: 100%;
    }
}

.card-steel-303a p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.bright-3409 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.hero_outer_2dc8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.content-glass-5c62,
.picture_fast_3d69,
.text-8a0f,
.content_large_30f5,
.accordion_steel_af3e,
.element-silver-af08,
.header_4353,
.video-d35e,
.accordion-0950,
.message-4bac {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .tertiary_next_7544 {
        font-size: 1.75rem;
    }
    
    .active_d89b {
        font-size: 1rem;
    }
    
    .tertiary-9244 {
        flex-direction: column;
    }
    
    .accent-6e7a {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .clean-2b04 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .new_b5b2 {
        max-width: 100%;
    }
    
    .texture-motion-951a {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .hero_outer_2dc8 {
        padding: 0 1rem;
    }
    
    .copper_631b {
        padding: 4rem 1rem 3rem;
    }
    
    .copper_631b h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .rough_2210 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .progress_hard_3f6a {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .paragraph_warm_dff3,
    .fast-2d2c {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .form-red-bf74 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .white_c261 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .element-2670 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .copper_631b h1 {
        font-size: 1.5rem;
    }
    
    .progress_hard_3f6a {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .texture_4e10 {
        padding: 0.75rem;
    }
    
    .message_7e44 {
        font-size: 1.5rem;
    }
    
    .form-red-bf74 {
        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 */
.new_b5b2:hover,
.south-d323:hover,
.title-rough-93c7:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .content_large_30f5,
    .header_4353,
    .video-d35e {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.label_0467)
   ======================================== */

.feature_b720.hard_4549 {
    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;
}

.feature_b720.hard_4549 .panel-90ea {
    color: #334155;
}

.feature_b720.hard_4549 .panel-90ea:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.feature_b720.hard_4549 .panel-90ea.fn-active-392a {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.feature_b720.hard_4549 .header_active_4efc {
    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);
}

.feature_b720.hard_4549 .header_active_4efc::before {
    border-bottom-color: #ffffff;
}

.feature_b720.hard_4549 .full_b7c9 {
    color: #475569;
}

.feature_b720.hard_4549 .full_b7c9::before {
    background: #818cf8;
}

.feature_b720.hard_4549 .full_b7c9:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.feature_b720.hard_4549 .full_b7c9:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.feature_b720.hard_4549 .disabled-paper-96e2 {
    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);
}

.feature_b720.hard_4549 .disabled-paper-96e2:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.feature_b720.hard_4549 .disabled-paper-96e2 span {
    background: #475569;
    box-shadow: none;
}

.feature_b720.hard_4549 .disabled-paper-96e2.fn-active-392a span:nth-child(1),
.feature_b720.hard_4549 .disabled-paper-96e2.fn-active-392a span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .feature_b720.hard_4549 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .feature_b720.hard_4549 .texture_8370 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .feature_b720.hard_4549 .texture_8370 span {
        color: #334155 !important;
    }

    .feature_b720.hard_4549 .right_1abd {
        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);
    }

    .feature_b720.hard_4549 .right_1abd .panel-90ea {
        color: #334155;
        text-shadow: none;
    }

    .feature_b720.hard_4549 .right_1abd .panel-90ea:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .feature_b720.hard_4549 .right_1abd .panel-90ea.backdrop-slow-6baf::after {
        color: #64748b;
    }

    .feature_b720.hard_4549 .right_1abd .header_active_4efc {
        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) */
    .feature_b720.hard_4549 .right_1abd .article-7870.fn-active-392a .header_active_4efc {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .feature_b720.hard_4549 .right_1abd .full_b7c9 {
        color: #475569;
    }

    .feature_b720.hard_4549 .right_1abd .full_b7c9::before {
        color: #6366f1;
    }

    .feature_b720.hard_4549 .right_1abd .full_b7c9:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .feature_b720.hard_4549 .right_1abd .full_b7c9:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .feature_b720.hard_4549 .right_1abd .full_b7c9:hover::before {
        color: #4f46e5;
    }
}

/* apk.gas_0663 — mesmo tema claro da home; blocos extras */
body.active-b867 {
    background: #f8f9fa;
    color: #2c3e50;
}

.active-b867 .slider-0cf4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active-b867 .large-20fd {
    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-b867 .large-20fd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-b867 .large-20fd p:last-child {
    margin-bottom: 0;
}

.active-b867 .large-20fd strong {
    color: var(--text-primary);
}

.active-b867 .advanced_ea33 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active-b867 .advanced_ea33 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gold_6a92 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gold_6a92 .grid-3e22 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gold_6a92 .motion-e905 {
    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);
}

.gold_6a92 .motion-e905 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gold_6a92 .motion-e905 p:last-child {
    margin-bottom: 0;
}

.gold_6a92 .motion-e905 strong {
    color: var(--text-primary);
}

.gold_6a92 .summary_8616 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gold_6a92 .summary_8616 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.widget-3d07 {
    background: #f8f9fa;
    color: #2c3e50;
}

.widget-3d07 .current_502c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.widget-3d07 .widget_warm_a3c7 {
    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);
}

.widget-3d07 .widget_warm_a3c7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget-3d07 .widget_warm_a3c7 p:last-child {
    margin-bottom: 0;
}

.widget-3d07 .widget_warm_a3c7 strong {
    color: var(--text-primary);
}

.widget-3d07 .section_pressed_ab04 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.widget-3d07 .section_pressed_ab04 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.label_b8dc {
    background: #f8f9fa;
    color: #2c3e50;
}

.label_b8dc .under-6a36 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label_b8dc .module-hard-e17d {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.label_b8dc .module-hard-e17d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label_b8dc .module-hard-e17d p:last-child {
    margin-bottom: 0;
}

.label_b8dc .module-hard-e17d strong {
    color: var(--text-primary);
}

.label_b8dc .fast_03b6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label_b8dc .fast_03b6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.block_42a8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.block_42a8 .menu-black-aefa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.block_42a8 .avatar-fresh-2063 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.block_42a8 .avatar-fresh-2063 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block_42a8 .avatar-fresh-2063 p:last-child {
    margin-bottom: 0;
}

.block_42a8 .avatar-fresh-2063 strong {
    color: var(--text-primary);
}

.block_42a8 .picture-bright-c234 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.block_42a8 .picture-bright-c234 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.button-under-b363 {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-under-b363 .hidden_huge_a0cd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-under-b363 .gallery_rough_648d {
    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);
}

.button-under-b363 .gallery_rough_648d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-under-b363 .gallery_rough_648d p:last-child {
    margin-bottom: 0;
}

.button-under-b363 .gallery_rough_648d strong {
    color: var(--text-primary);
}

.button-under-b363 .first-f18a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-under-b363 .first-f18a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.box-a930 {
    background: #f8f9fa;
    color: #2c3e50;
}

.box-a930 .outline-1798 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.box-a930 .mask-d1ef {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.box-a930 .mask-d1ef p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.box-a930 .mask-d1ef p:last-child {
    margin-bottom: 0;
}

.box-a930 .mask-d1ef strong {
    color: var(--text-primary);
}

.box-a930 .dirty-2089 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.box-a930 .dirty-2089 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.row_gold_778a {
    background: #f8f9fa;
    color: #2c3e50;
}

.row_gold_778a .south-6ac9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.row_gold_778a .summary_04e9 {
    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);
}

.row_gold_778a .summary_04e9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.row_gold_778a .summary_04e9 p:last-child {
    margin-bottom: 0;
}

.row_gold_778a .summary_04e9 strong {
    color: var(--text-primary);
}

.row_gold_778a .dropdown-over-b06b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.row_gold_778a .dropdown-over-b06b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.backdrop_warm_1e91 {
    background: #f8f9fa;
    color: #2c3e50;
}

.backdrop_warm_1e91 .banner_8dcf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.backdrop_warm_1e91 .narrow-8594 {
    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);
}

.backdrop_warm_1e91 .narrow-8594 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.backdrop_warm_1e91 .narrow-8594 p:last-child {
    margin-bottom: 0;
}

.backdrop_warm_1e91 .narrow-8594 strong {
    color: var(--text-primary);
}

.backdrop_warm_1e91 .focus-d0f5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.backdrop_warm_1e91 .focus-d0f5 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-038e {
    background: #f8f9fa;
    color: #2c3e50;
}

.middle-038e .stone_d00e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.middle-038e .module-last-8419 {
    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-038e .module-last-8419 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle-038e .module-last-8419 p:last-child {
    margin-bottom: 0;
}

.middle-038e .module-last-8419 strong {
    color: var(--text-primary);
}

.middle-038e .focus_gold_656b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.middle-038e .focus_gold_656b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.badge_7b0e {
    background: #f8f9fa;
    color: #2c3e50;
}

.badge_7b0e .thumbnail_middle_3a28 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.badge_7b0e .list-c187 {
    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);
}

.badge_7b0e .list-c187 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge_7b0e .list-c187 p:last-child {
    margin-bottom: 0;
}

.badge_7b0e .list-c187 strong {
    color: var(--text-primary);
}

.badge_7b0e .under-afa3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge_7b0e .under-afa3 li {
    margin-bottom: 0.65rem;
}

.badge_7b0e .under-afa3 li:last-child {
    margin-bottom: 0;
}

.badge_7b0e .wrapper_hovered_253b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.badge_7b0e .wrapper_hovered_253b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.carousel-a889 {
    background: #f8f9fa;
    color: #2c3e50;
}

.carousel-a889 .steel_cb0b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.carousel-a889 .clean-71cc {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.carousel-a889 .clean-71cc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel-a889 .clean-71cc p:last-child {
    margin-bottom: 0;
}

.carousel-a889 .clean-71cc strong {
    color: var(--text-primary);
}

.carousel-a889 .photo-full-f5d8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel-a889 .photo-full-f5d8 li {
    margin-bottom: 0.65rem;
}

.carousel-a889 .photo-full-f5d8 li:last-child {
    margin-bottom: 0;
}

.carousel-a889 .prev-1773 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.carousel-a889 .prev-1773 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.clean-3f60 {
    background: #f8f9fa;
    color: #2c3e50;
}

.clean-3f60 .mini-4a53 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.clean-3f60 .shadow-d738 {
    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);
}

.clean-3f60 .shadow-d738 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.clean-3f60 .shadow-d738 p:last-child {
    margin-bottom: 0;
}

.clean-3f60 .shadow-d738 strong {
    color: var(--text-primary);
}

.clean-3f60 .sidebar_hot_6ebb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.clean-3f60 .sidebar_hot_6ebb li {
    margin-bottom: 0.65rem;
}

.clean-3f60 .sidebar_hot_6ebb li:last-child {
    margin-bottom: 0;
}

.clean-3f60 .wood_8a7a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.clean-3f60 .wood_8a7a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.huge-f3b8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.huge-f3b8 .background_complex_84c2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.huge-f3b8 .video-top-9b9e {
    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);
}

.huge-f3b8 .video-top-9b9e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.huge-f3b8 .video-top-9b9e p:last-child {
    margin-bottom: 0;
}

.huge-f3b8 .video-top-9b9e strong {
    color: var(--text-primary);
}

.huge-f3b8 .tooltip_bright_d640 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.huge-f3b8 .tooltip_bright_d640 li {
    margin-bottom: 0.65rem;
}

.huge-f3b8 .tooltip_bright_d640 li:last-child {
    margin-bottom: 0;
}

body.breadcrumb_outer_412c {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb_outer_412c .main-fixed-e0c5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb_outer_412c .selected-c212 {
    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);
}

.breadcrumb_outer_412c .selected-c212 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_outer_412c .selected-c212 p:last-child {
    margin-bottom: 0;
}

.breadcrumb_outer_412c .selected-c212 strong {
    color: var(--text-primary);
}

.breadcrumb_outer_412c .pink-8029 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_outer_412c .pink-8029 li {
    margin-bottom: 0.65rem;
}

.breadcrumb_outer_412c .pink-8029 li:last-child {
    margin-bottom: 0;
}

.breadcrumb_outer_412c .photo_a5a9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.breadcrumb_outer_412c .photo_a5a9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thumbnail_thick_6d14 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_thick_6d14 .hovered-1f91 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_thick_6d14 .motion-8265 {
    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);
}

.thumbnail_thick_6d14 .motion-8265 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_thick_6d14 .motion-8265 p:last-child {
    margin-bottom: 0;
}

.thumbnail_thick_6d14 .motion-8265 strong {
    color: var(--text-primary);
}

.thumbnail_thick_6d14 .rough-edc0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_thick_6d14 .rough-edc0 li {
    margin-bottom: 0.65rem;
}

.thumbnail_thick_6d14 .rough-edc0 li:last-child {
    margin-bottom: 0;
}

.thumbnail_thick_6d14 .texture_98f8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail_thick_6d14 .texture_98f8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outer_b470 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outer_b470 .aside-smooth-8c26 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outer_b470 .active_right_9c3b {
    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);
}

.outer_b470 .active_right_9c3b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outer_b470 .active_right_9c3b p:last-child {
    margin-bottom: 0;
}

.outer_b470 .active_right_9c3b strong {
    color: var(--text-primary);
}

.outer_b470 .full_31dc {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outer_b470 .full_31dc li {
    margin-bottom: 0.65rem;
}

.outer_b470 .full_31dc li:last-child {
    margin-bottom: 0;
}

.outer_b470 .lower-f333 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outer_b470 .lower-f333 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.component_dynamic_abad {
    background: #f8f9fa;
    color: #2c3e50;
}

.component_dynamic_abad .logo-light-2281 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.component_dynamic_abad .shadow_74f5 {
    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);
}

.component_dynamic_abad .shadow_74f5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.component_dynamic_abad .shadow_74f5 p:last-child {
    margin-bottom: 0;
}

.component_dynamic_abad .shadow_74f5 strong {
    color: var(--text-primary);
}

.component_dynamic_abad .new-eb0a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.component_dynamic_abad .new-eb0a li {
    margin-bottom: 0.65rem;
}

.component_dynamic_abad .new-eb0a li:last-child {
    margin-bottom: 0;
}

.component_dynamic_abad .tiny-e4a5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.component_dynamic_abad .tiny-e4a5 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: 45b0 */
.widget-item-g6 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
