/* 
 * 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.sort-43ff) — fixed together on mobile */
.surface_thick_d9f1 {
    width: 100%;
}

.sidebar_clean_3583 {
    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) {
    .surface_thick_d9f1 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .sidebar_clean_3583 {
        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.wood_cf5d. Conta) stay reachable.
     */
    .down-0d10 .glass_d0b2 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .surface_thick_d9f1 .down-0d10 > .glass_d0b2 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .surface_thick_d9f1:has(.tall-31c7.fn-show-1051) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .surface_thick_d9f1:has(.tall-31c7.fn-show-1051) .sidebar_clean_3583 {
        flex-shrink: 0;
    }

    .surface_thick_d9f1:has(.tall-31c7.fn-show-1051) .down-0d10 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .surface_thick_d9f1:has(.tall-31c7.fn-show-1051) .down-0d10 > .glass_d0b2 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .surface_thick_d9f1:has(.tall-31c7.fn-show-1051) .image_green_fcbf {
        flex-shrink: 0;
    }

    .surface_thick_d9f1:has(.tall-31c7.fn-show-1051) .tall-31c7.fn-show-1051 {
        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 */
    .down-0d10 .tall-31c7 .notice_black_4e4a.fn-active-1051 .breadcrumb-420a {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .sidebar_clean_3583 {
        position: sticky;
        top: 0;
    }
}

.surface_thick_d9f1.preview_5bbf,
.surface_thick_d9f1.preview_5bbf .sidebar_clean_3583 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.button_0545 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .button_0545 {
        padding: 0.75rem 0;
    }
}

.soft-4245 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.paragraph-full-6e5d img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .paragraph-full-6e5d img {
        height: 35px;
    }
}

/* .down-0d10 / .message_advanced_8df1 — inner pages (brown bar); index uses .short-4b80 below */

.down-0d10:not(.short-4b80) .message_advanced_8df1.fn-active-1051 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.chip-f70c {
    display: flex;
    gap: var(--spacing-md);
}

.feature-2c50,
.down_324d {
    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) {
    .feature-2c50,
    .down_324d {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .chip-f70c {
        gap: 0.5rem;
    }
}

.feature-2c50 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.feature-2c50:hover {
    background: var(--primary-purple);
    color: white;
}

.down_324d {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.down_324d:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.lite_aef4 {
    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%;
}

.lite_aef4::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;
}

.lite_aef4::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;
}

.menu-paper-8f8f {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.picture_dim_80ce {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.picture_dim_80ce 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);
}

.lite_aef4 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;
}

.in-92ea {
    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;
}

.in-92ea strong {
    font-weight: 700;
}

.caption_eeb3 {
    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);
}

.focus-e61b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.tag-large-2417 {
    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);
}

.tag-large-2417:hover {
    transform: translateY(-4px);
}

.widget-ad25 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.gallery_5e2d {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.full-8475 {
    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;
}

.full-8475:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.full-8475.header_6208 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.photo_00d5 {
    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);
}

.photo_00d5:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.table-ee90 {
    padding: 3rem 1.25rem;
    background: white;
}

