/* 
 * 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.full_b6cc) — fixed together on mobile */
.popup-active-e95f {
    width: 100%;
}

.medium_e077 {
    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) {
    .popup-active-e95f {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .medium_e077 {
        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.detail-dark-7e36. Conta) stay reachable.
     */
    .header_ee8f .active-52e1 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .popup-active-e95f .header_ee8f > .active-52e1 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .popup-active-e95f:has(.purple_a6e4.fn-show-f1d8) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .popup-active-e95f:has(.purple_a6e4.fn-show-f1d8) .medium_e077 {
        flex-shrink: 0;
    }

    .popup-active-e95f:has(.purple_a6e4.fn-show-f1d8) .header_ee8f {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .popup-active-e95f:has(.purple_a6e4.fn-show-f1d8) .header_ee8f > .active-52e1 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .popup-active-e95f:has(.purple_a6e4.fn-show-f1d8) .search_7fa9 {
        flex-shrink: 0;
    }

    .popup-active-e95f:has(.purple_a6e4.fn-show-f1d8) .purple_a6e4.fn-show-f1d8 {
        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 */
    .header_ee8f .purple_a6e4 .carousel_south_32f7.fn-active-f1d8 .row-ea66 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .medium_e077 {
        position: sticky;
        top: 0;
    }
}

.popup-active-e95f.content_d9d3,
.popup-active-e95f.content_d9d3 .medium_e077 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stale-1d0d {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .stale-1d0d {
        padding: 0.75rem 0;
    }
}

.banner_1422 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.carousel_5c8e img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .carousel_5c8e img {
        height: 35px;
    }
}

/* .header_ee8f / .image_iron_4eee — inner pages (brown bar); index uses .frame_2033 below */

.header_ee8f:not(.frame_2033) .image_iron_4eee.fn-active-f1d8 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.light_5eb4 {
    display: flex;
    gap: var(--spacing-md);
}

.soft_36b5,
.smooth_8341 {
    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) {
    .soft_36b5,
    .smooth_8341 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .light_5eb4 {
        gap: 0.5rem;
    }
}

.soft_36b5 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.soft_36b5:hover {
    background: var(--primary-purple);
    color: white;
}

.smooth_8341 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.smooth_8341:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.aside-fee9 {
    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%;
}

.aside-fee9::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;
}

.aside-fee9::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;
}

.backdrop_4f43 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.slider_selected_34aa {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.slider_selected_34aa 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);
}

.aside-fee9 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;
}

.silver_2ede {
    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;
}

.silver_2ede strong {
    font-weight: 700;
}

.fast-f5a8 {
    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);
}

.preview_9384 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.image_1edf {
    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);
}

.image_1edf:hover {
    transform: translateY(-4px);
}

.alert_large_6617 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.motion_467f {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.texture_5b2a {
    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;
}

.texture_5b2a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.texture_5b2a.detail_5d9f {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.inner-b0d8 {
    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);
}

.inner-b0d8:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.wood_ad67 {
    padding: 3rem 1.25rem;
    background: white;
}

.title-east-9044 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filter_hard_82e5 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.filter_hard_82e5:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.filter_hard_82e5 img {
    margin-bottom: 1rem;
}

.hero-eb19 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.filter_hard_82e5 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.filter_hard_82e5 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 */
.list_hovered_d251 {
    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);
}

.stale-bd77 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.center_884e {
    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);
}

