/* 
 * 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.hover_83f5) — fixed together on mobile */
.aside_9403 {
    width: 100%;
}

.dropdown-06d3 {
    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) {
    .aside_9403 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .dropdown-06d3 {
        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.table_static_8c2a. Conta) stay reachable.
     */
    .slow_61af .rough-7dcf {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .aside_9403 .slow_61af > .rough-7dcf {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .aside_9403:has(.avatar_full_13bc.fn-show-c4ba) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .aside_9403:has(.avatar_full_13bc.fn-show-c4ba) .dropdown-06d3 {
        flex-shrink: 0;
    }

    .aside_9403:has(.avatar_full_13bc.fn-show-c4ba) .slow_61af {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .aside_9403:has(.avatar_full_13bc.fn-show-c4ba) .slow_61af > .rough-7dcf {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .aside_9403:has(.avatar_full_13bc.fn-show-c4ba) .primary_935c {
        flex-shrink: 0;
    }

    .aside_9403:has(.avatar_full_13bc.fn-show-c4ba) .avatar_full_13bc.fn-show-c4ba {
        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 */
    .slow_61af .avatar_full_13bc .tertiary_1522.fn-active-c4ba .avatar_f508 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .dropdown-06d3 {
        position: sticky;
        top: 0;
    }
}

.aside_9403.section-4927,
.aside_9403.section-4927 .dropdown-06d3 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.advanced-1427 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .advanced-1427 {
        padding: 0.75rem 0;
    }
}

.list_4b0c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.small_2e85 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .small_2e85 img {
        height: 35px;
    }
}

/* .slow_61af / .lower-a98b — inner pages (brown bar); index uses .sort-outer-5b90 below */

.slow_61af:not(.sort-outer-5b90) .lower-a98b.fn-active-c4ba {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.tooltip-70f5 {
    display: flex;
    gap: var(--spacing-md);
}

.gradient-soft-e36f,
.status_e771 {
    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) {
    .gradient-soft-e36f,
    .status_e771 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .tooltip-70f5 {
        gap: 0.5rem;
    }
}

.gradient-soft-e36f {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.gradient-soft-e36f:hover {
    background: var(--primary-purple);
    color: white;
}

.status_e771 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.status_e771:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.video_73e4 {
    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%;
}

.video_73e4::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;
}

.video_73e4::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;
}

.image-d036 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.outer_213f {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.outer_213f 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);
}

.video_73e4 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;
}

.outline-pink-09d7 {
    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;
}

.outline-pink-09d7 strong {
    font-weight: 700;
}

.primary_0400 {
    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);
}

.active-6067 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.large_0b6d {
    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);
}

.large_0b6d:hover {
    transform: translateY(-4px);
}

.dirty_fd11 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.button_6b96 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.aside-prev-88e9 {
    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;
}

.aside-prev-88e9:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.aside-prev-88e9.modal-673d {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.list_bbb8 {
    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);
}

.list_bbb8:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.aside_silver_e493 {
    padding: 3rem 1.25rem;
    background: white;
}

.down-d416 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dirty-eb7e {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.dirty-eb7e:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dirty-eb7e img {
    margin-bottom: 1rem;
}

.pink-1c89 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.dirty-eb7e h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.dirty-eb7e 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 */
.in-c4a8 {
    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);
}

.label-7f75 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cool-ab8d {
    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);
}

