/* 
 * 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.liquid_4750) — fixed together on mobile */
.tag_c2b8 {
    width: 100%;
}

.info_iron_eb9c {
    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) {
    .tag_c2b8 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .info_iron_eb9c {
        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.panel_inner_3fda. Conta) stay reachable.
     */
    .content_plasma_281d .thumbnail-hard-9713 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .tag_c2b8 .content_plasma_281d > .thumbnail-hard-9713 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .tag_c2b8:has(.photo-878a.fn-show-6587) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .tag_c2b8:has(.photo-878a.fn-show-6587) .info_iron_eb9c {
        flex-shrink: 0;
    }

    .tag_c2b8:has(.photo-878a.fn-show-6587) .content_plasma_281d {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .tag_c2b8:has(.photo-878a.fn-show-6587) .content_plasma_281d > .thumbnail-hard-9713 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .tag_c2b8:has(.photo-878a.fn-show-6587) .wood-c0f5 {
        flex-shrink: 0;
    }

    .tag_c2b8:has(.photo-878a.fn-show-6587) .photo-878a.fn-show-6587 {
        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 */
    .content_plasma_281d .photo-878a .status_3dae.fn-active-6587 .tall-8d0d {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .info_iron_eb9c {
        position: sticky;
        top: 0;
    }
}

.tag_c2b8.tiny_6feb,
.tag_c2b8.tiny_6feb .info_iron_eb9c {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.progress_complex_5cd3 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .progress_complex_5cd3 {
        padding: 0.75rem 0;
    }
}

.pro-7fa6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.content-selected-4244 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .content-selected-4244 img {
        height: 35px;
    }
}

/* .content_plasma_281d / .iron-b7dd — inner pages (brown bar); index uses .white-d06a below */

.content_plasma_281d:not(.white-d06a) .iron-b7dd.fn-active-6587 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.cool_9c92 {
    display: flex;
    gap: var(--spacing-md);
}

.shadow-orange-883d,
.tall-477c {
    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) {
    .shadow-orange-883d,
    .tall-477c {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .cool_9c92 {
        gap: 0.5rem;
    }
}

.shadow-orange-883d {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.shadow-orange-883d:hover {
    background: var(--primary-purple);
    color: white;
}

.tall-477c {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.tall-477c:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.under_96c6 {
    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%;
}

.under_96c6::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;
}

.under_96c6::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;
}

.accent-95e4 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.input_middle_dfae {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.input_middle_dfae 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);
}

.under_96c6 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;
}

.bottom-8f4b {
    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;
}

.bottom-8f4b strong {
    font-weight: 700;
}

.layout_1ef5 {
    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);
}

.texture-dark-2ba3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.gas_b665 {
    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);
}

.gas_b665:hover {
    transform: translateY(-4px);
}

.avatar-0598 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.photo-8ff1 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.tall-f64e {
    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;
}

.tall-f64e:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.tall-f64e.background-1903 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.silver_e79f {
    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);
}

.silver_e79f:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.carousel-thick-df57 {
    padding: 3rem 1.25rem;
    background: white;
}

.outline-paper-9e8c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gradient_75cf {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.gradient_75cf:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gradient_75cf img {
    margin-bottom: 1rem;
}

.static_e909 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gradient_75cf h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.gradient_75cf 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 */
.detail-2358 {
    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);
}

.surface-new-d1b9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.article-90e4 {
    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);
}