.center_884e h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.center_884e p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.center_884e a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.accent_ff96 {
    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
   ======================================== */

.carousel-first-82e0 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.description_bb5c {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.media_9446 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-3efb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.notification_074d {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.notification_074d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.notification_074d.module-6cf7 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.notification_074d.module-6cf7 h3,
.notification_074d.module-6cf7 p {
    color: white;
}

.caption-82e3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.notification_074d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.notification_074d p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.under-f78a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.under-f78a:hover {
    gap: 0.75rem;
}

.notification_074d.module-6cf7 .under-f78a {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.message-7398 {
    padding: 4rem 1.25rem;
    background: white;
}

.button-over-c870 {
    text-align: center;
    margin-bottom: 3rem;
}

.black_5f75 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.hidden_glass_446e {
    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%;
}

.hidden_glass_446e:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.nav-next-bbe1 {
    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);
}

.hidden-ae28 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.summary_9db5 {
    padding: 1.5rem;
}

.summary_9db5 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.item_440b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cool-502f {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.steel-7e8b,
.narrow_9d20 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.steel-7e8b {
    background: #dcfce7;
    color: #166534;
}

.steel-7e8b.disabled-pressed-161f {
    background: #10b981;
    color: white;
}

.narrow_9d20 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.narrow_9d20.hidden_4fdc {
    background: #fee2e2;
    color: #991b1b;
}

.narrow_9d20.new-ca8e {
    background: #fef3c7;
    color: #92400e;
}

.narrow_9d20.menu_left_deb7 {
    background: #dcfce7;
    color: #166534;
}

.widget_copper_f47e {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.widget_copper_f47e strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.popup_selected_0a32 {
    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);
}

.popup_selected_0a32:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.alert-0960 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.new-2095 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.status_360e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .status_360e {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-in-ea1d img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.dropdown_bd9b h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mask-pink-7261 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.component-beef {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.accent-under-16c2 {
    font-size: 1rem;
    opacity: 0.9;
}

.dropdown_bd9b h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.rough_2296 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.rough_2296 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.rough_2296 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;
}

.rough_2296 li strong {
    color: var(--primary-purple);
}

.rough_2296 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.frame-c1dc {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.complex_a85b {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.surface_south_940f {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.complex_a85b .motion_467f {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.north-a96c p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.dropdown-current-59de {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.dropdown-current-59de a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.backdrop_tall_8dee {
    padding: 4rem 1.25rem;
    background: white;
}

.alert_75b6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .alert_75b6 {
        grid-template-columns: 1fr 1fr;
    }
}

.list-13c0 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content_1c1d {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.hover_plasma_5b18 {
    margin-bottom: 1.5rem;
}

.menu-right-85d3 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.filter_cd48 {
    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);
}

.alert-6b4b {
    white-space: nowrap;
}

.wrapper-bcb9 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.preview-ddf4 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.video-under-f8b9 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.video-under-f8b9:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.thick_c013 {
    font-size: 2rem;
    flex-shrink: 0;
}

.pro_bb59 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pro_bb59 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.caption-ff6c {
    margin-top: 3rem;
}

.caption-ff6c h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.disabled_141a {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.disabled_141a thead {
    background: var(--primary-purple);
    color: white;
}

.disabled_141a th,
.disabled_141a td {
    padding: 1rem;
    text-align: left;
}

.disabled_141a th {
    font-weight: 700;
    font-size: 0.9rem;
}

.disabled_141a tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.disabled_141a tbody tr:last-child {
    border-bottom: none;
}

.disabled_141a tbody tr:hover {
    background: var(--light-bg);
}

.box-1095 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.hovered_05c2 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.preview-pro-ef2a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.easy_f740 {
    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);
}

.easy_f740:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.easy_f740.tooltip-28de::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;
}

.message-5ac8 {
    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;
}

.item-liquid-fb9d {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.dropdown_057e h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cool_eb36 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.title-bright-2aa9 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.title-bright-2aa9 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.title-bright-2aa9 p:last-child {
    margin-bottom: 0;
}

.title-bright-2aa9 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.surface-current-86de {
    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;
}

.heading-plasma-c80f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.west_8290 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.west_8290 .alert_large_6617 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.west_8290 .motion_467f {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.carousel-stale-949c {
    padding: 4rem 1.25rem;
    background: white;
}

.box-north-ef77 {
    max-width: 900px;
    margin: 0 auto;
}

.element_96c1 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.element_96c1:hover {
    border-color: var(--primary-purple);
}

.element_96c1[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.element_96c1 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;
}

.element_96c1 summary::-webkit-details-marker {
    display: none;
}

.element_96c1 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.element_96c1[open] summary::after {
    transform: rotate(45deg);
}

.paragraph-lite-3098 {
    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);
    }
}

.paragraph-lite-3098 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.paragraph-lite-3098 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.paragraph-lite-3098 ul,
.paragraph-lite-3098 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.paragraph-lite-3098 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.paragraph-lite-3098 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer_in_fab4 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.gold-676c {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gold-676c th,
.gold-676c td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.gold-676c th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.red-c1cf {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.bright_8f48 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.glass_1890 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .glass_1890 {
        flex-direction: column;
        text-align: center;
    }
}

.glass_1890 img {
    flex-shrink: 0;
}

.feature_out_843c {
    font-size: 4rem;
    flex-shrink: 0;
}

.alert-ae1f h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.alert-ae1f p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.paragraph-advanced-32cb {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.steel_3ee4 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.frame-1ce2 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.frame-1ce2 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.full_4c2a {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.alert_out_4828 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.full_b595 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.in-95e7 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.in-95e7 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.west_5c0c {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.left-40c6 {
    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);
}

.button-71f1 {
    list-style: none;
}

.button-71f1 li {
    margin-bottom: 0.75rem;
}

.button-71f1 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.button-71f1 a:hover {
    color: white;
}

.east-ad97 {
    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;
}

.summary-53cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.summary-53cd span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.accent_7b15 {
    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);
}

.focused_00fa {
    text-align: right;
}

@media (max-width: 767px) {
    .focused_00fa {
        text-align: center;
        width: 100%;
    }
}

.focused_00fa p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.inner-8cb3 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.active-52e1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.wood_ad67,
.list_hovered_d251,
.carousel-first-82e0,
.message-7398,
.new-2095,
.backdrop_tall_8dee,
.hovered_05c2,
.carousel-stale-949c,
.bright_8f48,
.steel_3ee4 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .description_bb5c {
        font-size: 1.75rem;
    }
    
    .media_9446 {
        font-size: 1rem;
    }
    
    .frame-c1dc {
        flex-direction: column;
    }
    
    .alert_75b6 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .black_5f75 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hidden_glass_446e {
        max-width: 100%;
    }
    
    .hidden-ae28 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .active-52e1 {
        padding: 0 1rem;
    }
    
    .aside-fee9 {
        padding: 4rem 1rem 3rem;
    }
    
    .aside-fee9 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .texture_5b2a {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .preview_9384 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .disabled_141a,
    .gold-676c {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .title-east-9044 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .footer-3efb {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .preview-pro-ef2a {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .aside-fee9 h1 {
        font-size: 1.5rem;
    }
    
    .preview_9384 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .image_1edf {
        padding: 0.75rem;
    }
    
    .alert_large_6617 {
        font-size: 1.5rem;
    }
    
    .title-east-9044 {
        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 */
.hidden_glass_446e:hover,
.notification_074d:hover,
.easy_f740:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .message-7398,
    .hovered_05c2,
    .carousel-stale-949c {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.full_b6cc)
   ======================================== */

.header_ee8f.frame_2033 {
    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;
}

.header_ee8f.frame_2033 .image_iron_4eee {
    color: #334155;
}

.header_ee8f.frame_2033 .image_iron_4eee:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.header_ee8f.frame_2033 .image_iron_4eee.fn-active-f1d8 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.header_ee8f.frame_2033 .row-ea66 {
    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);
}

.header_ee8f.frame_2033 .row-ea66::before {
    border-bottom-color: #ffffff;
}

.header_ee8f.frame_2033 .box_6880 {
    color: #475569;
}

.header_ee8f.frame_2033 .box_6880::before {
    background: #818cf8;
}

.header_ee8f.frame_2033 .box_6880:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.header_ee8f.frame_2033 .box_6880:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.header_ee8f.frame_2033 .photo-dirty-f52c {
    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);
}

.header_ee8f.frame_2033 .photo-dirty-f52c:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.header_ee8f.frame_2033 .photo-dirty-f52c span {
    background: #475569;
    box-shadow: none;
}

.header_ee8f.frame_2033 .photo-dirty-f52c.fn-active-f1d8 span:nth-child(1),
.header_ee8f.frame_2033 .photo-dirty-f52c.fn-active-f1d8 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .header_ee8f.frame_2033 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .header_ee8f.frame_2033 .search_7fa9 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .header_ee8f.frame_2033 .search_7fa9 span {
        color: #334155 !important;
    }

    .header_ee8f.frame_2033 .purple_a6e4 {
        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);
    }

    .header_ee8f.frame_2033 .purple_a6e4 .image_iron_4eee {
        color: #334155;
        text-shadow: none;
    }

    .header_ee8f.frame_2033 .purple_a6e4 .image_iron_4eee:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .header_ee8f.frame_2033 .purple_a6e4 .image_iron_4eee.old_c40e::after {
        color: #64748b;
    }

    .header_ee8f.frame_2033 .purple_a6e4 .row-ea66 {
        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) */
    .header_ee8f.frame_2033 .purple_a6e4 .carousel_south_32f7.fn-active-f1d8 .row-ea66 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .header_ee8f.frame_2033 .purple_a6e4 .box_6880 {
        color: #475569;
    }

    .header_ee8f.frame_2033 .purple_a6e4 .box_6880::before {
        color: #6366f1;
    }

    .header_ee8f.frame_2033 .purple_a6e4 .box_6880:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .header_ee8f.frame_2033 .purple_a6e4 .box_6880:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .header_ee8f.frame_2033 .purple_a6e4 .box_6880:hover::before {
        color: #4f46e5;
    }
}

/* apk.texture-51a1 — mesmo tema claro da home; blocos extras */
body.medium_7fd1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.medium_7fd1 .basic-6273 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.medium_7fd1 .border_current_7612 {
    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);
}

.medium_7fd1 .border_current_7612 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.medium_7fd1 .border_current_7612 p:last-child {
    margin-bottom: 0;
}

.medium_7fd1 .border_current_7612 strong {
    color: var(--text-primary);
}

.medium_7fd1 .frame_focused_940c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.medium_7fd1 .frame_focused_940c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.light_add6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.light_add6 .icon_70d2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.light_add6 .iron_b99f {
    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);
}

.light_add6 .iron_b99f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.light_add6 .iron_b99f p:last-child {
    margin-bottom: 0;
}

.light_add6 .iron_b99f strong {
    color: var(--text-primary);
}

.light_add6 .fluid-4697 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.light_add6 .fluid-4697 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outer-db18 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outer-db18 .column_pro_f7d8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outer-db18 .footer-5d76 {
    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);
}

.outer-db18 .footer-5d76 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outer-db18 .footer-5d76 p:last-child {
    margin-bottom: 0;
}

.outer-db18 .footer-5d76 strong {
    color: var(--text-primary);
}

.outer-db18 .slow-c798 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outer-db18 .slow-c798 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern-lite-a67d {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern-lite-a67d .dropdown-6aa5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern-lite-a67d .mask_north_0bc4 {
    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);
}

.pattern-lite-a67d .mask_north_0bc4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern-lite-a67d .mask_north_0bc4 p:last-child {
    margin-bottom: 0;
}

.pattern-lite-a67d .mask_north_0bc4 strong {
    color: var(--text-primary);
}

.pattern-lite-a67d .gold_b72e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern-lite-a67d .gold_b72e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.secondary_thick_7d93 {
    background: #f8f9fa;
    color: #2c3e50;
}

.secondary_thick_7d93 .accent-selected-eca6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.secondary_thick_7d93 .picture-9b3b {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.secondary_thick_7d93 .picture-9b3b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.secondary_thick_7d93 .picture-9b3b p:last-child {
    margin-bottom: 0;
}

.secondary_thick_7d93 .picture-9b3b strong {
    color: var(--text-primary);
}

.secondary_thick_7d93 .info-d5e1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.secondary_thick_7d93 .info-d5e1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.selected_7e8c {
    background: #f8f9fa;
    color: #2c3e50;
}

.selected_7e8c .primary_d606 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.selected_7e8c .cool-1cee {
    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);
}

.selected_7e8c .cool-1cee p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.selected_7e8c .cool-1cee p:last-child {
    margin-bottom: 0;
}

.selected_7e8c .cool-1cee strong {
    color: var(--text-primary);
}

.selected_7e8c .plasma_c0c0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.selected_7e8c .plasma_c0c0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.section_744d {
    background: #f8f9fa;
    color: #2c3e50;
}

.section_744d .element-east-fbc5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.section_744d .modal_fixed_55e0 {
    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);
}

.section_744d .modal_fixed_55e0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_744d .modal_fixed_55e0 p:last-child {
    margin-bottom: 0;
}

.section_744d .modal_fixed_55e0 strong {
    color: var(--text-primary);
}

.section_744d .gallery_3807 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.section_744d .gallery_3807 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.label_1a76 {
    background: #f8f9fa;
    color: #2c3e50;
}

.label_1a76 .clean_77be {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label_1a76 .slow_63dd {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.label_1a76 .slow_63dd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label_1a76 .slow_63dd p:last-child {
    margin-bottom: 0;
}

.label_1a76 .slow_63dd strong {
    color: var(--text-primary);
}

.label_1a76 .footer-55a4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label_1a76 .footer-55a4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.steel-3210 {
    background: #f8f9fa;
    color: #2c3e50;
}

.steel-3210 .stone_f321 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.steel-3210 .large_ccac {
    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);
}

.steel-3210 .large_ccac p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel-3210 .large_ccac p:last-child {
    margin-bottom: 0;
}

.steel-3210 .large_ccac strong {
    color: var(--text-primary);
}

.steel-3210 .white-a25a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.steel-3210 .white-a25a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.section-cf9a {
    background: #f8f9fa;
    color: #2c3e50;
}

.section-cf9a .layout_cdeb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.section-cf9a .selected-08a6 {
    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);
}

.section-cf9a .selected-08a6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section-cf9a .selected-08a6 p:last-child {
    margin-bottom: 0;
}

.section-cf9a .selected-08a6 strong {
    color: var(--text-primary);
}

.section-cf9a .east_dfc4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.section-cf9a .east_dfc4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.mask-97c3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.mask-97c3 .hero-lower-ca25 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.mask-97c3 .message_c23e {
    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);
}

.mask-97c3 .message_c23e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mask-97c3 .message_c23e p:last-child {
    margin-bottom: 0;
}

.mask-97c3 .message_c23e strong {
    color: var(--text-primary);
}

.mask-97c3 .layout-left-f14b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mask-97c3 .layout-left-f14b li {
    margin-bottom: 0.65rem;
}

.mask-97c3 .layout-left-f14b li:last-child {
    margin-bottom: 0;
}

.mask-97c3 .light-b4bc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.mask-97c3 .light-b4bc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.short-ff47 {
    background: #f8f9fa;
    color: #2c3e50;
}

.short-ff47 .popup_short_62ec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.short-ff47 .table-1452 {
    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);
}

.short-ff47 .table-1452 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.short-ff47 .table-1452 p:last-child {
    margin-bottom: 0;
}

.short-ff47 .table-1452 strong {
    color: var(--text-primary);
}

.short-ff47 .notice_gas_5deb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.short-ff47 .notice_gas_5deb li {
    margin-bottom: 0.65rem;
}

.short-ff47 .notice_gas_5deb li:last-child {
    margin-bottom: 0;
}

.short-ff47 .lite_13fb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.short-ff47 .lite_13fb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern_fast_1c8f {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern_fast_1c8f .hidden-56e2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern_fast_1c8f .fresh_1e53 {
    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);
}

.pattern_fast_1c8f .fresh_1e53 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_fast_1c8f .fresh_1e53 p:last-child {
    margin-bottom: 0;
}

.pattern_fast_1c8f .fresh_1e53 strong {
    color: var(--text-primary);
}

.pattern_fast_1c8f .copper_b43a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_fast_1c8f .copper_b43a li {
    margin-bottom: 0.65rem;
}

.pattern_fast_1c8f .copper_b43a li:last-child {
    margin-bottom: 0;
}

.pattern_fast_1c8f .box_pro_178c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern_fast_1c8f .box_pro_178c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.easy_c7dd {
    background: #f8f9fa;
    color: #2c3e50;
}

.easy_c7dd .paragraph_green_4a67 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.easy_c7dd .highlight_hovered_1542 {
    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);
}

.easy_c7dd .highlight_hovered_1542 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.easy_c7dd .highlight_hovered_1542 p:last-child {
    margin-bottom: 0;
}

.easy_c7dd .highlight_hovered_1542 strong {
    color: var(--text-primary);
}

.easy_c7dd .soft-3b6f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.easy_c7dd .soft-3b6f li {
    margin-bottom: 0.65rem;
}

.easy_c7dd .soft-3b6f li:last-child {
    margin-bottom: 0;
}

body.popup_basic_7d1d {
    background: #f8f9fa;
    color: #2c3e50;
}

.popup_basic_7d1d .narrow_f773 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.popup_basic_7d1d .east_949a {
    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);
}

.popup_basic_7d1d .east_949a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.popup_basic_7d1d .east_949a p:last-child {
    margin-bottom: 0;
}

.popup_basic_7d1d .east_949a strong {
    color: var(--text-primary);
}

.popup_basic_7d1d .over_139a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.popup_basic_7d1d .over_139a li {
    margin-bottom: 0.65rem;
}

.popup_basic_7d1d .over_139a li:last-child {
    margin-bottom: 0;
}

.popup_basic_7d1d .shadow_wide_1062 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.popup_basic_7d1d .shadow_wide_1062 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.backdrop-warm-e88c {
    background: #f8f9fa;
    color: #2c3e50;
}

.backdrop-warm-e88c .easy_fbe6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.backdrop-warm-e88c .hovered_24d9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.backdrop-warm-e88c .hovered_24d9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.backdrop-warm-e88c .hovered_24d9 p:last-child {
    margin-bottom: 0;
}

.backdrop-warm-e88c .hovered_24d9 strong {
    color: var(--text-primary);
}

.backdrop-warm-e88c .small-861b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.backdrop-warm-e88c .small-861b li {
    margin-bottom: 0.65rem;
}

.backdrop-warm-e88c .small-861b li:last-child {
    margin-bottom: 0;
}

.backdrop-warm-e88c .dynamic_36f7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.backdrop-warm-e88c .dynamic_36f7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.video-410c {
    background: #f8f9fa;
    color: #2c3e50;
}

.video-410c .hard_6bf2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.video-410c .north-a1d8 {
    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);
}

.video-410c .north-a1d8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.video-410c .north-a1d8 p:last-child {
    margin-bottom: 0;
}

.video-410c .north-a1d8 strong {
    color: var(--text-primary);
}

.video-410c .mini-2d64 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.video-410c .mini-2d64 li {
    margin-bottom: 0.65rem;
}

.video-410c .mini-2d64 li:last-child {
    margin-bottom: 0;
}

.video-410c .west-aeb9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.video-410c .west-aeb9 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-144f {
    background: #f8f9fa;
    color: #2c3e50;
}

.block-144f .main_copper_f209 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.block-144f .media_next_c89e {
    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-144f .media_next_c89e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block-144f .media_next_c89e p:last-child {
    margin-bottom: 0;
}

.block-144f .media_next_c89e strong {
    color: var(--text-primary);
}

.block-144f .section_rough_d8a9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.block-144f .section_rough_d8a9 li {
    margin-bottom: 0.65rem;
}

.block-144f .section_rough_d8a9 li:last-child {
    margin-bottom: 0;
}

.block-144f .rough-9213 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.block-144f .rough-9213 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: 4cd5 */
.widget-item-s8 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
