/* 
 * 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.input-smooth-839a) — fixed together on mobile */
.photo_a978 {
    width: 100%;
}

.silver_595f {
    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) {
    .photo_a978 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .silver_595f {
        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.stone_c394. Conta) stay reachable.
     */
    .search_action_1760 .focused-25d5 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .photo_a978 .search_action_1760 > .focused-25d5 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .photo_a978:has(.slider-9a95.fn-show-7652) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .photo_a978:has(.slider-9a95.fn-show-7652) .silver_595f {
        flex-shrink: 0;
    }

    .photo_a978:has(.slider-9a95.fn-show-7652) .search_action_1760 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .photo_a978:has(.slider-9a95.fn-show-7652) .search_action_1760 > .focused-25d5 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .photo_a978:has(.slider-9a95.fn-show-7652) .advanced-4be5 {
        flex-shrink: 0;
    }

    .photo_a978:has(.slider-9a95.fn-show-7652) .slider-9a95.fn-show-7652 {
        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 */
    .search_action_1760 .slider-9a95 .gradient-cool-17bc.fn-active-7652 .backdrop_1e1b {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .silver_595f {
        position: sticky;
        top: 0;
    }
}

.photo_a978.list_brown_3255,
.photo_a978.list_brown_3255 .silver_595f {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.texture_4c69 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .texture_4c69 {
        padding: 0.75rem 0;
    }
}

.banner_f825 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.inner-01d1 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .inner-01d1 img {
        height: 35px;
    }
}

/* .search_action_1760 / .down-db18 — inner pages (brown bar); index uses .complex_533b below */

.search_action_1760:not(.complex_533b) .down-db18.fn-active-7652 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.wood_b1cc {
    display: flex;
    gap: var(--spacing-md);
}

.black-d2e4,
.basic_79d2 {
    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) {
    .black-d2e4,
    .basic_79d2 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .wood_b1cc {
        gap: 0.5rem;
    }
}

.black-d2e4 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.black-d2e4:hover {
    background: var(--primary-purple);
    color: white;
}

.basic_79d2 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.basic_79d2:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.label-4474 {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 5rem 1.25rem 4rem;
    overflow: hidden;
    width: 100%;
}

.label-4474::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40vw;
    max-width: 500px;
    height: 40vw;
    max-height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.label-4474::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;
}

.dirty-c795 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.summary_1654 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.summary_1654 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 400px);
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.label-4474 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;
}

.gradient-left-6d3c {
    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;
}

.gradient-left-6d3c strong {
    font-weight: 700;
}

.filter_5c6b {
    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);
}

.title_tiny_9ba2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.accent_wood_9b5f {
    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);
}

.accent_wood_9b5f:hover {
    transform: translateY(-4px);
}

.backdrop-713c {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.popup-complex-8a7a {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.pagination_c608 {
    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;
}

.pagination_c608:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.pagination_c608.glass-1e3f {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.tertiary-solid-a57b {
    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);
}

.tertiary-solid-a57b:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.clean_578b {
    padding: 3rem 1.25rem;
    background: white;
}

.gradient_c3ed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.status_d3c6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.status_d3c6:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.status_d3c6 img {
    margin-bottom: 1rem;
}

.gradient_74f8 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.status_d3c6 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.status_d3c6 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 */
.breadcrumb-ae4d {
    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);
}

.liquid-edc0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.narrow_e414 {
    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);
}

