/* 
 * 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.caption_fluid_e2c3) — fixed together on mobile */
.notification_dirty_8966 {
    width: 100%;
}

.hero_1d35 {
    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) {
    .notification_dirty_8966 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .hero_1d35 {
        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.light-758d. Conta) stay reachable.
     */
    .simple-c502 .row_b966 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .notification_dirty_8966 .simple-c502 > .row_b966 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .notification_dirty_8966:has(.brown-d037.fn-show-207a) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .notification_dirty_8966:has(.brown-d037.fn-show-207a) .hero_1d35 {
        flex-shrink: 0;
    }

    .notification_dirty_8966:has(.brown-d037.fn-show-207a) .simple-c502 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .notification_dirty_8966:has(.brown-d037.fn-show-207a) .simple-c502 > .row_b966 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .notification_dirty_8966:has(.brown-d037.fn-show-207a) .paragraph_a478 {
        flex-shrink: 0;
    }

    .notification_dirty_8966:has(.brown-d037.fn-show-207a) .brown-d037.fn-show-207a {
        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 */
    .simple-c502 .brown-d037 .right_d2b0.fn-active-207a .modal_gold_1812 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .hero_1d35 {
        position: sticky;
        top: 0;
    }
}

.notification_dirty_8966.progress-center-7372,
.notification_dirty_8966.progress-center-7372 .hero_1d35 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.secondary_silver_b68c {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .secondary_silver_b68c {
        padding: 0.75rem 0;
    }
}

.clean_34eb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.box_black_4183 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .box_black_4183 img {
        height: 35px;
    }
}

/* .simple-c502 / .paper_4000 — inner pages (brown bar); index uses .sort_first_9326 below */

.simple-c502:not(.sort_first_9326) .paper_4000.fn-active-207a {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.cold-bb6c {
    display: flex;
    gap: var(--spacing-md);
}

.blue-63d7,
.progress-23a8 {
    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) {
    .blue-63d7,
    .progress-23a8 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .cold-bb6c {
        gap: 0.5rem;
    }
}

.blue-63d7 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.blue-63d7:hover {
    background: var(--primary-purple);
    color: white;
}

.progress-23a8 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.progress-23a8:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.main-wood-22a2 {
    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%;
}

.main-wood-22a2::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;
}

.main-wood-22a2::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;
}

.frame-up-9d1e {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.summary_1ec9 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.summary_1ec9 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);
}

.main-wood-22a2 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;
}

.picture_8580 {
    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;
}

.picture_8580 strong {
    font-weight: 700;
}

.gas_08e3 {
    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);
}

.clean-7f10 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.action_85e3 {
    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);
}

.action_85e3:hover {
    transform: translateY(-4px);
}