.cool-ab8d h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.cool-ab8d p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cool-ab8d a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.warm-7a85 {
    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
   ======================================== */

.message_lower_3268 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.shade-dark-e0ca {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.list_tall_2b3b {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.feature_c3e9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.main_pink_ab9c {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.main_pink_ab9c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.main_pink_ab9c.border_9180 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.main_pink_ab9c.border_9180 h3,
.main_pink_ab9c.border_9180 p {
    color: white;
}

.hot-b180 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.main_pink_ab9c h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.main_pink_ab9c p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.row-b7e9 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.row-b7e9:hover {
    gap: 0.75rem;
}

.main_pink_ab9c.border_9180 .row-b7e9 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.lite-f911 {
    padding: 4rem 1.25rem;
    background: white;
}

.nav-5be1 {
    text-align: center;
    margin-bottom: 3rem;
}

.white-10b7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.alert-down-f441 {
    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%;
}

.alert-down-f441:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.element_huge_3b6e {
    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);
}

.description_cd7e {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.disabled-f3ac {
    padding: 1.5rem;
}

.disabled-f3ac h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.full-18a6 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article_over_b563 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pattern-985d,
.purple-077a {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.pattern-985d {
    background: #dcfce7;
    color: #166534;
}

.pattern-985d.secondary_up_40de {
    background: #10b981;
    color: white;
}

.purple-077a {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.purple-077a.plasma_2915 {
    background: #fee2e2;
    color: #991b1b;
}

.purple-077a.top-0af4 {
    background: #fef3c7;
    color: #92400e;
}

.purple-077a.overlay_12dc {
    background: #dcfce7;
    color: #166534;
}

.image_c688 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.image_c688 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.fixed-b76c {
    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);
}

.fixed-b76c:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.link_pressed_b19d {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.active-stale-ad98 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.nav_a89a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav_a89a {
        grid-template-columns: 1fr 1fr;
    }
}

.surface-2dba img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.dim-8dd8 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.main_1a81 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.glass-f842 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.solid_e781 {
    font-size: 1rem;
    opacity: 0.9;
}

.dim-8dd8 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.overlay_first_4fd6 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.overlay_first_4fd6 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.overlay_first_4fd6 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;
}

.overlay_first_4fd6 li strong {
    color: var(--primary-purple);
}

.overlay_first_4fd6 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.element-9234 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.pagination-iron-f0c2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.old-84d8 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.pagination-iron-f0c2 .button_6b96 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.container_small_b915 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.sort-a032 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.sort-a032 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.nav-414a {
    padding: 4rem 1.25rem;
    background: white;
}

.prev_4d15 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .prev_4d15 {
        grid-template-columns: 1fr 1fr;
    }
}

.thumbnail_in_77fd h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.advanced-fc51 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.steel-bcaf {
    margin-bottom: 1.5rem;
}

.frame_e11f {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.breadcrumb-4bb5 {
    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);
}

.hero-87b4 {
    white-space: nowrap;
}

.right-70ba {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.middle-a55c h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.list-4226 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.list-4226:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.container_a895 {
    font-size: 2rem;
    flex-shrink: 0;
}

.smooth-5908 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.smooth-5908 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.thick-b5a0 {
    margin-top: 3rem;
}

.thick-b5a0 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.primary-0062 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.primary-0062 thead {
    background: var(--primary-purple);
    color: white;
}

.primary-0062 th,
.primary-0062 td {
    padding: 1rem;
    text-align: left;
}

.primary-0062 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.primary-0062 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.primary-0062 tbody tr:last-child {
    border-bottom: none;
}

.primary-0062 tbody tr:hover {
    background: var(--light-bg);
}

.article_first_da69 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.shade_pink_aa89 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.grid-597e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.slider_old_a28f {
    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);
}

.slider_old_a28f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.slider_old_a28f.block-over-f2e9::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;
}

.tag-huge-c690 {
    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;
}

.copper-18f2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.header_ca24 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gradient-0706 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tertiary_soft_2290 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.tertiary_soft_2290 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.tertiary_soft_2290 p:last-child {
    margin-bottom: 0;
}

.tertiary_soft_2290 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.right_22f6 {
    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;
}

.texture-down-a870 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.huge-e070 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.huge-e070 .dirty_fd11 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.huge-e070 .button_6b96 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.media-fixed-040c {
    padding: 4rem 1.25rem;
    background: white;
}

.menu-lower-68dc {
    max-width: 900px;
    margin: 0 auto;
}

.bronze_f670 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.bronze_f670:hover {
    border-color: var(--primary-purple);
}

.bronze_f670[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.bronze_f670 summary {
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.bronze_f670 summary::-webkit-details-marker {
    display: none;
}

.bronze_f670 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.bronze_f670[open] summary::after {
    transform: rotate(45deg);
}

.highlight-00fe {
    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);
    }
}

.highlight-00fe p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.highlight-00fe h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.highlight-00fe ul,
.highlight-00fe ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.highlight-00fe li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.highlight-00fe strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tabs-b2f3 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.upper_f3d0 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.upper_f3d0 th,
.upper_f3d0 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.upper_f3d0 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.first-e23f {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.module-422e {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.small-7fdb {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .small-7fdb {
        flex-direction: column;
        text-align: center;
    }
}

.small-7fdb img {
    flex-shrink: 0;
}

.module_3f7a {
    font-size: 4rem;
    flex-shrink: 0;
}

.cool-0c7f h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cool-0c7f p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.menu_brown_5a87 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.carousel-3822 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.pagination_inner_cad8 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.pagination_inner_cad8 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gallery_218d {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.mask_current_a862 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.tag-574c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sidebar_dim_da68 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sidebar_dim_da68 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.chip_top_2c68 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-ed4c {
    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);
}

.tiny-f7f3 {
    list-style: none;
}

.tiny-f7f3 li {
    margin-bottom: 0.75rem;
}

.tiny-f7f3 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.tiny-f7f3 a:hover {
    color: white;
}

.right-6cac {
    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;
}

.feature_6004 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature_6004 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hard_46c8 {
    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);
}

.stale-fefc {
    text-align: right;
}

@media (max-width: 767px) {
    .stale-fefc {
        text-align: center;
        width: 100%;
    }
}

.stale-fefc p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.icon-bright-a66c {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.rough-7dcf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.aside_silver_e493,
.in-c4a8,
.message_lower_3268,
.lite-f911,
.active-stale-ad98,
.nav-414a,
.shade_pink_aa89,
.media-fixed-040c,
.module-422e,
.carousel-3822 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .shade-dark-e0ca {
        font-size: 1.75rem;
    }
    
    .list_tall_2b3b {
        font-size: 1rem;
    }
    
    .element-9234 {
        flex-direction: column;
    }
    
    .prev_4d15 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .white-10b7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .alert-down-f441 {
        max-width: 100%;
    }
    
    .description_cd7e {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .rough-7dcf {
        padding: 0 1rem;
    }
    
    .video_73e4 {
        padding: 4rem 1rem 3rem;
    }
    
    .video_73e4 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .aside-prev-88e9 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .active-6067 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .primary-0062,
    .upper_f3d0 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .down-d416 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .feature_c3e9 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .grid-597e {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .video_73e4 h1 {
        font-size: 1.5rem;
    }
    
    .active-6067 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .large_0b6d {
        padding: 0.75rem;
    }
    
    .dirty_fd11 {
        font-size: 1.5rem;
    }
    
    .down-d416 {
        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 */
.alert-down-f441:hover,
.main_pink_ab9c:hover,
.slider_old_a28f:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .lite-f911,
    .shade_pink_aa89,
    .media-fixed-040c {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.hover_83f5)
   ======================================== */

.slow_61af.sort-outer-5b90 {
    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;
}

.slow_61af.sort-outer-5b90 .lower-a98b {
    color: #334155;
}

.slow_61af.sort-outer-5b90 .lower-a98b:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.slow_61af.sort-outer-5b90 .lower-a98b.fn-active-c4ba {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.slow_61af.sort-outer-5b90 .avatar_f508 {
    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);
}

.slow_61af.sort-outer-5b90 .avatar_f508::before {
    border-bottom-color: #ffffff;
}

.slow_61af.sort-outer-5b90 .form_30f5 {
    color: #475569;
}

.slow_61af.sort-outer-5b90 .form_30f5::before {
    background: #818cf8;
}

.slow_61af.sort-outer-5b90 .form_30f5:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.slow_61af.sort-outer-5b90 .form_30f5:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.slow_61af.sort-outer-5b90 .iron_aff8 {
    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);
}

.slow_61af.sort-outer-5b90 .iron_aff8:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.slow_61af.sort-outer-5b90 .iron_aff8 span {
    background: #475569;
    box-shadow: none;
}

.slow_61af.sort-outer-5b90 .iron_aff8.fn-active-c4ba span:nth-child(1),
.slow_61af.sort-outer-5b90 .iron_aff8.fn-active-c4ba span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .slow_61af.sort-outer-5b90 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .slow_61af.sort-outer-5b90 .primary_935c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .slow_61af.sort-outer-5b90 .primary_935c span {
        color: #334155 !important;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc {
        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);
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .lower-a98b {
        color: #334155;
        text-shadow: none;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .lower-a98b:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .lower-a98b.basic-9650::after {
        color: #64748b;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .avatar_f508 {
        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) */
    .slow_61af.sort-outer-5b90 .avatar_full_13bc .tertiary_1522.fn-active-c4ba .avatar_f508 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .form_30f5 {
        color: #475569;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .form_30f5::before {
        color: #6366f1;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .form_30f5:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .form_30f5:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .slow_61af.sort-outer-5b90 .avatar_full_13bc .form_30f5:hover::before {
        color: #4f46e5;
    }
}

/* apk.text_1c5d — mesmo tema claro da home; blocos extras */
body.avatar-focused-9073 {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar-focused-9073 .paragraph-wide-0048 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar-focused-9073 .notice_8966 {
    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);
}

.avatar-focused-9073 .notice_8966 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar-focused-9073 .notice_8966 p:last-child {
    margin-bottom: 0;
}

.avatar-focused-9073 .notice_8966 strong {
    color: var(--text-primary);
}

.avatar-focused-9073 .element_bottom_b48a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar-focused-9073 .element_bottom_b48a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shade-glass-5442 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade-glass-5442 .container_f8ed {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade-glass-5442 .glass-fa13 {
    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);
}

.shade-glass-5442 .glass-fa13 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade-glass-5442 .glass-fa13 p:last-child {
    margin-bottom: 0;
}

.shade-glass-5442 .glass-fa13 strong {
    color: var(--text-primary);
}

.shade-glass-5442 .summary_c77a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade-glass-5442 .summary_c77a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.bronze-9c7e {
    background: #f8f9fa;
    color: #2c3e50;
}

.bronze-9c7e .stone_4e0e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bronze-9c7e .dynamic_1ff7 {
    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);
}

.bronze-9c7e .dynamic_1ff7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bronze-9c7e .dynamic_1ff7 p:last-child {
    margin-bottom: 0;
}

.bronze-9c7e .dynamic_1ff7 strong {
    color: var(--text-primary);
}

.bronze-9c7e .purple_f994 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bronze-9c7e .purple_f994 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.action_8309 {
    background: #f8f9fa;
    color: #2c3e50;
}

.action_8309 .element_top_5e48 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.action_8309 .shadow-wide-e0a5 {
    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);
}

.action_8309 .shadow-wide-e0a5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.action_8309 .shadow-wide-e0a5 p:last-child {
    margin-bottom: 0;
}

.action_8309 .shadow-wide-e0a5 strong {
    color: var(--text-primary);
}

.action_8309 .secondary_north_1ddb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.action_8309 .secondary_north_1ddb 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-666d {
    background: #f8f9fa;
    color: #2c3e50;
}

.prev-666d .accordion_d2cc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.prev-666d .frame-wide-566f {
    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-666d .frame-wide-566f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prev-666d .frame-wide-566f p:last-child {
    margin-bottom: 0;
}

.prev-666d .frame-wide-566f strong {
    color: var(--text-primary);
}

.prev-666d .shadow_5b17 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.prev-666d .shadow_5b17 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.soft_2b1c {
    background: #f8f9fa;
    color: #2c3e50;
}

.soft_2b1c .lite_4baf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.soft_2b1c .active_2c32 {
    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);
}

.soft_2b1c .active_2c32 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft_2b1c .active_2c32 p:last-child {
    margin-bottom: 0;
}

.soft_2b1c .active_2c32 strong {
    color: var(--text-primary);
}

.soft_2b1c .mask_594a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.soft_2b1c .mask_594a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sort-3e31 {
    background: #f8f9fa;
    color: #2c3e50;
}

.sort-3e31 .logo-34c9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sort-3e31 .footer_mini_f9f1 {
    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);
}

.sort-3e31 .footer_mini_f9f1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sort-3e31 .footer_mini_f9f1 p:last-child {
    margin-bottom: 0;
}

.sort-3e31 .footer_mini_f9f1 strong {
    color: var(--text-primary);
}

.sort-3e31 .outer_7350 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sort-3e31 .outer_7350 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-soft-a4fd {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper-soft-a4fd .dirty-5cb4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper-soft-a4fd .alert-paper-0539 {
    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-soft-a4fd .alert-paper-0539 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper-soft-a4fd .alert-paper-0539 p:last-child {
    margin-bottom: 0;
}

.wrapper-soft-a4fd .alert-paper-0539 strong {
    color: var(--text-primary);
}

.wrapper-soft-a4fd .out-770c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper-soft-a4fd .out-770c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.center-1713 {
    background: #f8f9fa;
    color: #2c3e50;
}

.center-1713 .button-full-8dd9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.center-1713 .nav_82ea {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.center-1713 .nav_82ea p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.center-1713 .nav_82ea p:last-child {
    margin-bottom: 0;
}

.center-1713 .nav_82ea strong {
    color: var(--text-primary);
}

.center-1713 .module-aee2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.center-1713 .module-aee2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thick-7f04 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thick-7f04 .media-f265 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thick-7f04 .pro-f277 {
    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);
}

.thick-7f04 .pro-f277 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thick-7f04 .pro-f277 p:last-child {
    margin-bottom: 0;
}

.thick-7f04 .pro-f277 strong {
    color: var(--text-primary);
}

.thick-7f04 .icon_63cd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thick-7f04 .icon_63cd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.lower_d993 {
    background: #f8f9fa;
    color: #2c3e50;
}

.lower_d993 .silver_f0cd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.lower_d993 .hot_bb5f {
    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);
}

.lower_d993 .hot_bb5f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower_d993 .hot_bb5f p:last-child {
    margin-bottom: 0;
}

.lower_d993 .hot_bb5f strong {
    color: var(--text-primary);
}

.lower_d993 .hover-motion-8af9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower_d993 .hover-motion-8af9 li {
    margin-bottom: 0.65rem;
}

.lower_d993 .hover-motion-8af9 li:last-child {
    margin-bottom: 0;
}

.lower_d993 .info-504d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.lower_d993 .info-504d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wide_b93a {
    background: #f8f9fa;
    color: #2c3e50;
}

.wide_b93a .pagination_pro_7632 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wide_b93a .link-liquid-9b99 {
    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);
}

.wide_b93a .link-liquid-9b99 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wide_b93a .link-liquid-9b99 p:last-child {
    margin-bottom: 0;
}

.wide_b93a .link-liquid-9b99 strong {
    color: var(--text-primary);
}

.wide_b93a .slow_1bfc {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wide_b93a .slow_1bfc li {
    margin-bottom: 0.65rem;
}

.wide_b93a .slow_1bfc li:last-child {
    margin-bottom: 0;
}

.wide_b93a .narrow-23e2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wide_b93a .narrow-23e2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.feature_0363 {
    background: #f8f9fa;
    color: #2c3e50;
}

.feature_0363 .wrapper-basic-302b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.feature_0363 .light_38e5 {
    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);
}

.feature_0363 .light_38e5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature_0363 .light_38e5 p:last-child {
    margin-bottom: 0;
}

.feature_0363 .light_38e5 strong {
    color: var(--text-primary);
}

.feature_0363 .cool_5e2b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature_0363 .cool_5e2b li {
    margin-bottom: 0.65rem;
}

.feature_0363 .cool_5e2b li:last-child {
    margin-bottom: 0;
}

.feature_0363 .row-easy-40cd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.feature_0363 .row-easy-40cd 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_932a {
    background: #f8f9fa;
    color: #2c3e50;
}

.slow_932a .description_ee56 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slow_932a .banner_7b34 {
    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_932a .banner_7b34 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow_932a .banner_7b34 p:last-child {
    margin-bottom: 0;
}

.slow_932a .banner_7b34 strong {
    color: var(--text-primary);
}

.slow_932a .hard_9ae6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow_932a .hard_9ae6 li {
    margin-bottom: 0.65rem;
}

.slow_932a .hard_9ae6 li:last-child {
    margin-bottom: 0;
}

body.tertiary-steel-5a13 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tertiary-steel-5a13 .pro-ad4e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tertiary-steel-5a13 .brown_5779 {
    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);
}

.tertiary-steel-5a13 .brown_5779 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary-steel-5a13 .brown_5779 p:last-child {
    margin-bottom: 0;
}

.tertiary-steel-5a13 .brown_5779 strong {
    color: var(--text-primary);
}

.tertiary-steel-5a13 .dirty-8bdb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary-steel-5a13 .dirty-8bdb li {
    margin-bottom: 0.65rem;
}

.tertiary-steel-5a13 .dirty-8bdb li:last-child {
    margin-bottom: 0;
}

.tertiary-steel-5a13 .description_36bb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tertiary-steel-5a13 .description_36bb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.block-small-c84e {
    background: #f8f9fa;
    color: #2c3e50;
}

.block-small-c84e .box_3ed0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.block-small-c84e .grid_29ea {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.block-small-c84e .grid_29ea p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block-small-c84e .grid_29ea p:last-child {
    margin-bottom: 0;
}

.block-small-c84e .grid_29ea strong {
    color: var(--text-primary);
}

.block-small-c84e .image-outer-75bc {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block-small-c84e .image-outer-75bc li {
    margin-bottom: 0.65rem;
}

.block-small-c84e .image-outer-75bc li:last-child {
    margin-bottom: 0;
}

.block-small-c84e .box_5c59 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.block-small-c84e .box_5c59 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.heading-medium-b765 {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading-medium-b765 .wood_474b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading-medium-b765 .texture_narrow_977f {
    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);
}

.heading-medium-b765 .texture_narrow_977f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-medium-b765 .texture_narrow_977f p:last-child {
    margin-bottom: 0;
}

.heading-medium-b765 .texture_narrow_977f strong {
    color: var(--text-primary);
}

.heading-medium-b765 .dim-1a7d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-medium-b765 .dim-1a7d li {
    margin-bottom: 0.65rem;
}

.heading-medium-b765 .dim-1a7d li:last-child {
    margin-bottom: 0;
}

.heading-medium-b765 .shade-thick-7ef2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading-medium-b765 .shade-thick-7ef2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.item-cold-f809 {
    background: #f8f9fa;
    color: #2c3e50;
}

.item-cold-f809 .hero-ad0e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.item-cold-f809 .notice-wood-f945 {
    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);
}

.item-cold-f809 .notice-wood-f945 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item-cold-f809 .notice-wood-f945 p:last-child {
    margin-bottom: 0;
}

.item-cold-f809 .notice-wood-f945 strong {
    color: var(--text-primary);
}

.item-cold-f809 .notice_under_c0d8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item-cold-f809 .notice_under_c0d8 li {
    margin-bottom: 0.65rem;
}

.item-cold-f809 .notice_under_c0d8 li:last-child {
    margin-bottom: 0;
}

.item-cold-f809 .focus-lower-7284 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.item-cold-f809 .focus-lower-7284 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: 7e25 */
.widget-item-b8 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