.narrow_e414 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.narrow_e414 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.narrow_e414 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hidden_f0af {
    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
   ======================================== */

.progress-solid-0dbd {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.thumbnail_8a36 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.preview_large_05f6 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.dim_fa79 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.selected-fbf8 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.selected-fbf8:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.selected-fbf8.layout_d803 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.selected-fbf8.layout_d803 h3,
.selected-fbf8.layout_d803 p {
    color: white;
}

.tabs_smooth_0837 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.selected-fbf8 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.selected-fbf8 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.input_hard_0338 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.input_hard_0338:hover {
    gap: 0.75rem;
}

.selected-fbf8.layout_d803 .input_hard_0338 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.black_53de {
    padding: 4rem 1.25rem;
    background: white;
}

.summary-narrow-0759 {
    text-align: center;
    margin-bottom: 3rem;
}

.panel-steel-c09e {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.huge-6694 {
    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%;
}

.huge-6694:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.tabs_action_6e0f {
    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);
}

.focus-dynamic-aa9b {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.thick_c28b {
    padding: 1.5rem;
}

.thick_c28b h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.breadcrumb_5459 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.form-f24b {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.text-7131,
.list_0b06 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.text-7131 {
    background: #dcfce7;
    color: #166534;
}

.text-7131.under_1495 {
    background: #10b981;
    color: white;
}

.list_0b06 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.list_0b06.old-69f1 {
    background: #fee2e2;
    color: #991b1b;
}

.list_0b06.accent-steel-6dd7 {
    background: #fef3c7;
    color: #92400e;
}

.list_0b06.iron-7274 {
    background: #dcfce7;
    color: #166534;
}

.tertiary_last_5365 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tertiary_last_5365 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.surface-green-bd95 {
    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);
}

.surface-green-bd95:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.last_a555 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.photo-glass-7efe {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-258f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-258f {
        grid-template-columns: 1fr 1fr;
    }
}

.photo-north-5647 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.preview-lower-0b98 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.disabled-e73d {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.tabs-f1a9 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.active-08ef {
    font-size: 1rem;
    opacity: 0.9;
}

.preview-lower-0b98 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.dirty_5f3e {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.dirty_5f3e li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.dirty_5f3e 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;
}

.dirty_5f3e li strong {
    color: var(--primary-purple);
}

.dirty_5f3e li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.accordion-e8fd {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.yellow_ad40 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.brown-bf09 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.yellow_ad40 .popup-complex-8a7a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.header-pink-992d p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.modal_center_2f47 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.modal_center_2f47 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.heading_south_aae9 {
    padding: 4rem 1.25rem;
    background: white;
}

.dirty_236b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dirty_236b {
        grid-template-columns: 1fr 1fr;
    }
}

.search-thick-15e4 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.label_advanced_0e22 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.primary_7cbd {
    margin-bottom: 1.5rem;
}

.row-center-b931 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.simple_b936 {
    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);
}

.container_upper_f811 {
    white-space: nowrap;
}

.chip_0e14 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.badge_inner_cb0e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-mini-ce72 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.hero-mini-ce72:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.dark_ff1c {
    font-size: 2rem;
    flex-shrink: 0;
}

.text-8260 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.text-8260 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.preview_615f {
    margin-top: 3rem;
}

.preview_615f h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.narrow-064d {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.narrow-064d thead {
    background: var(--primary-purple);
    color: white;
}

.narrow-064d th,
.narrow-064d td {
    padding: 1rem;
    text-align: left;
}

.narrow-064d th {
    font-weight: 700;
    font-size: 0.9rem;
}

.narrow-064d tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.narrow-064d tbody tr:last-child {
    border-bottom: none;
}

.narrow-064d tbody tr:hover {
    background: var(--light-bg);
}

.photo_dynamic_1ce2 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.list_345e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pagination_409d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.input-2e2c {
    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);
}

.input-2e2c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.input-2e2c.pattern_1eb3::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;
}

.section_advanced_f376 {
    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;
}

.aside_0314 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.avatar-focused-106c h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature_middle_c32b {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section_b26a {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.section_b26a p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.section_b26a p:last-child {
    margin-bottom: 0;
}

.section_b26a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.list-new-7a4a {
    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;
}

.sidebar-south-7531 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.purple-4259 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.purple-4259 .backdrop-713c {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.purple-4259 .popup-complex-8a7a {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.blue-9451 {
    padding: 4rem 1.25rem;
    background: white;
}

.accent_508a {
    max-width: 900px;
    margin: 0 auto;
}

.motion_665f {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.motion_665f:hover {
    border-color: var(--primary-purple);
}

.motion_665f[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.motion_665f 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;
}

.motion_665f summary::-webkit-details-marker {
    display: none;
}

.motion_665f summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.motion_665f[open] summary::after {
    transform: rotate(45deg);
}

.secondary_dirty_f3f7 {
    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);
    }
}

.secondary_dirty_f3f7 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.secondary_dirty_f3f7 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.secondary_dirty_f3f7 ul,
.secondary_dirty_f3f7 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.secondary_dirty_f3f7 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.secondary_dirty_f3f7 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.info-50c0 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.short_165c {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.short_165c th,
.short_165c td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.short_165c th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.small_2cab {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.table-8fcf {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.simple_e9b5 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .simple_e9b5 {
        flex-direction: column;
        text-align: center;
    }
}

.simple_e9b5 img {
    flex-shrink: 0;
}

.white-1e17 {
    font-size: 4rem;
    flex-shrink: 0;
}

.component_2cee h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.component_2cee p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.slow-7035 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.badge-bed8 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.icon_paper_fe2f h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.icon_paper_fe2f > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.menu-up-9820 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.prev_d3d7 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.avatar_red_ebfb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gradient_orange_8dd4 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient_orange_8dd4 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.status-1ba7 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-paper-fca1 {
    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);
}

.row_plasma_8f94 {
    list-style: none;
}

.row_plasma_8f94 li {
    margin-bottom: 0.75rem;
}

.row_plasma_8f94 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.row_plasma_8f94 a:hover {
    color: white;
}

.detail-large-f78f {
    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;
}

.active-fc2f {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.active-fc2f span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.notice_6e4c {
    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);
}

.frame_5ee8 {
    text-align: right;
}

@media (max-width: 767px) {
    .frame_5ee8 {
        text-align: center;
        width: 100%;
    }
}

.frame_5ee8 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.texture_1a57 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.focused-25d5 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.clean_578b,
.breadcrumb-ae4d,
.progress-solid-0dbd,
.black_53de,
.photo-glass-7efe,
.heading_south_aae9,
.list_345e,
.blue-9451,
.table-8fcf,
.badge-bed8 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .thumbnail_8a36 {
        font-size: 1.75rem;
    }
    
    .preview_large_05f6 {
        font-size: 1rem;
    }
    
    .accordion-e8fd {
        flex-direction: column;
    }
    
    .dirty_236b {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .panel-steel-c09e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .huge-6694 {
        max-width: 100%;
    }
    
    .focus-dynamic-aa9b {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .focused-25d5 {
        padding: 0 1rem;
    }
    
    .label-4474 {
        padding: 4rem 1rem 3rem;
    }
    
    .label-4474 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .pagination_c608 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .title_tiny_9ba2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .narrow-064d,
    .short_165c {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .gradient_c3ed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .dim_fa79 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .pagination_409d {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .label-4474 h1 {
        font-size: 1.5rem;
    }
    
    .title_tiny_9ba2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .accent_wood_9b5f {
        padding: 0.75rem;
    }
    
    .backdrop-713c {
        font-size: 1.5rem;
    }
    
    .gradient_c3ed {
        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 */
.huge-6694:hover,
.selected-fbf8:hover,
.input-2e2c:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .black_53de,
    .list_345e,
    .blue-9451 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.input-smooth-839a)
   ======================================== */

.search_action_1760.complex_533b {
    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;
}

.search_action_1760.complex_533b .down-db18 {
    color: #334155;
}

.search_action_1760.complex_533b .down-db18:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.search_action_1760.complex_533b .down-db18.fn-active-7652 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.search_action_1760.complex_533b .backdrop_1e1b {
    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);
}

.search_action_1760.complex_533b .backdrop_1e1b::before {
    border-bottom-color: #ffffff;
}

.search_action_1760.complex_533b .component_c4fe {
    color: #475569;
}

.search_action_1760.complex_533b .component_c4fe::before {
    background: #818cf8;
}

.search_action_1760.complex_533b .component_c4fe:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.search_action_1760.complex_533b .component_c4fe:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.search_action_1760.complex_533b .dim_329e {
    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);
}

.search_action_1760.complex_533b .dim_329e:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.search_action_1760.complex_533b .dim_329e span {
    background: #475569;
    box-shadow: none;
}

.search_action_1760.complex_533b .dim_329e.fn-active-7652 span:nth-child(1),
.search_action_1760.complex_533b .dim_329e.fn-active-7652 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .search_action_1760.complex_533b {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .search_action_1760.complex_533b .advanced-4be5 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .search_action_1760.complex_533b .advanced-4be5 span {
        color: #334155 !important;
    }

    .search_action_1760.complex_533b .slider-9a95 {
        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);
    }

    .search_action_1760.complex_533b .slider-9a95 .down-db18 {
        color: #334155;
        text-shadow: none;
    }

    .search_action_1760.complex_533b .slider-9a95 .down-db18:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .search_action_1760.complex_533b .slider-9a95 .down-db18.grid_out_830c::after {
        color: #64748b;
    }

    .search_action_1760.complex_533b .slider-9a95 .backdrop_1e1b {
        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) */
    .search_action_1760.complex_533b .slider-9a95 .gradient-cool-17bc.fn-active-7652 .backdrop_1e1b {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .search_action_1760.complex_533b .slider-9a95 .component_c4fe {
        color: #475569;
    }

    .search_action_1760.complex_533b .slider-9a95 .component_c4fe::before {
        color: #6366f1;
    }

    .search_action_1760.complex_533b .slider-9a95 .component_c4fe:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .search_action_1760.complex_533b .slider-9a95 .component_c4fe:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .search_action_1760.complex_533b .slider-9a95 .component_c4fe:hover::before {
        color: #4f46e5;
    }
}

/* apk.input_white_efc8 — mesmo tema claro da home; blocos extras */
body.description-mini-61fd {
    background: #f8f9fa;
    color: #2c3e50;
}

.description-mini-61fd .content-462c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description-mini-61fd .info-20b3 {
    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);
}

.description-mini-61fd .info-20b3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description-mini-61fd .info-20b3 p:last-child {
    margin-bottom: 0;
}

.description-mini-61fd .info-20b3 strong {
    color: var(--text-primary);
}

.description-mini-61fd .silver_c688 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.description-mini-61fd .silver_c688 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hot-251b {
    background: #f8f9fa;
    color: #2c3e50;
}

.hot-251b .pattern_white_e8fb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hot-251b .gallery-01ad {
    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);
}

.hot-251b .gallery-01ad p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hot-251b .gallery-01ad p:last-child {
    margin-bottom: 0;
}

.hot-251b .gallery-01ad strong {
    color: var(--text-primary);
}

.hot-251b .modal-liquid-5666 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hot-251b .modal-liquid-5666 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.button_a84e {
    background: #f8f9fa;
    color: #2c3e50;
}

.button_a84e .accent_gas_d9f3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button_a84e .title_lite_5a67 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.button_a84e .title_lite_5a67 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button_a84e .title_lite_5a67 p:last-child {
    margin-bottom: 0;
}

.button_a84e .title_lite_5a67 strong {
    color: var(--text-primary);
}

.button_a84e .paper_eeea {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button_a84e .paper_eeea 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_0901 {
    background: #f8f9fa;
    color: #2c3e50;
}

.out_0901 .header-glass-06ed {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.out_0901 .warm_fa6e {
    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_0901 .warm_fa6e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.out_0901 .warm_fa6e p:last-child {
    margin-bottom: 0;
}

.out_0901 .warm_fa6e strong {
    color: var(--text-primary);
}

.out_0901 .huge_df3b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.out_0901 .huge_df3b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.article_179a {
    background: #f8f9fa;
    color: #2c3e50;
}

.article_179a .in-2c4c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.article_179a .block-tall-8ea0 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.article_179a .block-tall-8ea0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.article_179a .block-tall-8ea0 p:last-child {
    margin-bottom: 0;
}

.article_179a .block-tall-8ea0 strong {
    color: var(--text-primary);
}

.article_179a .progress_wide_1f08 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.article_179a .progress_wide_1f08 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thumbnail_soft_475d {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_soft_475d .description_807a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_soft_475d .under-7090 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.thumbnail_soft_475d .under-7090 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_soft_475d .under-7090 p:last-child {
    margin-bottom: 0;
}

.thumbnail_soft_475d .under-7090 strong {
    color: var(--text-primary);
}

.thumbnail_soft_475d .focused_a776 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail_soft_475d .focused_a776 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.message-dark-bae3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.message-dark-bae3 .new-5870 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message-dark-bae3 .tabs_wood_ab19 {
    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-dark-bae3 .tabs_wood_ab19 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message-dark-bae3 .tabs_wood_ab19 p:last-child {
    margin-bottom: 0;
}

.message-dark-bae3 .tabs_wood_ab19 strong {
    color: var(--text-primary);
}

.message-dark-bae3 .breadcrumb-tall-33d1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message-dark-bae3 .breadcrumb-tall-33d1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.media-first-e57c {
    background: #f8f9fa;
    color: #2c3e50;
}

.media-first-e57c .progress_fast_8e27 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media-first-e57c .element-2d0c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.media-first-e57c .element-2d0c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media-first-e57c .element-2d0c p:last-child {
    margin-bottom: 0;
}

.media-first-e57c .element-2d0c strong {
    color: var(--text-primary);
}

.media-first-e57c .notification_solid_cd43 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media-first-e57c .notification_solid_cd43 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.black-4959 {
    background: #f8f9fa;
    color: #2c3e50;
}

.black-4959 .title-69c5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.black-4959 .column-16f3 {
    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);
}

.black-4959 .column-16f3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.black-4959 .column-16f3 p:last-child {
    margin-bottom: 0;
}

.black-4959 .column-16f3 strong {
    color: var(--text-primary);
}

.black-4959 .filter-dirty-e148 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.black-4959 .filter-dirty-e148 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.table_small_c8f0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.table_small_c8f0 .mini-fa30 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table_small_c8f0 .glass-875c {
    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);
}

.table_small_c8f0 .glass-875c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table_small_c8f0 .glass-875c p:last-child {
    margin-bottom: 0;
}

.table_small_c8f0 .glass-875c strong {
    color: var(--text-primary);
}

.table_small_c8f0 .texture-b83a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.table_small_c8f0 .texture-b83a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.smooth_976e {
    background: #f8f9fa;
    color: #2c3e50;
}

.smooth_976e .title-yellow-9374 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.smooth_976e .text_7268 {
    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);
}

.smooth_976e .text_7268 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.smooth_976e .text_7268 p:last-child {
    margin-bottom: 0;
}

.smooth_976e .text_7268 strong {
    color: var(--text-primary);
}

.smooth_976e .main_47a1 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.smooth_976e .main_47a1 li {
    margin-bottom: 0.65rem;
}

.smooth_976e .main_47a1 li:last-child {
    margin-bottom: 0;
}

.smooth_976e .module_e060 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.smooth_976e .module_e060 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper-a91f {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper-a91f .footer_basic_f3c6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper-a91f .photo_2742 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.wrapper-a91f .photo_2742 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper-a91f .photo_2742 p:last-child {
    margin-bottom: 0;
}

.wrapper-a91f .photo_2742 strong {
    color: var(--text-primary);
}

.wrapper-a91f .message-red-7284 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper-a91f .message-red-7284 li {
    margin-bottom: 0.65rem;
}

.wrapper-a91f .message-red-7284 li:last-child {
    margin-bottom: 0;
}

.wrapper-a91f .text_active_dac4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper-a91f .text_active_dac4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.text_glass_3221 {
    background: #f8f9fa;
    color: #2c3e50;
}

.text_glass_3221 .shade-2ad4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.text_glass_3221 .avatar_next_dabf {
    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);
}

.text_glass_3221 .avatar_next_dabf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_glass_3221 .avatar_next_dabf p:last-child {
    margin-bottom: 0;
}

.text_glass_3221 .avatar_next_dabf strong {
    color: var(--text-primary);
}

.text_glass_3221 .shade_dark_9221 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_glass_3221 .shade_dark_9221 li {
    margin-bottom: 0.65rem;
}

.text_glass_3221 .shade_dark_9221 li:last-child {
    margin-bottom: 0;
}

.text_glass_3221 .sidebar_gold_5089 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.text_glass_3221 .sidebar_gold_5089 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pro-6152 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pro-6152 .active-2755 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pro-6152 .wood-e4b6 {
    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);
}

.pro-6152 .wood-e4b6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro-6152 .wood-e4b6 p:last-child {
    margin-bottom: 0;
}

.pro-6152 .wood-e4b6 strong {
    color: var(--text-primary);
}

.pro-6152 .focus_552a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro-6152 .focus_552a li {
    margin-bottom: 0.65rem;
}

.pro-6152 .focus_552a li:last-child {
    margin-bottom: 0;
}

body.bright-9306 {
    background: #f8f9fa;
    color: #2c3e50;
}

.bright-9306 .short-1a54 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bright-9306 .preview_6796 {
    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);
}

.bright-9306 .preview_6796 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bright-9306 .preview_6796 p:last-child {
    margin-bottom: 0;
}

.bright-9306 .preview_6796 strong {
    color: var(--text-primary);
}

.bright-9306 .main-2db8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bright-9306 .main-2db8 li {
    margin-bottom: 0.65rem;
}

.bright-9306 .main-2db8 li:last-child {
    margin-bottom: 0;
}

.bright-9306 .breadcrumb_tall_c552 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bright-9306 .breadcrumb_tall_c552 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-orange-128c {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow-orange-128c .logo_bottom_35b1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow-orange-128c .box-4fef {
    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-orange-128c .box-4fef p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow-orange-128c .box-4fef p:last-child {
    margin-bottom: 0;
}

.shadow-orange-128c .box-4fef strong {
    color: var(--text-primary);
}

.shadow-orange-128c .notification-huge-ee90 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow-orange-128c .notification-huge-ee90 li {
    margin-bottom: 0.65rem;
}

.shadow-orange-128c .notification-huge-ee90 li:last-child {
    margin-bottom: 0;
}

.shadow-orange-128c .plasma_29d2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shadow-orange-128c .plasma_29d2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.rough-c127 {
    background: #f8f9fa;
    color: #2c3e50;
}

.rough-c127 .secondary-down-a2aa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.rough-c127 .surface-pink-5321 {
    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);
}

.rough-c127 .surface-pink-5321 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.rough-c127 .surface-pink-5321 p:last-child {
    margin-bottom: 0;
}

.rough-c127 .surface-pink-5321 strong {
    color: var(--text-primary);
}

.rough-c127 .thick-6ef1 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.rough-c127 .thick-6ef1 li {
    margin-bottom: 0.65rem;
}

.rough-c127 .thick-6ef1 li:last-child {
    margin-bottom: 0;
}

.rough-c127 .banner_9671 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.rough-c127 .banner_9671 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.secondary_5af4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.secondary_5af4 .title_a277 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.secondary_5af4 .component-bd39 {
    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);
}

.secondary_5af4 .component-bd39 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary_5af4 .component-bd39 p:last-child {
    margin-bottom: 0;
}

.secondary_5af4 .component-bd39 strong {
    color: var(--text-primary);
}

.secondary_5af4 .dark_c632 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary_5af4 .dark_c632 li {
    margin-bottom: 0.65rem;
}

.secondary_5af4 .dark_c632 li:last-child {
    margin-bottom: 0;
}

.secondary_5af4 .dirty-aa78 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.secondary_5af4 .dirty-aa78 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: 08ea */
.widget-item-q0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