.outline-easy-d81f {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.message_fluid_5e8a {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.tabs-573e {
    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;
}

.tabs-573e:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.tabs-573e.preview_pressed_1d61 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.layout_under_993b {
    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);
}

.layout_under_993b:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.fluid-1439 {
    padding: 3rem 1.25rem;
    background: white;
}

.feature-focused-22ce {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.under-1886 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.under-1886:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.under-1886 img {
    margin-bottom: 1rem;
}

.west_213a {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.under-1886 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.under-1886 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 */
.slow-3d15 {
    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);
}

.paragraph_4a2e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-liquid-6d78 {
    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);
}

.logo-liquid-6d78 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.logo-liquid-6d78 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.logo-liquid-6d78 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.grid_white_4b1f {
    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
   ======================================== */

.sort_south_90ef {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.rough_a13d {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.narrow_5489 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.texture-ba1f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.avatar-smooth-07a5 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.avatar-smooth-07a5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.avatar-smooth-07a5.green-1976 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.avatar-smooth-07a5.green-1976 h3,
.avatar-smooth-07a5.green-1976 p {
    color: white;
}

.selected_8ede {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.avatar-smooth-07a5 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.avatar-smooth-07a5 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.form_4a8f {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.form_4a8f:hover {
    gap: 0.75rem;
}

.avatar-smooth-07a5.green-1976 .form_4a8f {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.progress_0b64 {
    padding: 4rem 1.25rem;
    background: white;
}

.breadcrumb_stale_4aa2 {
    text-align: center;
    margin-bottom: 3rem;
}

.last_2c2a {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.wrapper_6778 {
    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%;
}

.wrapper_6778:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.pink_0f05 {
    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);
}

.feature-7db7 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.pro_9a07 {
    padding: 1.5rem;
}

.pro_9a07 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tertiary-1c93 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.light-f3a9 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.gold_34f9,
.feature_dc61 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.gold_34f9 {
    background: #dcfce7;
    color: #166534;
}

.gold_34f9.label-5c50 {
    background: #10b981;
    color: white;
}

.feature_dc61 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.feature_dc61.old_8eda {
    background: #fee2e2;
    color: #991b1b;
}

.feature_dc61.narrow_cfe4 {
    background: #fef3c7;
    color: #92400e;
}

.feature_dc61.lower_3216 {
    background: #dcfce7;
    color: #166534;
}

.progress_current_53b1 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.progress_current_53b1 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.content-2255 {
    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);
}

.content-2255:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.list_4358 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.content-ab42 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.gradient_cool_941f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gradient_cool_941f {
        grid-template-columns: 1fr 1fr;
    }
}

.tabs_a802 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.hero-6070 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.status_pressed_4f2d {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.gradient_7e68 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.gradient-ad54 {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-6070 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-tall-939f {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.section-tall-939f li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.section-tall-939f 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;
}

.section-tall-939f li strong {
    color: var(--primary-purple);
}

.section-tall-939f li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.motion-fa8b {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.iron_57b4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.rough_d4ff {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.iron_57b4 .message_fluid_5e8a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.grid_0c28 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.fluid_8937 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.fluid_8937 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.input_9d83 {
    padding: 4rem 1.25rem;
    background: white;
}

.aside-a9f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .aside-a9f6 {
        grid-template-columns: 1fr 1fr;
    }
}

.aside-steel-546d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.right_3a32 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.pagination_4313 {
    margin-bottom: 1.5rem;
}

.content-3acc {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.background-middle-860c {
    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);
}

.outline_e33d {
    white-space: nowrap;
}

.small_7eb8 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.main-7ff8 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.label-blue-b8bb {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.label-blue-b8bb:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.complex_e74d {
    font-size: 2rem;
    flex-shrink: 0;
}

.short_c017 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.short_c017 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.header-e654 {
    margin-top: 3rem;
}

.header-e654 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hard-1137 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hard-1137 thead {
    background: var(--primary-purple);
    color: white;
}

.hard-1137 th,
.hard-1137 td {
    padding: 1rem;
    text-align: left;
}

.hard-1137 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.hard-1137 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.hard-1137 tbody tr:last-child {
    border-bottom: none;
}

.hard-1137 tbody tr:hover {
    background: var(--light-bg);
}

.lite-204c {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.first-da91 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.blue-0d2c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.primary-red-bdab {
    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);
}

.primary-red-bdab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.primary-red-bdab.background-9393::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;
}

.dynamic_7032 {
    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;
}

.silver_3878 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.blue_d3cf h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.hidden_487b {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gradient-1130 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.gradient-1130 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.gradient-1130 p:last-child {
    margin-bottom: 0;
}

.gradient-1130 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.primary_0340 {
    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;
}

.overlay-e384 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.button_up_a790 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.button_up_a790 .outline-easy-d81f {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.button_up_a790 .message_fluid_5e8a {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.shadow_simple_6a1d {
    padding: 4rem 1.25rem;
    background: white;
}

.progress_full_f9f7 {
    max-width: 900px;
    margin: 0 auto;
}

.bronze-6fcc {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.bronze-6fcc:hover {
    border-color: var(--primary-purple);
}

.bronze-6fcc[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.bronze-6fcc 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;
}

.bronze-6fcc summary::-webkit-details-marker {
    display: none;
}

.bronze-6fcc summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.bronze-6fcc[open] summary::after {
    transform: rotate(45deg);
}

.description_2636 {
    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);
    }
}

.description_2636 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.description_2636 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.description_2636 ul,
.description_2636 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.description_2636 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.description_2636 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.shadow_3ead {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.background_focused_5546 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.background_focused_5546 th,
.background_focused_5546 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.background_focused_5546 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.over_0b65 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.tabs-old-89f8 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.narrow_4685 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .narrow_4685 {
        flex-direction: column;
        text-align: center;
    }
}

.narrow_4685 img {
    flex-shrink: 0;
}

.steel-55af {
    font-size: 4rem;
    flex-shrink: 0;
}

.banner-cool-ae2c h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.banner-cool-ae2c p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.complex_21e4 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.label-5132 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.menu-6840 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.menu-6840 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.content-8571 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.yellow-e118 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.primary_2adc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.breadcrumb_21ca h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb_21ca p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.brown-115c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pattern-easy-0eb8 {
    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);
}

.dark_3a88 {
    list-style: none;
}

.dark_3a88 li {
    margin-bottom: 0.75rem;
}

.dark_3a88 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.dark_3a88 a:hover {
    color: white;
}

.element-84ee {
    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;
}

.form-white-e967 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-white-e967 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.description_a8e6 {
    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);
}

.top-046e {
    text-align: right;
}

@media (max-width: 767px) {
    .top-046e {
        text-align: center;
        width: 100%;
    }
}

.top-046e p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.old-e5fe {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.row_b966 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.fluid-1439,
.slow-3d15,
.sort_south_90ef,
.progress_0b64,
.content-ab42,
.input_9d83,
.first-da91,
.shadow_simple_6a1d,
.tabs-old-89f8,
.label-5132 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .rough_a13d {
        font-size: 1.75rem;
    }
    
    .narrow_5489 {
        font-size: 1rem;
    }
    
    .motion-fa8b {
        flex-direction: column;
    }
    
    .aside-a9f6 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .last_2c2a {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wrapper_6778 {
        max-width: 100%;
    }
    
    .feature-7db7 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .row_b966 {
        padding: 0 1rem;
    }
    
    .main-wood-22a2 {
        padding: 4rem 1rem 3rem;
    }
    
    .main-wood-22a2 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .tabs-573e {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .clean-7f10 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .hard-1137,
    .background_focused_5546 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .feature-focused-22ce {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .texture-ba1f {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .blue-0d2c {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .main-wood-22a2 h1 {
        font-size: 1.5rem;
    }
    
    .clean-7f10 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .action_85e3 {
        padding: 0.75rem;
    }
    
    .outline-easy-d81f {
        font-size: 1.5rem;
    }
    
    .feature-focused-22ce {
        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 */
.wrapper_6778:hover,
.avatar-smooth-07a5:hover,
.primary-red-bdab:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .progress_0b64,
    .first-da91,
    .shadow_simple_6a1d {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.caption_fluid_e2c3)
   ======================================== */

.simple-c502.sort_first_9326 {
    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;
}

.simple-c502.sort_first_9326 .paper_4000 {
    color: #334155;
}

.simple-c502.sort_first_9326 .paper_4000:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.simple-c502.sort_first_9326 .paper_4000.fn-active-207a {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.simple-c502.sort_first_9326 .modal_gold_1812 {
    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);
}

.simple-c502.sort_first_9326 .modal_gold_1812::before {
    border-bottom-color: #ffffff;
}

.simple-c502.sort_first_9326 .pressed_0be7 {
    color: #475569;
}

.simple-c502.sort_first_9326 .pressed_0be7::before {
    background: #818cf8;
}

.simple-c502.sort_first_9326 .pressed_0be7:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.simple-c502.sort_first_9326 .pressed_0be7:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.simple-c502.sort_first_9326 .carousel-6ce9 {
    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);
}

.simple-c502.sort_first_9326 .carousel-6ce9:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.simple-c502.sort_first_9326 .carousel-6ce9 span {
    background: #475569;
    box-shadow: none;
}

.simple-c502.sort_first_9326 .carousel-6ce9.fn-active-207a span:nth-child(1),
.simple-c502.sort_first_9326 .carousel-6ce9.fn-active-207a span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .simple-c502.sort_first_9326 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .simple-c502.sort_first_9326 .paragraph_a478 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .simple-c502.sort_first_9326 .paragraph_a478 span {
        color: #334155 !important;
    }

    .simple-c502.sort_first_9326 .brown-d037 {
        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);
    }

    .simple-c502.sort_first_9326 .brown-d037 .paper_4000 {
        color: #334155;
        text-shadow: none;
    }

    .simple-c502.sort_first_9326 .brown-d037 .paper_4000:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .simple-c502.sort_first_9326 .brown-d037 .paper_4000.sidebar-82a5::after {
        color: #64748b;
    }

    .simple-c502.sort_first_9326 .brown-d037 .modal_gold_1812 {
        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) */
    .simple-c502.sort_first_9326 .brown-d037 .right_d2b0.fn-active-207a .modal_gold_1812 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .simple-c502.sort_first_9326 .brown-d037 .pressed_0be7 {
        color: #475569;
    }

    .simple-c502.sort_first_9326 .brown-d037 .pressed_0be7::before {
        color: #6366f1;
    }

    .simple-c502.sort_first_9326 .brown-d037 .pressed_0be7:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .simple-c502.sort_first_9326 .brown-d037 .pressed_0be7:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .simple-c502.sort_first_9326 .brown-d037 .pressed_0be7:hover::before {
        color: #4f46e5;
    }
}

/* apk.gradient-tiny-7107 — mesmo tema claro da home; blocos extras */
body.message-645e {
    background: #f8f9fa;
    color: #2c3e50;
}

.message-645e .focus-c65d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message-645e .dim-ce71 {
    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);
}

.message-645e .dim-ce71 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message-645e .dim-ce71 p:last-child {
    margin-bottom: 0;
}

.message-645e .dim-ce71 strong {
    color: var(--text-primary);
}

.message-645e .carousel_7586 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message-645e .carousel_7586 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-5147 {
    background: #f8f9fa;
    color: #2c3e50;
}

.label-5147 .old_940a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label-5147 .full-2517 {
    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-5147 .full-2517 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-5147 .full-2517 p:last-child {
    margin-bottom: 0;
}

.label-5147 .full-2517 strong {
    color: var(--text-primary);
}

.label-5147 .sort-775b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label-5147 .sort-775b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.inner_9d2e {
    background: #f8f9fa;
    color: #2c3e50;
}

.inner_9d2e .texture_adac {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.inner_9d2e .stale_627c {
    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);
}

.inner_9d2e .stale_627c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.inner_9d2e .stale_627c p:last-child {
    margin-bottom: 0;
}

.inner_9d2e .stale_627c strong {
    color: var(--text-primary);
}

.inner_9d2e .fresh-5839 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.inner_9d2e .fresh-5839 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tag-under-c885 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag-under-c885 .background-red-f780 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag-under-c885 .notification-narrow-0f9e {
    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);
}

.tag-under-c885 .notification-narrow-0f9e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-under-c885 .notification-narrow-0f9e p:last-child {
    margin-bottom: 0;
}

.tag-under-c885 .notification-narrow-0f9e strong {
    color: var(--text-primary);
}

.tag-under-c885 .form_b5a5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tag-under-c885 .form_b5a5 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-cd61 {
    background: #f8f9fa;
    color: #2c3e50;
}

.backdrop-cd61 .blue-168b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.backdrop-cd61 .description-last-a0f3 {
    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-cd61 .description-last-a0f3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.backdrop-cd61 .description-last-a0f3 p:last-child {
    margin-bottom: 0;
}

.backdrop-cd61 .description-last-a0f3 strong {
    color: var(--text-primary);
}

.backdrop-cd61 .focused-9c8d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.backdrop-cd61 .focused-9c8d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.picture_d0b9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.picture_d0b9 .filter_cold_b96d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.picture_d0b9 .carousel_b800 {
    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);
}

.picture_d0b9 .carousel_b800 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.picture_d0b9 .carousel_b800 p:last-child {
    margin-bottom: 0;
}

.picture_d0b9 .carousel_b800 strong {
    color: var(--text-primary);
}

.picture_d0b9 .gradient_0fd3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.picture_d0b9 .gradient_0fd3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent-wood-54e7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent-wood-54e7 .carousel-hard-37f6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent-wood-54e7 .panel-rough-3210 {
    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);
}

.accent-wood-54e7 .panel-rough-3210 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent-wood-54e7 .panel-rough-3210 p:last-child {
    margin-bottom: 0;
}

.accent-wood-54e7 .panel-rough-3210 strong {
    color: var(--text-primary);
}

.accent-wood-54e7 .tooltip-85ff {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent-wood-54e7 .tooltip-85ff img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.main_active_1947 {
    background: #f8f9fa;
    color: #2c3e50;
}

.main_active_1947 .bright-e441 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.main_active_1947 .link-188d {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.main_active_1947 .link-188d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main_active_1947 .link-188d p:last-child {
    margin-bottom: 0;
}

.main_active_1947 .link-188d strong {
    color: var(--text-primary);
}

.main_active_1947 .focused-c786 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.main_active_1947 .focused-c786 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.out_a83d {
    background: #f8f9fa;
    color: #2c3e50;
}

.out_a83d .alert_0be2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.out_a83d .primary_outer_dd78 {
    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);
}

.out_a83d .primary_outer_dd78 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.out_a83d .primary_outer_dd78 p:last-child {
    margin-bottom: 0;
}

.out_a83d .primary_outer_dd78 strong {
    color: var(--text-primary);
}

.out_a83d .column-ba23 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.out_a83d .column-ba23 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.center_cbcb {
    background: #f8f9fa;
    color: #2c3e50;
}

.center_cbcb .mask_f51f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.center_cbcb .tooltip-40c5 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.center_cbcb .tooltip-40c5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.center_cbcb .tooltip-40c5 p:last-child {
    margin-bottom: 0;
}

.center_cbcb .tooltip-40c5 strong {
    color: var(--text-primary);
}

.center_cbcb .west-7f5e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.center_cbcb .west-7f5e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.photo-pressed-e8ba {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo-pressed-e8ba .bright_8f5f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo-pressed-e8ba .motion-f7ab {
    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);
}

.photo-pressed-e8ba .motion-f7ab p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-pressed-e8ba .motion-f7ab p:last-child {
    margin-bottom: 0;
}

.photo-pressed-e8ba .motion-f7ab strong {
    color: var(--text-primary);
}

.photo-pressed-e8ba .tag_center_4e4c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-pressed-e8ba .tag_center_4e4c li {
    margin-bottom: 0.65rem;
}

.photo-pressed-e8ba .tag_center_4e4c li:last-child {
    margin-bottom: 0;
}

.photo-pressed-e8ba .active_aa7a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo-pressed-e8ba .active_aa7a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.modal-dirty-0255 {
    background: #f8f9fa;
    color: #2c3e50;
}

.modal-dirty-0255 .status-eca4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.modal-dirty-0255 .alert_03ef {
    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);
}

.modal-dirty-0255 .alert_03ef p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal-dirty-0255 .alert_03ef p:last-child {
    margin-bottom: 0;
}

.modal-dirty-0255 .alert_03ef strong {
    color: var(--text-primary);
}

.modal-dirty-0255 .tag-plasma-1ace {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal-dirty-0255 .tag-plasma-1ace li {
    margin-bottom: 0.65rem;
}

.modal-dirty-0255 .tag-plasma-1ace li:last-child {
    margin-bottom: 0;
}

.modal-dirty-0255 .gallery-upper-4199 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.modal-dirty-0255 .gallery-upper-4199 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.filter-3399 {
    background: #f8f9fa;
    color: #2c3e50;
}

.filter-3399 .inner_32e4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.filter-3399 .dirty-3a39 {
    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);
}

.filter-3399 .dirty-3a39 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.filter-3399 .dirty-3a39 p:last-child {
    margin-bottom: 0;
}

.filter-3399 .dirty-3a39 strong {
    color: var(--text-primary);
}

.filter-3399 .blue_53c8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.filter-3399 .blue_53c8 li {
    margin-bottom: 0.65rem;
}

.filter-3399 .blue_53c8 li:last-child {
    margin-bottom: 0;
}

.filter-3399 .logo-dynamic-8d39 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.filter-3399 .logo-dynamic-8d39 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tag-complex-b65f {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag-complex-b65f .border_7146 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag-complex-b65f .progress-59f2 {
    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);
}

.tag-complex-b65f .progress-59f2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-complex-b65f .progress-59f2 p:last-child {
    margin-bottom: 0;
}

.tag-complex-b65f .progress-59f2 strong {
    color: var(--text-primary);
}

.tag-complex-b65f .dim_2a63 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-complex-b65f .dim_2a63 li {
    margin-bottom: 0.65rem;
}

.tag-complex-b65f .dim_2a63 li:last-child {
    margin-bottom: 0;
}

body.summary_cef1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary_cef1 .dropdown_f2a3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary_cef1 .dynamic-ee4e {
    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_cef1 .dynamic-ee4e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary_cef1 .dynamic-ee4e p:last-child {
    margin-bottom: 0;
}

.summary_cef1 .dynamic-ee4e strong {
    color: var(--text-primary);
}

.summary_cef1 .mini-83cb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary_cef1 .mini-83cb li {
    margin-bottom: 0.65rem;
}

.summary_cef1 .mini-83cb li:last-child {
    margin-bottom: 0;
}

.summary_cef1 .grid_yellow_d601 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary_cef1 .grid_yellow_d601 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shadow_short_6cb2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow_short_6cb2 .hero-active-0800 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow_short_6cb2 .heading-1eba {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.shadow_short_6cb2 .heading-1eba p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow_short_6cb2 .heading-1eba p:last-child {
    margin-bottom: 0;
}

.shadow_short_6cb2 .heading-1eba strong {
    color: var(--text-primary);
}

.shadow_short_6cb2 .column_bright_91a0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow_short_6cb2 .column_bright_91a0 li {
    margin-bottom: 0.65rem;
}

.shadow_short_6cb2 .column_bright_91a0 li:last-child {
    margin-bottom: 0;
}

.shadow_short_6cb2 .summary_86fe {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shadow_short_6cb2 .summary_86fe img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.right_dae8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.right_dae8 .white-0019 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.right_dae8 .plasma_4872 {
    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);
}

.right_dae8 .plasma_4872 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.right_dae8 .plasma_4872 p:last-child {
    margin-bottom: 0;
}

.right_dae8 .plasma_4872 strong {
    color: var(--text-primary);
}

.right_dae8 .plasma_5df5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.right_dae8 .plasma_5df5 li {
    margin-bottom: 0.65rem;
}

.right_dae8 .plasma_5df5 li:last-child {
    margin-bottom: 0;
}

.right_dae8 .short_e20b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.right_dae8 .short_e20b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.link-1460 {
    background: #f8f9fa;
    color: #2c3e50;
}

.link-1460 .hero-paper-f224 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.link-1460 .container-mini-c11a {
    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);
}

.link-1460 .container-mini-c11a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-1460 .container-mini-c11a p:last-child {
    margin-bottom: 0;
}

.link-1460 .container-mini-c11a strong {
    color: var(--text-primary);
}

.link-1460 .picture-rough-1c4a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-1460 .picture-rough-1c4a li {
    margin-bottom: 0.65rem;
}

.link-1460 .picture-rough-1c4a li:last-child {
    margin-bottom: 0;
}

.link-1460 .highlight_action_cd7c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.link-1460 .highlight_action_cd7c 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: 8d7e */
.shadow-element-s5 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.1;
}