.box_liquid_2bf1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.heading_8afa {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.heading_8afa:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.heading_8afa img {
    margin-bottom: 1rem;
}

.outline_0e9b {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.heading_8afa h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.heading_8afa 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 */
.image_dynamic_6864 {
    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);
}

.north-23ab {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.complex-4c58 {
    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);
}

.complex-4c58 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.complex-4c58 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.complex-4c58 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.carousel-ccf3 {
    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
   ======================================== */

.disabled_middle_d6a0 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.top-3e5c {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.bright_f3b9 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.pressed-c962 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.section-198d {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.section-198d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.section-198d.carousel-6c7e {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-198d.carousel-6c7e h3,
.section-198d.carousel-6c7e p {
    color: white;
}

.media_343d {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-198d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-198d p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.wrapper-3885 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.wrapper-3885:hover {
    gap: 0.75rem;
}

.section-198d.carousel-6c7e .wrapper-3885 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.carousel_clean_ceb3 {
    padding: 4rem 1.25rem;
    background: white;
}

.image-1590 {
    text-align: center;
    margin-bottom: 3rem;
}

.media_8fc7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.inner_4baf {
    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%;
}

.inner_4baf:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.badge_f5dd {
    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);
}

.down-39f5 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.hard-cd29 {
    padding: 1.5rem;
}

.hard-cd29 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.focus_ab5c {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.out_07e6 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.gradient_6776,
.article_dbc4 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.gradient_6776 {
    background: #dcfce7;
    color: #166534;
}

.gradient_6776.picture-over-91ee {
    background: #10b981;
    color: white;
}

.article_dbc4 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.article_dbc4.component-right-6f26 {
    background: #fee2e2;
    color: #991b1b;
}

.article_dbc4.surface-pro-43c6 {
    background: #fef3c7;
    color: #92400e;
}

.article_dbc4.secondary_active_b150 {
    background: #dcfce7;
    color: #166534;
}

.black_5e03 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.black_5e03 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.secondary_top_5a19 {
    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);
}

.secondary_top_5a19:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.rough_b57c {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.iron-9e84 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.easy-8734 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .easy-8734 {
        grid-template-columns: 1fr 1fr;
    }
}

.cool-170e img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.stale-4015 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accent-steel-19af {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.south-d0b5 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.photo_current_e9a7 {
    font-size: 1rem;
    opacity: 0.9;
}

.stale-4015 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.accordion-bb64 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.accordion-bb64 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.accordion-bb64 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;
}

.accordion-bb64 li strong {
    color: var(--primary-purple);
}

.accordion-bb64 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.accent-glass-1b89 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.module-7e8a {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.content_large_4e2b {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.module-7e8a .gallery_5e2d {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.white-214a p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.white_1ada {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.white_1ada a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.inner_9f3d {
    padding: 4rem 1.25rem;
    background: white;
}

.nav-9e38 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .nav-9e38 {
        grid-template-columns: 1fr 1fr;
    }
}

.article_lite_9d0e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.fluid-8ef7 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.paragraph-9611 {
    margin-bottom: 1.5rem;
}

.tabs_5736 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pressed_21e9 {
    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);
}

.primary_stale_d8fd {
    white-space: nowrap;
}

.shade_4fee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.filter_top_b6b4 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tiny-d1ee {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.tiny-d1ee:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.item_short_2c00 {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-5466 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.item-5466 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.content-north-2b46 {
    margin-top: 3rem;
}

.content-north-2b46 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.logo-medium-d779 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.logo-medium-d779 thead {
    background: var(--primary-purple);
    color: white;
}

.logo-medium-d779 th,
.logo-medium-d779 td {
    padding: 1rem;
    text-align: left;
}

.logo-medium-d779 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.logo-medium-d779 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.logo-medium-d779 tbody tr:last-child {
    border-bottom: none;
}

.logo-medium-d779 tbody tr:hover {
    background: var(--light-bg);
}

.article-5d3a {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.bronze_fa56 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.mask_7f21 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.warm_9217 {
    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);
}

.warm_9217:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.warm_9217.background-2e04::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;
}

.sidebar-871a {
    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;
}

.photo_9861 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.badge-plasma-bf61 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.form-9efe {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.list_basic_abc7 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.list_basic_abc7 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.list_basic_abc7 p:last-child {
    margin-bottom: 0;
}

.list_basic_abc7 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer_457d {
    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;
}

.summary-hot-2197 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.aside-d40b {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.aside-d40b .widget-ad25 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.aside-d40b .gallery_5e2d {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.component_6154 {
    padding: 4rem 1.25rem;
    background: white;
}

.widget_42ce {
    max-width: 900px;
    margin: 0 auto;
}

.outer-99a2 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.outer-99a2:hover {
    border-color: var(--primary-purple);
}

.outer-99a2[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.outer-99a2 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;
}

.outer-99a2 summary::-webkit-details-marker {
    display: none;
}

.outer-99a2 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.outer-99a2[open] summary::after {
    transform: rotate(45deg);
}

.nav-48c6 {
    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);
    }
}

.nav-48c6 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.nav-48c6 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.nav-48c6 ul,
.nav-48c6 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.nav-48c6 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.nav-48c6 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.preview_selected_0f7f {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.full-590c {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.full-590c th,
.full-590c td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.full-590c th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.chip-orange-1cd2 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.last-9915 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.dim_6f55 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .dim_6f55 {
        flex-direction: column;
        text-align: center;
    }
}

.dim_6f55 img {
    flex-shrink: 0;
}

.accent-lower-e153 {
    font-size: 4rem;
    flex-shrink: 0;
}

.link_3696 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.link_3696 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.footer_center_f9be {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.link_5679 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.paragraph-narrow-1cf4 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.paragraph-narrow-1cf4 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.detail_9539 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.form-48c6 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.secondary-2169 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.input-6a75 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.input-6a75 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.wrapper_focused_90c9 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gradient-purple-6b55 {
    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);
}

.active_49fc {
    list-style: none;
}

.active_49fc li {
    margin-bottom: 0.75rem;
}

.active_49fc a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.active_49fc a:hover {
    color: white;
}

.solid-45df {
    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;
}

.alert_fixed_b946 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.alert_fixed_b946 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.filter-large-a990 {
    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);
}

.link-up-a226 {
    text-align: right;
}

@media (max-width: 767px) {
    .link-up-a226 {
        text-align: center;
        width: 100%;
    }
}

.link-up-a226 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.accent-4c9d {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.glass_d0b2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.table-ee90,
.image_dynamic_6864,
.disabled_middle_d6a0,
.carousel_clean_ceb3,
.iron-9e84,
.inner_9f3d,
.bronze_fa56,
.component_6154,
.last-9915,
.link_5679 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .top-3e5c {
        font-size: 1.75rem;
    }
    
    .bright_f3b9 {
        font-size: 1rem;
    }
    
    .accent-glass-1b89 {
        flex-direction: column;
    }
    
    .nav-9e38 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .media_8fc7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inner_4baf {
        max-width: 100%;
    }
    
    .down-39f5 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .glass_d0b2 {
        padding: 0 1rem;
    }
    
    .lite_aef4 {
        padding: 4rem 1rem 3rem;
    }
    
    .lite_aef4 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .full-8475 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .focus-e61b {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .logo-medium-d779,
    .full-590c {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .box_liquid_2bf1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .pressed-c962 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .mask_7f21 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .lite_aef4 h1 {
        font-size: 1.5rem;
    }
    
    .focus-e61b {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .tag-large-2417 {
        padding: 0.75rem;
    }
    
    .widget-ad25 {
        font-size: 1.5rem;
    }
    
    .box_liquid_2bf1 {
        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 */
.inner_4baf:hover,
.section-198d:hover,
.warm_9217:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .carousel_clean_ceb3,
    .bronze_fa56,
    .component_6154 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.sort-43ff)
   ======================================== */

.down-0d10.short-4b80 {
    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;
}

.down-0d10.short-4b80 .message_advanced_8df1 {
    color: #334155;
}

.down-0d10.short-4b80 .message_advanced_8df1:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.down-0d10.short-4b80 .message_advanced_8df1.fn-active-1051 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.down-0d10.short-4b80 .breadcrumb-420a {
    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);
}

.down-0d10.short-4b80 .breadcrumb-420a::before {
    border-bottom-color: #ffffff;
}

.down-0d10.short-4b80 .section_de5c {
    color: #475569;
}

.down-0d10.short-4b80 .section_de5c::before {
    background: #818cf8;
}

.down-0d10.short-4b80 .section_de5c:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.down-0d10.short-4b80 .section_de5c:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.down-0d10.short-4b80 .south-f173 {
    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);
}

.down-0d10.short-4b80 .south-f173:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.down-0d10.short-4b80 .south-f173 span {
    background: #475569;
    box-shadow: none;
}

.down-0d10.short-4b80 .south-f173.fn-active-1051 span:nth-child(1),
.down-0d10.short-4b80 .south-f173.fn-active-1051 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .down-0d10.short-4b80 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .down-0d10.short-4b80 .image_green_fcbf {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .down-0d10.short-4b80 .image_green_fcbf span {
        color: #334155 !important;
    }

    .down-0d10.short-4b80 .tall-31c7 {
        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);
    }

    .down-0d10.short-4b80 .tall-31c7 .message_advanced_8df1 {
        color: #334155;
        text-shadow: none;
    }

    .down-0d10.short-4b80 .tall-31c7 .message_advanced_8df1:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .down-0d10.short-4b80 .tall-31c7 .message_advanced_8df1.module_stale_87df::after {
        color: #64748b;
    }

    .down-0d10.short-4b80 .tall-31c7 .breadcrumb-420a {
        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) */
    .down-0d10.short-4b80 .tall-31c7 .notice_black_4e4a.fn-active-1051 .breadcrumb-420a {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .down-0d10.short-4b80 .tall-31c7 .section_de5c {
        color: #475569;
    }

    .down-0d10.short-4b80 .tall-31c7 .section_de5c::before {
        color: #6366f1;
    }

    .down-0d10.short-4b80 .tall-31c7 .section_de5c:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .down-0d10.short-4b80 .tall-31c7 .section_de5c:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .down-0d10.short-4b80 .tall-31c7 .section_de5c:hover::before {
        color: #4f46e5;
    }
}

/* apk.popup_soft_7d08 — mesmo tema claro da home; blocos extras */
body.thumbnail_glass_855f {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_glass_855f .active-huge-33cd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_glass_855f .sidebar-complex-122c {
    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_glass_855f .sidebar-complex-122c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_glass_855f .sidebar-complex-122c p:last-child {
    margin-bottom: 0;
}

.thumbnail_glass_855f .sidebar-complex-122c strong {
    color: var(--text-primary);
}

.thumbnail_glass_855f .chip_9899 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail_glass_855f .chip_9899 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.header_tiny_a042 {
    background: #f8f9fa;
    color: #2c3e50;
}

.header_tiny_a042 .mask-over-2790 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.header_tiny_a042 .row-wide-32e2 {
    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);
}

.header_tiny_a042 .row-wide-32e2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.header_tiny_a042 .row-wide-32e2 p:last-child {
    margin-bottom: 0;
}

.header_tiny_a042 .row-wide-32e2 strong {
    color: var(--text-primary);
}

.header_tiny_a042 .smooth_5096 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.header_tiny_a042 .smooth_5096 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.prev-773a {
    background: #f8f9fa;
    color: #2c3e50;
}

.prev-773a .dropdown_7e44 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.prev-773a .box_d107 {
    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);
}

.prev-773a .box_d107 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prev-773a .box_d107 p:last-child {
    margin-bottom: 0;
}

.prev-773a .box_d107 strong {
    color: var(--text-primary);
}

.prev-773a .component_motion_083c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.prev-773a .component_motion_083c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.static-1caf {
    background: #f8f9fa;
    color: #2c3e50;
}

.static-1caf .focus-26b5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.static-1caf .article-prev-864c {
    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);
}

.static-1caf .article-prev-864c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-1caf .article-prev-864c p:last-child {
    margin-bottom: 0;
}

.static-1caf .article-prev-864c strong {
    color: var(--text-primary);
}

.static-1caf .section_89c8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.static-1caf .section_89c8 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-lite-9f30 {
    background: #f8f9fa;
    color: #2c3e50;
}

.caption-lite-9f30 .basic_90c0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.caption-lite-9f30 .solid-2dbe {
    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-lite-9f30 .solid-2dbe p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption-lite-9f30 .solid-2dbe p:last-child {
    margin-bottom: 0;
}

.caption-lite-9f30 .solid-2dbe strong {
    color: var(--text-primary);
}

.caption-lite-9f30 .inner-94f8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.caption-lite-9f30 .inner-94f8 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_1fe4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pro_1fe4 .first_9569 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pro_1fe4 .element_2b12 {
    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_1fe4 .element_2b12 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro_1fe4 .element_2b12 p:last-child {
    margin-bottom: 0;
}

.pro_1fe4 .element_2b12 strong {
    color: var(--text-primary);
}

.pro_1fe4 .background_copper_8cd0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pro_1fe4 .background_copper_8cd0 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-4bf4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fast-4bf4 .element_62d0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fast-4bf4 .basic-7331 {
    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-4bf4 .basic-7331 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fast-4bf4 .basic-7331 p:last-child {
    margin-bottom: 0;
}

.fast-4bf4 .basic-7331 strong {
    color: var(--text-primary);
}

.fast-4bf4 .status-simple-60f3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fast-4bf4 .status-simple-60f3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.title-bottom-5809 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-bottom-5809 .row-pro-7107 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-bottom-5809 .label-0386 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.title-bottom-5809 .label-0386 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-bottom-5809 .label-0386 p:last-child {
    margin-bottom: 0;
}

.title-bottom-5809 .label-0386 strong {
    color: var(--text-primary);
}

.title-bottom-5809 .widget_west_ba7c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title-bottom-5809 .widget_west_ba7c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent-plasma-eb83 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent-plasma-eb83 .primary_6b7a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent-plasma-eb83 .soft_3be1 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.accent-plasma-eb83 .soft_3be1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent-plasma-eb83 .soft_3be1 p:last-child {
    margin-bottom: 0;
}

.accent-plasma-eb83 .soft_3be1 strong {
    color: var(--text-primary);
}

.accent-plasma-eb83 .backdrop-orange-6375 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent-plasma-eb83 .backdrop-orange-6375 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.highlight-5842 {
    background: #f8f9fa;
    color: #2c3e50;
}

.highlight-5842 .message-next-6db0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.highlight-5842 .right_10e4 {
    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);
}

.highlight-5842 .right_10e4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.highlight-5842 .right_10e4 p:last-child {
    margin-bottom: 0;
}

.highlight-5842 .right_10e4 strong {
    color: var(--text-primary);
}

.highlight-5842 .wide_ec67 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.highlight-5842 .wide_ec67 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_tiny_2a29 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_tiny_2a29 .menu-5983 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_tiny_2a29 .detail-static-8704 {
    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_tiny_2a29 .detail-static-8704 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_tiny_2a29 .detail-static-8704 p:last-child {
    margin-bottom: 0;
}

.thumbnail_tiny_2a29 .detail-static-8704 strong {
    color: var(--text-primary);
}

.thumbnail_tiny_2a29 .search-006f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_tiny_2a29 .search-006f li {
    margin-bottom: 0.65rem;
}

.thumbnail_tiny_2a29 .search-006f li:last-child {
    margin-bottom: 0;
}

.thumbnail_tiny_2a29 .overlay_3b24 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail_tiny_2a29 .overlay_3b24 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hard_4331 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hard_4331 .left-4a30 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hard_4331 .gallery_f76a {
    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);
}

.hard_4331 .gallery_f76a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hard_4331 .gallery_f76a p:last-child {
    margin-bottom: 0;
}

.hard_4331 .gallery_f76a strong {
    color: var(--text-primary);
}

.hard_4331 .gallery_clean_0f0a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hard_4331 .gallery_clean_0f0a li {
    margin-bottom: 0.65rem;
}

.hard_4331 .gallery_clean_0f0a li:last-child {
    margin-bottom: 0;
}

.hard_4331 .first-3556 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hard_4331 .first-3556 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.image-4e2a {
    background: #f8f9fa;
    color: #2c3e50;
}

.image-4e2a .secondary-7fde {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.image-4e2a .tiny-4cea {
    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);
}

.image-4e2a .tiny-4cea p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.image-4e2a .tiny-4cea p:last-child {
    margin-bottom: 0;
}

.image-4e2a .tiny-4cea strong {
    color: var(--text-primary);
}

.image-4e2a .card-out-e985 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.image-4e2a .card-out-e985 li {
    margin-bottom: 0.65rem;
}

.image-4e2a .card-out-e985 li:last-child {
    margin-bottom: 0;
}

.image-4e2a .full_9f5d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.image-4e2a .full_9f5d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.orange_679c {
    background: #f8f9fa;
    color: #2c3e50;
}

.orange_679c .main-2ee1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.orange_679c .button-fixed-fe34 {
    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);
}

.orange_679c .button-fixed-fe34 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.orange_679c .button-fixed-fe34 p:last-child {
    margin-bottom: 0;
}

.orange_679c .button-fixed-fe34 strong {
    color: var(--text-primary);
}

.orange_679c .message_dynamic_6940 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.orange_679c .message_dynamic_6940 li {
    margin-bottom: 0.65rem;
}

.orange_679c .message_dynamic_6940 li:last-child {
    margin-bottom: 0;
}

body.liquid_f405 {
    background: #f8f9fa;
    color: #2c3e50;
}

.liquid_f405 .item_1a91 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.liquid_f405 .feature_middle_c1c1 {
    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);
}

.liquid_f405 .feature_middle_c1c1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.liquid_f405 .feature_middle_c1c1 p:last-child {
    margin-bottom: 0;
}

.liquid_f405 .feature_middle_c1c1 strong {
    color: var(--text-primary);
}

.liquid_f405 .green-952b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.liquid_f405 .green-952b li {
    margin-bottom: 0.65rem;
}

.liquid_f405 .green-952b li:last-child {
    margin-bottom: 0;
}

.liquid_f405 .fluid_9c13 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.liquid_f405 .fluid_9c13 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paragraph_7691 {
    background: #f8f9fa;
    color: #2c3e50;
}

.paragraph_7691 .focused-f39e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paragraph_7691 .paragraph-abf5 {
    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);
}

.paragraph_7691 .paragraph-abf5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph_7691 .paragraph-abf5 p:last-child {
    margin-bottom: 0;
}

.paragraph_7691 .paragraph-abf5 strong {
    color: var(--text-primary);
}

.paragraph_7691 .light_f308 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph_7691 .light_f308 li {
    margin-bottom: 0.65rem;
}

.paragraph_7691 .light_f308 li:last-child {
    margin-bottom: 0;
}

.paragraph_7691 .outer_a0c2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paragraph_7691 .outer_a0c2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.slow_70f4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slow_70f4 .overlay_left_8cab {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slow_70f4 .slider-679c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.slow_70f4 .slider-679c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow_70f4 .slider-679c p:last-child {
    margin-bottom: 0;
}

.slow_70f4 .slider-679c strong {
    color: var(--text-primary);
}

.slow_70f4 .list_279c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow_70f4 .list_279c li {
    margin-bottom: 0.65rem;
}

.slow_70f4 .list_279c li:last-child {
    margin-bottom: 0;
}

.slow_70f4 .border-4ffc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slow_70f4 .border-4ffc 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_5524 {
    background: #f8f9fa;
    color: #2c3e50;
}

.smooth_5524 .widget-9c41 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.smooth_5524 .center-e169 {
    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_5524 .center-e169 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.smooth_5524 .center-e169 p:last-child {
    margin-bottom: 0;
}

.smooth_5524 .center-e169 strong {
    color: var(--text-primary);
}

.smooth_5524 .secondary-bd5c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.smooth_5524 .secondary-bd5c li {
    margin-bottom: 0.65rem;
}

.smooth_5524 .secondary-bd5c li:last-child {
    margin-bottom: 0;
}

.smooth_5524 .logo-167e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.smooth_5524 .logo-167e 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: 5ea3 */
.widget-item-f8 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
