/* 
 * 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.paragraph-d871) — fixed together on mobile */
.thick_be01 {
    width: 100%;
}

.out-1c8d {
    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) {
    .thick_be01 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .out-1c8d {
        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.link-lower-2fe4. Conta) stay reachable.
     */
    .in-955b .logo-d1ae {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .thick_be01 .in-955b > .logo-d1ae {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .thick_be01:has(.dropdown-silver-7343.fn-show-0be0) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .thick_be01:has(.dropdown-silver-7343.fn-show-0be0) .out-1c8d {
        flex-shrink: 0;
    }

    .thick_be01:has(.dropdown-silver-7343.fn-show-0be0) .in-955b {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .thick_be01:has(.dropdown-silver-7343.fn-show-0be0) .in-955b > .logo-d1ae {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .thick_be01:has(.dropdown-silver-7343.fn-show-0be0) .secondary_a068 {
        flex-shrink: 0;
    }

    .thick_be01:has(.dropdown-silver-7343.fn-show-0be0) .dropdown-silver-7343.fn-show-0be0 {
        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 */
    .in-955b .dropdown-silver-7343 .header_paper_1596.fn-active-0be0 .stone_c0be {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .out-1c8d {
        position: sticky;
        top: 0;
    }
}

.thick_be01.widget-advanced-9660,
.thick_be01.widget-advanced-9660 .out-1c8d {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.complex_e633 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .complex_e633 {
        padding: 0.75rem 0;
    }
}

.menu-81cb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.popup_current_04e6 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .popup_current_04e6 img {
        height: 35px;
    }
}

/* .in-955b / .stone_ca2b — inner pages (brown bar); index uses .focus-fcd7 below */

.in-955b:not(.focus-fcd7) .stone_ca2b.fn-active-0be0 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.pagination-bright-7c44 {
    display: flex;
    gap: var(--spacing-md);
}

.primary-1a21,
.link-east-91b3 {
    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) {
    .primary-1a21,
    .link-east-91b3 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .pagination-bright-7c44 {
        gap: 0.5rem;
    }
}

.primary-1a21 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.primary-1a21:hover {
    background: var(--primary-purple);
    color: white;
}

.link-east-91b3 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.link-east-91b3:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.solid-4e7f {
    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%;
}

.solid-4e7f::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;
}

.solid-4e7f::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;
}

.chip_advanced_696e {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.heading_ef5a {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.heading_ef5a 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);
}

.solid-4e7f 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;
}

.copper-63b9 {
    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;
}

.copper-63b9 strong {
    font-weight: 700;
}

.article-0297 {
    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-9b25 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.red-4547 {
    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);
}

.red-4547:hover {
    transform: translateY(-4px);
}

.breadcrumb-east-96cf {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.slider-6758 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.footer_silver_42dc {
    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;
}

.footer_silver_42dc:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.footer_silver_42dc.soft-566a {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.huge_c369 {
    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);
}

.huge_c369:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.gas-da3b {
    padding: 3rem 1.25rem;
    background: white;
}

.image-up-a42d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.summary_c548 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.summary_c548:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.summary_c548 img {
    margin-bottom: 1rem;
}

.purple_12cd {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.summary_c548 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.summary_c548 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 */
.large_39f0 {
    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);
}

.blue_7046 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.shadow_0382 {
    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);
}

.shadow_0382 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.shadow_0382 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.shadow_0382 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tag-a811 {
    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
   ======================================== */

.detail_d4dc {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.simple_5fe3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.message-555b {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.slow_5157 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.smooth-ce2d {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.smooth-ce2d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.smooth-ce2d.gradient-5caa {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.smooth-ce2d.gradient-5caa h3,
.smooth-ce2d.gradient-5caa p {
    color: white;
}

.mask_bottom_1e4c {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.smooth-ce2d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.smooth-ce2d p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.disabled-brown-50d3 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.disabled-brown-50d3:hover {
    gap: 0.75rem;
}

.smooth-ce2d.gradient-5caa .disabled-brown-50d3 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.badge-dd11 {
    padding: 4rem 1.25rem;
    background: white;
}

.fixed_f41a {
    text-align: center;
    margin-bottom: 3rem;
}

.hover-2e1c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.filter_hot_c95f {
    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%;
}

.filter_hot_c95f:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.narrow-c20e {
    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);
}

.tooltip_purple_62f9 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.accent-dynamic-ee9a {
    padding: 1.5rem;
}

.accent-dynamic-ee9a h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.easy_9aff {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.medium-505f {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.wrapper-smooth-212e,
.static-a3ca {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.wrapper-smooth-212e {
    background: #dcfce7;
    color: #166534;
}

.wrapper-smooth-212e.element-left-92a5 {
    background: #10b981;
    color: white;
}

.static-a3ca {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.static-a3ca.block-104b {
    background: #fee2e2;
    color: #991b1b;
}

.static-a3ca.backdrop-00df {
    background: #fef3c7;
    color: #92400e;
}

.static-a3ca.border-4232 {
    background: #dcfce7;
    color: #166534;
}

.link-top-8a64 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.link-top-8a64 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.banner_green_4e64 {
    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);
}

.banner_green_4e64:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.panel_0e28 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.info_gas_652e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.text-257c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .text-257c {
        grid-template-columns: 1fr 1fr;
    }
}

.logo-612b img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.dim_d8ad h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.avatar-bb06 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.thick-733d {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.secondary-ea75 {
    font-size: 1rem;
    opacity: 0.9;
}

.dim_d8ad h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero_a0d5 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.hero_a0d5 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.hero_a0d5 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;
}

.hero_a0d5 li strong {
    color: var(--primary-purple);
}

.hero_a0d5 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.banner_379c {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.search_b71b {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.panel-8ba1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.search_b71b .slider-6758 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.accent_action_b4a3 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.over_7bb6 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.over_7bb6 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.element-focused-df36 {
    padding: 4rem 1.25rem;
    background: white;
}

.hard_4b57 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hard_4b57 {
        grid-template-columns: 1fr 1fr;
    }
}

.card-prev-a56a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cool_3213 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.module-b411 {
    margin-bottom: 1.5rem;
}

.search_selected_5e2a {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.new-9faa {
    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);
}

.button-simple-ffa7 {
    white-space: nowrap;
}

.tertiary_under_5e06 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.action-0389 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.panel-3b40 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.panel-3b40:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.accent-tall-232d {
    font-size: 2rem;
    flex-shrink: 0;
}

.full-d319 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.full-d319 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.button-7b6a {
    margin-top: 3rem;
}

.button-7b6a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.grid-64c8 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.grid-64c8 thead {
    background: var(--primary-purple);
    color: white;
}

.grid-64c8 th,
.grid-64c8 td {
    padding: 1rem;
    text-align: left;
}

.grid-64c8 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.grid-64c8 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.grid-64c8 tbody tr:last-child {
    border-bottom: none;
}

.grid-64c8 tbody tr:hover {
    background: var(--light-bg);
}

.south-59f2 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.sort_963e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.narrow_4298 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.next-badb {
    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);
}

.next-badb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.next-badb.box-928d::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;
}

.summary_d6e0 {
    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;
}

.logo-ba1d {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.card-8b3f h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.lower-6f99 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-1ba5 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.content-1ba5 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.content-1ba5 p:last-child {
    margin-bottom: 0;
}

.content-1ba5 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.disabled-c8fc {
    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;
}

.complex_3e91 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.accordion_down_5c26 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.accordion_down_5c26 .breadcrumb-east-96cf {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.accordion_down_5c26 .slider-6758 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.block-7afb {
    padding: 4rem 1.25rem;
    background: white;
}

.list_basic_05a5 {
    max-width: 900px;
    margin: 0 auto;
}

.preview_0b2c {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.preview_0b2c:hover {
    border-color: var(--primary-purple);
}

.preview_0b2c[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.preview_0b2c 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;
}

.preview_0b2c summary::-webkit-details-marker {
    display: none;
}

.preview_0b2c summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.preview_0b2c[open] summary::after {
    transform: rotate(45deg);
}

.yellow-63e1 {
    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);
    }
}

.yellow-63e1 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.yellow-63e1 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.yellow-63e1 ul,
.yellow-63e1 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.yellow-63e1 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.yellow-63e1 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.box_88f4 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.panel_926f {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.panel_926f th,
.panel_926f td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.panel_926f th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.current_242f {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.secondary-basic-69b3 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.bottom-c86f {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .bottom-c86f {
        flex-direction: column;
        text-align: center;
    }
}

.bottom-c86f img {
    flex-shrink: 0;
}

.button-copper-28b5 {
    font-size: 4rem;
    flex-shrink: 0;
}

.next-b696 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.next-b696 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.hero_lower_57aa {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.tag_new_9c13 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.logo_top_d0e1 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.logo_top_d0e1 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.short_2031 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.down-ed34 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.orange-fb88 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.smooth-641a h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.smooth-641a p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.thumbnail-wide-9eee {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.last_cd2c {
    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);
}

.column_691e {
    list-style: none;
}

.column_691e li {
    margin-bottom: 0.75rem;
}

.column_691e a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.column_691e a:hover {
    color: white;
}

.media_smooth_4c0a {
    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;
}

.red_9f88 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.red_9f88 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.image-726a {
    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);
}

.detail_4931 {
    text-align: right;
}

@media (max-width: 767px) {
    .detail_4931 {
        text-align: center;
        width: 100%;
    }
}

.detail_4931 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.next-cc42 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.logo-d1ae {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.gas-da3b,
.large_39f0,
.detail_d4dc,
.badge-dd11,
.info_gas_652e,
.element-focused-df36,
.sort_963e,
.block-7afb,
.secondary-basic-69b3,
.tag_new_9c13 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .simple_5fe3 {
        font-size: 1.75rem;
    }
    
    .message-555b {
        font-size: 1rem;
    }
    
    .banner_379c {
        flex-direction: column;
    }
    
    .hard_4b57 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .hover-2e1c {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter_hot_c95f {
        max-width: 100%;
    }
    
    .tooltip_purple_62f9 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .logo-d1ae {
        padding: 0 1rem;
    }
    
    .solid-4e7f {
        padding: 4rem 1rem 3rem;
    }
    
    .solid-4e7f h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .footer_silver_42dc {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .active-9b25 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .grid-64c8,
    .panel_926f {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .image-up-a42d {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .slow_5157 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .narrow_4298 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .solid-4e7f h1 {
        font-size: 1.5rem;
    }
    
    .active-9b25 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .red-4547 {
        padding: 0.75rem;
    }
    
    .breadcrumb-east-96cf {
        font-size: 1.5rem;
    }
    
    .image-up-a42d {
        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 */
.filter_hot_c95f:hover,
.smooth-ce2d:hover,
.next-badb:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .badge-dd11,
    .sort_963e,
    .block-7afb {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.paragraph-d871)
   ======================================== */

.in-955b.focus-fcd7 {
    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;
}

.in-955b.focus-fcd7 .stone_ca2b {
    color: #334155;
}

.in-955b.focus-fcd7 .stone_ca2b:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.in-955b.focus-fcd7 .stone_ca2b.fn-active-0be0 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.in-955b.focus-fcd7 .stone_c0be {
    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);
}

.in-955b.focus-fcd7 .stone_c0be::before {
    border-bottom-color: #ffffff;
}

.in-955b.focus-fcd7 .hidden-d03d {
    color: #475569;
}

.in-955b.focus-fcd7 .hidden-d03d::before {
    background: #818cf8;
}

.in-955b.focus-fcd7 .hidden-d03d:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.in-955b.focus-fcd7 .hidden-d03d:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.in-955b.focus-fcd7 .dynamic-2360 {
    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);
}

.in-955b.focus-fcd7 .dynamic-2360:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.in-955b.focus-fcd7 .dynamic-2360 span {
    background: #475569;
    box-shadow: none;
}

.in-955b.focus-fcd7 .dynamic-2360.fn-active-0be0 span:nth-child(1),
.in-955b.focus-fcd7 .dynamic-2360.fn-active-0be0 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .in-955b.focus-fcd7 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .in-955b.focus-fcd7 .secondary_a068 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .in-955b.focus-fcd7 .secondary_a068 span {
        color: #334155 !important;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 {
        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);
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .stone_ca2b {
        color: #334155;
        text-shadow: none;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .stone_ca2b:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .stone_ca2b.paper-040f::after {
        color: #64748b;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .stone_c0be {
        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) */
    .in-955b.focus-fcd7 .dropdown-silver-7343 .header_paper_1596.fn-active-0be0 .stone_c0be {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .hidden-d03d {
        color: #475569;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .hidden-d03d::before {
        color: #6366f1;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .hidden-d03d:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .hidden-d03d:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .in-955b.focus-fcd7 .dropdown-silver-7343 .hidden-d03d:hover::before {
        color: #4f46e5;
    }
}

/* apk.block-purple-f7c3 — mesmo tema claro da home; blocos extras */
body.summary_tall_5234 {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary_tall_5234 .red_f2a6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary_tall_5234 .up-9bac {
    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);
}

.summary_tall_5234 .up-9bac p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary_tall_5234 .up-9bac p:last-child {
    margin-bottom: 0;
}

.summary_tall_5234 .up-9bac strong {
    color: var(--text-primary);
}

.summary_tall_5234 .dirty-d8cb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary_tall_5234 .dirty-d8cb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.badge-8909 {
    background: #f8f9fa;
    color: #2c3e50;
}

.badge-8909 .list-e5ea {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.badge-8909 .row-south-c11d {
    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);
}

.badge-8909 .row-south-c11d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge-8909 .row-south-c11d p:last-child {
    margin-bottom: 0;
}

.badge-8909 .row-south-c11d strong {
    color: var(--text-primary);
}

.badge-8909 .article-66a8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.badge-8909 .article-66a8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dim_f68f {
    background: #f8f9fa;
    color: #2c3e50;
}

.dim_f68f .feature-right-de11 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dim_f68f .logo-b0ee {
    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);
}

.dim_f68f .logo-b0ee p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dim_f68f .logo-b0ee p:last-child {
    margin-bottom: 0;
}

.dim_f68f .logo-b0ee strong {
    color: var(--text-primary);
}

.dim_f68f .tertiary_2ba5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dim_f68f .tertiary_2ba5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.content-brown-a7af {
    background: #f8f9fa;
    color: #2c3e50;
}

.content-brown-a7af .right-361d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content-brown-a7af .action-8881 {
    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);
}

.content-brown-a7af .action-8881 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content-brown-a7af .action-8881 p:last-child {
    margin-bottom: 0;
}

.content-brown-a7af .action-8881 strong {
    color: var(--text-primary);
}

.content-brown-a7af .column-large-5409 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content-brown-a7af .column-large-5409 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_c9a9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outer_c9a9 .gold-a94c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outer_c9a9 .item-advanced-206c {
    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_c9a9 .item-advanced-206c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outer_c9a9 .item-advanced-206c p:last-child {
    margin-bottom: 0;
}

.outer_c9a9 .item-advanced-206c strong {
    color: var(--text-primary);
}

.outer_c9a9 .active-e411 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outer_c9a9 .active-e411 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.container_75af {
    background: #f8f9fa;
    color: #2c3e50;
}

.container_75af .content_6fe6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.container_75af .dim_ee71 {
    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);
}

.container_75af .dim_ee71 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.container_75af .dim_ee71 p:last-child {
    margin-bottom: 0;
}

.container_75af .dim_ee71 strong {
    color: var(--text-primary);
}

.container_75af .preview_dynamic_2fb9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.container_75af .preview_dynamic_2fb9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.frame-adec {
    background: #f8f9fa;
    color: #2c3e50;
}

.frame-adec .surface_selected_a4eb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.frame-adec .grid_387a {
    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);
}

.frame-adec .grid_387a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame-adec .grid_387a p:last-child {
    margin-bottom: 0;
}

.frame-adec .grid_387a strong {
    color: var(--text-primary);
}

.frame-adec .brown-cec2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.frame-adec .brown-cec2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sidebar_soft_b5a9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.sidebar_soft_b5a9 .slider_north_513b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sidebar_soft_b5a9 .carousel_6b0a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.sidebar_soft_b5a9 .carousel_6b0a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar_soft_b5a9 .carousel_6b0a p:last-child {
    margin-bottom: 0;
}

.sidebar_soft_b5a9 .carousel_6b0a strong {
    color: var(--text-primary);
}

.sidebar_soft_b5a9 .badge-3970 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sidebar_soft_b5a9 .badge-3970 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.detail-5bb0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.detail-5bb0 .overlay-0665 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.detail-5bb0 .pink-1247 {
    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);
}

.detail-5bb0 .pink-1247 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail-5bb0 .pink-1247 p:last-child {
    margin-bottom: 0;
}

.detail-5bb0 .pink-1247 strong {
    color: var(--text-primary);
}

.detail-5bb0 .content-dark-3f5c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.detail-5bb0 .content-dark-3f5c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gold-f207 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gold-f207 .active_bebc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gold-f207 .photo_current_1fc5 {
    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);
}

.gold-f207 .photo_current_1fc5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gold-f207 .photo_current_1fc5 p:last-child {
    margin-bottom: 0;
}

.gold-f207 .photo_current_1fc5 strong {
    color: var(--text-primary);
}

.gold-f207 .gallery-9534 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gold-f207 .gallery-9534 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.component-new-174d {
    background: #f8f9fa;
    color: #2c3e50;
}

.component-new-174d .detail_c4f3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.component-new-174d .mask_bronze_9ec2 {
    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);
}

.component-new-174d .mask_bronze_9ec2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.component-new-174d .mask_bronze_9ec2 p:last-child {
    margin-bottom: 0;
}

.component-new-174d .mask_bronze_9ec2 strong {
    color: var(--text-primary);
}

.component-new-174d .footer-7ab2 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.component-new-174d .footer-7ab2 li {
    margin-bottom: 0.65rem;
}

.component-new-174d .footer-7ab2 li:last-child {
    margin-bottom: 0;
}

.component-new-174d .grid-orange-c0f7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.component-new-174d .grid-orange-c0f7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shadow_5ae0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow_5ae0 .highlight-5b2a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow_5ae0 .tabs-gas-a19f {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.shadow_5ae0 .tabs-gas-a19f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow_5ae0 .tabs-gas-a19f p:last-child {
    margin-bottom: 0;
}

.shadow_5ae0 .tabs-gas-a19f strong {
    color: var(--text-primary);
}

.shadow_5ae0 .solid-72dc {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow_5ae0 .solid-72dc li {
    margin-bottom: 0.65rem;
}

.shadow_5ae0 .solid-72dc li:last-child {
    margin-bottom: 0;
}

.shadow_5ae0 .active_02f8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shadow_5ae0 .active_02f8 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_f7ec {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper_f7ec .primary_0ac3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper_f7ec .label_9be9 {
    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_f7ec .label_9be9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_f7ec .label_9be9 p:last-child {
    margin-bottom: 0;
}

.wrapper_f7ec .label_9be9 strong {
    color: var(--text-primary);
}

.wrapper_f7ec .hard_6ed1 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_f7ec .hard_6ed1 li {
    margin-bottom: 0.65rem;
}

.wrapper_f7ec .hard_6ed1 li:last-child {
    margin-bottom: 0;
}

.wrapper_f7ec .tag_light_3c03 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper_f7ec .tag_light_3c03 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.surface-selected-b047 {
    background: #f8f9fa;
    color: #2c3e50;
}

.surface-selected-b047 .slider-714f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.surface-selected-b047 .carousel-32df {
    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);
}

.surface-selected-b047 .carousel-32df p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.surface-selected-b047 .carousel-32df p:last-child {
    margin-bottom: 0;
}

.surface-selected-b047 .carousel-32df strong {
    color: var(--text-primary);
}

.surface-selected-b047 .pattern_7aac {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.surface-selected-b047 .pattern_7aac li {
    margin-bottom: 0.65rem;
}

.surface-selected-b047 .pattern_7aac li:last-child {
    margin-bottom: 0;
}

body.orange_bd18 {
    background: #f8f9fa;
    color: #2c3e50;
}

.orange_bd18 .center-bf79 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.orange_bd18 .tag-new-f9a6 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.orange_bd18 .tag-new-f9a6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.orange_bd18 .tag-new-f9a6 p:last-child {
    margin-bottom: 0;
}

.orange_bd18 .tag-new-f9a6 strong {
    color: var(--text-primary);
}

.orange_bd18 .photo-gas-09e0 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.orange_bd18 .photo-gas-09e0 li {
    margin-bottom: 0.65rem;
}

.orange_bd18 .photo-gas-09e0 li:last-child {
    margin-bottom: 0;
}

.orange_bd18 .frame-mini-0e13 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.orange_bd18 .frame-mini-0e13 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.container_bronze_b82f {
    background: #f8f9fa;
    color: #2c3e50;
}

.container_bronze_b82f .bright_b1ca {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.container_bronze_b82f .container-new-8cc2 {
    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);
}

.container_bronze_b82f .container-new-8cc2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.container_bronze_b82f .container-new-8cc2 p:last-child {
    margin-bottom: 0;
}

.container_bronze_b82f .container-new-8cc2 strong {
    color: var(--text-primary);
}

.container_bronze_b82f .fast_675c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.container_bronze_b82f .fast_675c li {
    margin-bottom: 0.65rem;
}

.container_bronze_b82f .fast_675c li:last-child {
    margin-bottom: 0;
}

.container_bronze_b82f .paragraph_iron_ac07 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.container_bronze_b82f .paragraph_iron_ac07 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_702d {
    background: #f8f9fa;
    color: #2c3e50;
}

.prev_702d .feature-rough-af88 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.prev_702d .message_current_4d5d {
    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_702d .message_current_4d5d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prev_702d .message_current_4d5d p:last-child {
    margin-bottom: 0;
}

.prev_702d .message_current_4d5d strong {
    color: var(--text-primary);
}

.prev_702d .logo_stone_3e98 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.prev_702d .logo_stone_3e98 li {
    margin-bottom: 0.65rem;
}

.prev_702d .logo_stone_3e98 li:last-child {
    margin-bottom: 0;
}

.prev_702d .box-08ba {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.prev_702d .box-08ba img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.border-c20f {
    background: #f8f9fa;
    color: #2c3e50;
}

.border-c20f .button-dirty-1c46 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.border-c20f .full-89b0 {
    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);
}

.border-c20f .full-89b0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border-c20f .full-89b0 p:last-child {
    margin-bottom: 0;
}

.border-c20f .full-89b0 strong {
    color: var(--text-primary);
}

.border-c20f .pattern-yellow-8df6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border-c20f .pattern-yellow-8df6 li {
    margin-bottom: 0.65rem;
}

.border-c20f .pattern-yellow-8df6 li:last-child {
    margin-bottom: 0;
}

.border-c20f .active_7c8e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.border-c20f .active_7c8e 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: 3a83 */
.ghost-box-i6 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