.article-90e4 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.article-90e4 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.article-90e4 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.simple-600a {
    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
   ======================================== */

.brown_2d00 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.border-85ca {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.disabled_left_9870 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.main_rough_f48a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.backdrop_734a {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.backdrop_734a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.backdrop_734a.wood-2723 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.backdrop_734a.wood-2723 h3,
.backdrop_734a.wood-2723 p {
    color: white;
}

.heading-08cb {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.backdrop_734a h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.backdrop_734a p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notification-fluid-e7d6 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.notification-fluid-e7d6:hover {
    gap: 0.75rem;
}

.backdrop_734a.wood-2723 .notification-fluid-e7d6 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.list-5c77 {
    padding: 4rem 1.25rem;
    background: white;
}

.icon-medium-dc3a {
    text-align: center;
    margin-bottom: 3rem;
}

.dirty_a54c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.paragraph_774e {
    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%;
}

.paragraph_774e:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.footer_action_d690 {
    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);
}

.hard_05b3 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.pink_2616 {
    padding: 1.5rem;
}

.pink_2616 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.primary_solid_e737 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.picture_f63c {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.new_da4c,
.thumbnail-advanced-1f8f {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.new_da4c {
    background: #dcfce7;
    color: #166534;
}

.new_da4c.gas_d0a3 {
    background: #10b981;
    color: white;
}

.thumbnail-advanced-1f8f {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.thumbnail-advanced-1f8f.component-south-a1f0 {
    background: #fee2e2;
    color: #991b1b;
}

.thumbnail-advanced-1f8f.surface-799d {
    background: #fef3c7;
    color: #92400e;
}

.thumbnail-advanced-1f8f.mini_d942 {
    background: #dcfce7;
    color: #166534;
}

.current-bf3b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.current-bf3b strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.status-new-e910 {
    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);
}

.status-new-e910:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.input-981f {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.info_copper_e08c {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.bright-7feb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bright-7feb {
        grid-template-columns: 1fr 1fr;
    }
}

.image_warm_c669 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.paragraph-8ee6 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.alert-silver-bd5b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.button-fb52 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tertiary_f7c5 {
    font-size: 1rem;
    opacity: 0.9;
}

.paragraph-8ee6 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.upper_365d {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.upper_365d li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.upper_365d 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;
}

.upper_365d li strong {
    color: var(--primary-purple);
}

.upper_365d li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.overlay_advanced_2992 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.left-acdb {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.dark-8b39 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.left-acdb .photo-8ff1 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.mask_wood_5c1e p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.outline_cold_1ecd {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.outline_cold_1ecd a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.avatar_medium_3b77 {
    padding: 4rem 1.25rem;
    background: white;
}

.media-8f29 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .media-8f29 {
        grid-template-columns: 1fr 1fr;
    }
}

.layout_upper_6759 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.breadcrumb-white-c927 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.pro-b00a {
    margin-bottom: 1.5rem;
}

.box-green-f2d6 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.huge-2783 {
    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);
}

.basic_da5d {
    white-space: nowrap;
}

.shade_orange_c1dc {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.menu-paper-e3d2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pink_c532 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.pink_c532:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.upper-0432 {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-inner-b6f8 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.icon-inner-b6f8 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.mini_c580 {
    margin-top: 3rem;
}

.mini_c580 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent-51c3 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accent-51c3 thead {
    background: var(--primary-purple);
    color: white;
}

.accent-51c3 th,
.accent-51c3 td {
    padding: 1rem;
    text-align: left;
}

.accent-51c3 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.accent-51c3 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.accent-51c3 tbody tr:last-child {
    border-bottom: none;
}

.accent-51c3 tbody tr:hover {
    background: var(--light-bg);
}

.paragraph-north-3560 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.large_164a {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pink_b8b3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.silver_e507 {
    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);
}

.silver_e507:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.silver_e507.full-27e1::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;
}

.block-basic-0ddf {
    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;
}

.outer_fb69 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.highlight_a53d h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.video_west_a935 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.panel_6336 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.panel_6336 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.panel_6336 p:last-child {
    margin-bottom: 0;
}

.panel_6336 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tabs_up_673f {
    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;
}

.active_26af {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.narrow-c15f {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.narrow-c15f .avatar-0598 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.narrow-c15f .photo-8ff1 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.pro-a5a5 {
    padding: 4rem 1.25rem;
    background: white;
}

.plasma_8d7a {
    max-width: 900px;
    margin: 0 auto;
}

.list_glass_641a {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.list_glass_641a:hover {
    border-color: var(--primary-purple);
}

.list_glass_641a[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.list_glass_641a 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;
}

.list_glass_641a summary::-webkit-details-marker {
    display: none;
}

.list_glass_641a summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.list_glass_641a[open] summary::after {
    transform: rotate(45deg);
}

.filter_5b44 {
    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);
    }
}

.filter_5b44 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.filter_5b44 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.filter_5b44 ul,
.filter_5b44 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.filter_5b44 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.filter_5b44 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.overlay_liquid_8ebb {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.logo-f870 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.logo-f870 th,
.logo-f870 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.logo-f870 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.pattern_c556 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.west_72fb {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.form_over_b365 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .form_over_b365 {
        flex-direction: column;
        text-align: center;
    }
}

.form_over_b365 img {
    flex-shrink: 0;
}

.backdrop-brown-44d4 {
    font-size: 4rem;
    flex-shrink: 0;
}

.description_61b0 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.description_61b0 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.pattern_4f97 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.fresh_4a58 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.badge_simple_38d3 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.badge_simple_38d3 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thumbnail-035f {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.article-f8be {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.sort-6705 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cool-c090 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cool-c090 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.picture-down-e80e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-c632 {
    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);
}

.photo_ad31 {
    list-style: none;
}

.photo_ad31 li {
    margin-bottom: 0.75rem;
}

.photo_ad31 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.photo_ad31 a:hover {
    color: white;
}

.bronze_9b2b {
    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;
}

.message_plasma_a3c9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.message_plasma_a3c9 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.heading-4e6e {
    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);
}

.backdrop-liquid-f7d6 {
    text-align: right;
}

@media (max-width: 767px) {
    .backdrop-liquid-f7d6 {
        text-align: center;
        width: 100%;
    }
}

.backdrop-liquid-f7d6 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.accent_7efb {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.thumbnail-hard-9713 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.carousel-thick-df57,
.detail-2358,
.brown_2d00,
.list-5c77,
.info_copper_e08c,
.avatar_medium_3b77,
.large_164a,
.pro-a5a5,
.west_72fb,
.fresh_4a58 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .border-85ca {
        font-size: 1.75rem;
    }
    
    .disabled_left_9870 {
        font-size: 1rem;
    }
    
    .overlay_advanced_2992 {
        flex-direction: column;
    }
    
    .media-8f29 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .dirty_a54c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .paragraph_774e {
        max-width: 100%;
    }
    
    .hard_05b3 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .thumbnail-hard-9713 {
        padding: 0 1rem;
    }
    
    .under_96c6 {
        padding: 4rem 1rem 3rem;
    }
    
    .under_96c6 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .tall-f64e {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .texture-dark-2ba3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .accent-51c3,
    .logo-f870 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .outline-paper-9e8c {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .main_rough_f48a {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .pink_b8b3 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .under_96c6 h1 {
        font-size: 1.5rem;
    }
    
    .texture-dark-2ba3 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .gas_b665 {
        padding: 0.75rem;
    }
    
    .avatar-0598 {
        font-size: 1.5rem;
    }
    
    .outline-paper-9e8c {
        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 */
.paragraph_774e:hover,
.backdrop_734a:hover,
.silver_e507:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .list-5c77,
    .large_164a,
    .pro-a5a5 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.liquid_4750)
   ======================================== */

.content_plasma_281d.white-d06a {
    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;
}

.content_plasma_281d.white-d06a .iron-b7dd {
    color: #334155;
}

.content_plasma_281d.white-d06a .iron-b7dd:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.content_plasma_281d.white-d06a .iron-b7dd.fn-active-6587 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.content_plasma_281d.white-d06a .tall-8d0d {
    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);
}

.content_plasma_281d.white-d06a .tall-8d0d::before {
    border-bottom-color: #ffffff;
}

.content_plasma_281d.white-d06a .dropdown-8547 {
    color: #475569;
}

.content_plasma_281d.white-d06a .dropdown-8547::before {
    background: #818cf8;
}

.content_plasma_281d.white-d06a .dropdown-8547:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.content_plasma_281d.white-d06a .dropdown-8547:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.content_plasma_281d.white-d06a .purple_9632 {
    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);
}

.content_plasma_281d.white-d06a .purple_9632:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.content_plasma_281d.white-d06a .purple_9632 span {
    background: #475569;
    box-shadow: none;
}

.content_plasma_281d.white-d06a .purple_9632.fn-active-6587 span:nth-child(1),
.content_plasma_281d.white-d06a .purple_9632.fn-active-6587 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .content_plasma_281d.white-d06a {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .content_plasma_281d.white-d06a .wood-c0f5 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .content_plasma_281d.white-d06a .wood-c0f5 span {
        color: #334155 !important;
    }

    .content_plasma_281d.white-d06a .photo-878a {
        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);
    }

    .content_plasma_281d.white-d06a .photo-878a .iron-b7dd {
        color: #334155;
        text-shadow: none;
    }

    .content_plasma_281d.white-d06a .photo-878a .iron-b7dd:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .content_plasma_281d.white-d06a .photo-878a .iron-b7dd.picture_abc2::after {
        color: #64748b;
    }

    .content_plasma_281d.white-d06a .photo-878a .tall-8d0d {
        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) */
    .content_plasma_281d.white-d06a .photo-878a .status_3dae.fn-active-6587 .tall-8d0d {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .content_plasma_281d.white-d06a .photo-878a .dropdown-8547 {
        color: #475569;
    }

    .content_plasma_281d.white-d06a .photo-878a .dropdown-8547::before {
        color: #6366f1;
    }

    .content_plasma_281d.white-d06a .photo-878a .dropdown-8547:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .content_plasma_281d.white-d06a .photo-878a .dropdown-8547:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .content_plasma_281d.white-d06a .photo-878a .dropdown-8547:hover::before {
        color: #4f46e5;
    }
}

/* apk.carousel_steel_587e — mesmo tema claro da home; blocos extras */
body.chip-dark-1694 {
    background: #f8f9fa;
    color: #2c3e50;
}

.chip-dark-1694 .tiny-62b0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.chip-dark-1694 .stone_1440 {
    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);
}

.chip-dark-1694 .stone_1440 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.chip-dark-1694 .stone_1440 p:last-child {
    margin-bottom: 0;
}

.chip-dark-1694 .stone_1440 strong {
    color: var(--text-primary);
}

.chip-dark-1694 .picture-42c3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.chip-dark-1694 .picture-42c3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.caption_1f28 {
    background: #f8f9fa;
    color: #2c3e50;
}

.caption_1f28 .center-3eea {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.caption_1f28 .mask_bottom_72e6 {
    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);
}

.caption_1f28 .mask_bottom_72e6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption_1f28 .mask_bottom_72e6 p:last-child {
    margin-bottom: 0;
}

.caption_1f28 .mask_bottom_72e6 strong {
    color: var(--text-primary);
}

.caption_1f28 .east-1d6a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.caption_1f28 .east-1d6a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hovered-7095 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hovered-7095 .yellow_b051 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hovered-7095 .box-bc6b {
    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);
}

.hovered-7095 .box-bc6b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hovered-7095 .box-bc6b p:last-child {
    margin-bottom: 0;
}

.hovered-7095 .box-bc6b strong {
    color: var(--text-primary);
}

.hovered-7095 .nav_hard_943c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hovered-7095 .nav_hard_943c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.info-8ada {
    background: #f8f9fa;
    color: #2c3e50;
}

.info-8ada .dim_16be {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.info-8ada .element-132c {
    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);
}

.info-8ada .element-132c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.info-8ada .element-132c p:last-child {
    margin-bottom: 0;
}

.info-8ada .element-132c strong {
    color: var(--text-primary);
}

.info-8ada .badge-de5e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.info-8ada .badge-de5e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paper_484a {
    background: #f8f9fa;
    color: #2c3e50;
}

.paper_484a .video_12a4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paper_484a .detail_d44b {
    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);
}

.paper_484a .detail_d44b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paper_484a .detail_d44b p:last-child {
    margin-bottom: 0;
}

.paper_484a .detail_d44b strong {
    color: var(--text-primary);
}

.paper_484a .badge_e047 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paper_484a .badge_e047 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.logo-red-f477 {
    background: #f8f9fa;
    color: #2c3e50;
}

.logo-red-f477 .detail_hard_12e3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.logo-red-f477 .rough-8ea2 {
    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);
}

.logo-red-f477 .rough-8ea2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.logo-red-f477 .rough-8ea2 p:last-child {
    margin-bottom: 0;
}

.logo-red-f477 .rough-8ea2 strong {
    color: var(--text-primary);
}

.logo-red-f477 .texture-0395 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.logo-red-f477 .texture-0395 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_dynamic_7346 {
    background: #f8f9fa;
    color: #2c3e50;
}

.filter_dynamic_7346 .plasma-ccca {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.filter_dynamic_7346 .thick_b9b7 {
    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_dynamic_7346 .thick_b9b7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.filter_dynamic_7346 .thick_b9b7 p:last-child {
    margin-bottom: 0;
}

.filter_dynamic_7346 .thick_b9b7 strong {
    color: var(--text-primary);
}

.filter_dynamic_7346 .purple-d92f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.filter_dynamic_7346 .purple-d92f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.fast_a731 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fast_a731 .photo_99dd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fast_a731 .under_1317 {
    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);
}

.fast_a731 .under_1317 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fast_a731 .under_1317 p:last-child {
    margin-bottom: 0;
}

.fast_a731 .under_1317 strong {
    color: var(--text-primary);
}

.fast_a731 .hover-03d3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fast_a731 .hover-03d3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sidebar_narrow_288f {
    background: #f8f9fa;
    color: #2c3e50;
}

.sidebar_narrow_288f .black-615a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sidebar_narrow_288f .breadcrumb_green_ccfc {
    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);
}

.sidebar_narrow_288f .breadcrumb_green_ccfc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar_narrow_288f .breadcrumb_green_ccfc p:last-child {
    margin-bottom: 0;
}

.sidebar_narrow_288f .breadcrumb_green_ccfc strong {
    color: var(--text-primary);
}

.sidebar_narrow_288f .frame-old-5c4a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sidebar_narrow_288f .frame-old-5c4a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.plasma-0f46 {
    background: #f8f9fa;
    color: #2c3e50;
}

.plasma-0f46 .column_a8bf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.plasma-0f46 .accordion_58ef {
    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);
}

.plasma-0f46 .accordion_58ef p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.plasma-0f46 .accordion_58ef p:last-child {
    margin-bottom: 0;
}

.plasma-0f46 .accordion_58ef strong {
    color: var(--text-primary);
}

.plasma-0f46 .gallery-99fe {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.plasma-0f46 .gallery-99fe img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer_28c4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer_28c4 .list-9032 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer_28c4 .hidden-green-a47f {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.footer_28c4 .hidden-green-a47f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_28c4 .hidden-green-a47f p:last-child {
    margin-bottom: 0;
}

.footer_28c4 .hidden-green-a47f strong {
    color: var(--text-primary);
}

.footer_28c4 .mask_bb63 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_28c4 .mask_bb63 li {
    margin-bottom: 0.65rem;
}

.footer_28c4 .mask_bb63 li:last-child {
    margin-bottom: 0;
}

.footer_28c4 .dropdown_3159 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer_28c4 .dropdown_3159 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_d101 {
    background: #f8f9fa;
    color: #2c3e50;
}

.box_d101 .outline_basic_d23a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.box_d101 .overlay-motion-5760 {
    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_d101 .overlay-motion-5760 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.box_d101 .overlay-motion-5760 p:last-child {
    margin-bottom: 0;
}

.box_d101 .overlay-motion-5760 strong {
    color: var(--text-primary);
}

.box_d101 .slider_active_5415 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.box_d101 .slider_active_5415 li {
    margin-bottom: 0.65rem;
}

.box_d101 .slider_active_5415 li:last-child {
    margin-bottom: 0;
}

.box_d101 .tabs-bronze-1dd4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.box_d101 .tabs-bronze-1dd4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.grid_315f {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid_315f .active_new_714f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid_315f .search-80b7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.grid_315f .search-80b7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_315f .search-80b7 p:last-child {
    margin-bottom: 0;
}

.grid_315f .search-80b7 strong {
    color: var(--text-primary);
}

.grid_315f .card-5f27 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_315f .card-5f27 li {
    margin-bottom: 0.65rem;
}

.grid_315f .card-5f27 li:last-child {
    margin-bottom: 0;
}

.grid_315f .search_short_0963 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.grid_315f .search_short_0963 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.breadcrumb_hard_7c79 {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb_hard_7c79 .wood_2b3f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb_hard_7c79 .banner-purple-4964 {
    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_hard_7c79 .banner-purple-4964 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_hard_7c79 .banner-purple-4964 p:last-child {
    margin-bottom: 0;
}

.breadcrumb_hard_7c79 .banner-purple-4964 strong {
    color: var(--text-primary);
}

.breadcrumb_hard_7c79 .title_old_b489 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_hard_7c79 .title_old_b489 li {
    margin-bottom: 0.65rem;
}

.breadcrumb_hard_7c79 .title_old_b489 li:last-child {
    margin-bottom: 0;
}

body.icon_401a {
    background: #f8f9fa;
    color: #2c3e50;
}

.icon_401a .glass-e512 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.icon_401a .thick_8a02 {
    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);
}

.icon_401a .thick_8a02 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.icon_401a .thick_8a02 p:last-child {
    margin-bottom: 0;
}

.icon_401a .thick_8a02 strong {
    color: var(--text-primary);
}

.icon_401a .down_8a83 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.icon_401a .down_8a83 li {
    margin-bottom: 0.65rem;
}

.icon_401a .down_8a83 li:last-child {
    margin-bottom: 0;
}

.icon_401a .warm_715a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.icon_401a .warm_715a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.over_df80 {
    background: #f8f9fa;
    color: #2c3e50;
}

.over_df80 .shadow-complex-61eb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.over_df80 .layout-790e {
    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);
}

.over_df80 .layout-790e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.over_df80 .layout-790e p:last-child {
    margin-bottom: 0;
}

.over_df80 .layout-790e strong {
    color: var(--text-primary);
}

.over_df80 .row-stone-7211 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.over_df80 .row-stone-7211 li {
    margin-bottom: 0.65rem;
}

.over_df80 .row-stone-7211 li:last-child {
    margin-bottom: 0;
}

.over_df80 .info-8bc4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.over_df80 .info-8bc4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.aside-yellow-ac81 {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside-yellow-ac81 .basic_1baf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside-yellow-ac81 .over-258c {
    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);
}

.aside-yellow-ac81 .over-258c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-yellow-ac81 .over-258c p:last-child {
    margin-bottom: 0;
}

.aside-yellow-ac81 .over-258c strong {
    color: var(--text-primary);
}

.aside-yellow-ac81 .backdrop-47c2 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-yellow-ac81 .backdrop-47c2 li {
    margin-bottom: 0.65rem;
}

.aside-yellow-ac81 .backdrop-47c2 li:last-child {
    margin-bottom: 0;
}

.aside-yellow-ac81 .article_c86a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.aside-yellow-ac81 .article_c86a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.brown-f187 {
    background: #f8f9fa;
    color: #2c3e50;
}

.brown-f187 .selected_9cf1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.brown-f187 .outline-f9dc {
    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);
}

.brown-f187 .outline-f9dc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.brown-f187 .outline-f9dc p:last-child {
    margin-bottom: 0;
}

.brown-f187 .outline-f9dc strong {
    color: var(--text-primary);
}

.brown-f187 .west-b836 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.brown-f187 .west-b836 li {
    margin-bottom: 0.65rem;
}

.brown-f187 .west-b836 li:last-child {
    margin-bottom: 0;
}

.brown-f187 .accordion-hard-bcbf {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.brown-f187 .accordion-hard-bcbf 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: 4c9d */
.ghost-box-k1 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.2;
}
