/* 
 * 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.content-pro-23e3) — fixed together on mobile */
.gradient_99a8 {
    width: 100%;
}

.widget_copper_e7a4 {
    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) {
    .gradient_99a8 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .widget_copper_e7a4 {
        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.list_4b7c. Conta) stay reachable.
     */
    .cold-c3f8 .article-fluid-6d25 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .gradient_99a8 .cold-c3f8 > .article-fluid-6d25 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .gradient_99a8:has(.static_3fa7.fn-show-635b) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .gradient_99a8:has(.static_3fa7.fn-show-635b) .widget_copper_e7a4 {
        flex-shrink: 0;
    }

    .gradient_99a8:has(.static_3fa7.fn-show-635b) .cold-c3f8 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .gradient_99a8:has(.static_3fa7.fn-show-635b) .cold-c3f8 > .article-fluid-6d25 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .gradient_99a8:has(.static_3fa7.fn-show-635b) .disabled_brown_d167 {
        flex-shrink: 0;
    }

    .gradient_99a8:has(.static_3fa7.fn-show-635b) .static_3fa7.fn-show-635b {
        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 */
    .cold-c3f8 .static_3fa7 .stone_a4ad.fn-active-635b .narrow_df3d {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .widget_copper_e7a4 {
        position: sticky;
        top: 0;
    }
}

.gradient_99a8.accordion_da12,
.gradient_99a8.accordion_da12 .widget_copper_e7a4 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lite_83e3 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .lite_83e3 {
        padding: 0.75rem 0;
    }
}

.description_ba06 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.column-9a49 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .column-9a49 img {
        height: 35px;
    }
}

/* .cold-c3f8 / .image-fd26 — inner pages (brown bar); index uses .element-3c8b below */

.cold-c3f8:not(.element-3c8b) .image-fd26.fn-active-635b {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.video_full_9fec {
    display: flex;
    gap: var(--spacing-md);
}

.list-basic-46b8,
.complex_810e {
    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) {
    .list-basic-46b8,
    .complex_810e {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .video_full_9fec {
        gap: 0.5rem;
    }
}

.list-basic-46b8 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.list-basic-46b8:hover {
    background: var(--primary-purple);
    color: white;
}

.complex_810e {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.complex_810e:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.widget-light-cb26 {
    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%;
}

.widget-light-cb26::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;
}

.widget-light-cb26::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;
}

.message_5916 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.progress_4434 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.progress_4434 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);
}

.widget-light-cb26 h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.outline-bdf9 {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.outline-bdf9 strong {
    font-weight: 700;
}

.secondary-top-da6f {
    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);
}

.current_df09 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.caption-e058 {
    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);
}

.caption-e058:hover {
    transform: translateY(-4px);
}

.sidebar-379f {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.pattern-lite-e5f7 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.frame-steel-df94 {
    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;
}

.frame-steel-df94:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.frame-steel-df94.layout_8ce1 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.popup-22f2 {
    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);
}

.popup-22f2:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.image-smooth-2109 {
    padding: 3rem 1.25rem;
    background: white;
}

.hidden_dynamic_e43d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom_4681 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.bottom_4681:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bottom_4681 img {
    margin-bottom: 1rem;
}

.row_5242 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.bottom_4681 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bottom_4681 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 */
.hero-glass-01a5 {
    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);
}

.box_east_66d7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.sidebar_first_245f {
    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);
}

.sidebar_first_245f h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.sidebar_first_245f p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.sidebar_first_245f a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.progress-in-188c {
    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
   ======================================== */

.hidden-current-0ab5 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.progress-f2d6 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.over-0580 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.photo-current-e76a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.notice_tiny_70ef {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.notice_tiny_70ef:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.notice_tiny_70ef.easy-70d0 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.notice_tiny_70ef.easy-70d0 h3,
.notice_tiny_70ef.easy-70d0 p {
    color: white;
}

.notice_15b2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.notice_tiny_70ef h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.notice_tiny_70ef p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gold_d149 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.gold_d149:hover {
    gap: 0.75rem;
}

.notice_tiny_70ef.easy-70d0 .gold_d149 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.sort_5b90 {
    padding: 4rem 1.25rem;
    background: white;
}

.menu-focused-580b {
    text-align: center;
    margin-bottom: 3rem;
}

.column_5b5f {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.layout_3b11 {
    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%;
}

.layout_3b11:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.highlight-2fcd {
    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);
}

.lower-b876 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.active-152a {
    padding: 1.5rem;
}

.active-152a h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.chip-869f {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.active_81db {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.under_1305,
.icon-aca3 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.under_1305 {
    background: #dcfce7;
    color: #166534;
}

.under_1305.nav_inner_5630 {
    background: #10b981;
    color: white;
}

.icon-aca3 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.icon-aca3.footer-007d {
    background: #fee2e2;
    color: #991b1b;
}

.icon-aca3.fluid-cf87 {
    background: #fef3c7;
    color: #92400e;
}

.icon-aca3.status_cbf4 {
    background: #dcfce7;
    color: #166534;
}

.sidebar_copper_757c {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.sidebar_copper_757c strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.hero-0f87 {
    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);
}

.hero-0f87:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.button_steel_66df {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.simple_33c9 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.photo-5c27 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .photo-5c27 {
        grid-template-columns: 1fr 1fr;
    }
}

.cold-caec img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.tertiary_medium_9122 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.table_green_1e6b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.content-bf3e {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pressed-adf3 {
    font-size: 1rem;
    opacity: 0.9;
}

.tertiary_medium_9122 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.simple_5f8c {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.simple_5f8c li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.simple_5f8c 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;
}

.simple_5f8c li strong {
    color: var(--primary-purple);
}

.simple_5f8c li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.under_3421 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.progress_small_68ff {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.wrapper-8bc1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.progress_small_68ff .pattern-lite-e5f7 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.text_2155 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.over-f4da {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.over-f4da a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.panel-e9c5 {
    padding: 4rem 1.25rem;
    background: white;
}

.list-down-5488 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .list-down-5488 {
        grid-template-columns: 1fr 1fr;
    }
}

.disabled-right-6b51 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.fluid_d164 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.form_d8ba {
    margin-bottom: 1.5rem;
}

.small-9ea0 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.backdrop_light_68d1 {
    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);
}

.label_tiny_00b0 {
    white-space: nowrap;
}

.stone-b0dc {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.box-773a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.caption_73b6 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.caption_73b6:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.active-9b63 {
    font-size: 2rem;
    flex-shrink: 0;
}

.top_9e51 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.top_9e51 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.sort_69dc {
    margin-top: 3rem;
}

.sort_69dc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.label_12fc {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.label_12fc thead {
    background: var(--primary-purple);
    color: white;
}

.label_12fc th,
.label_12fc td {
    padding: 1rem;
    text-align: left;
}

.label_12fc th {
    font-weight: 700;
    font-size: 0.9rem;
}

.label_12fc tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.label_12fc tbody tr:last-child {
    border-bottom: none;
}

.label_12fc tbody tr:hover {
    background: var(--light-bg);
}

.text-2c1f {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.progress_efa7 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.texture-black-3c0e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prev_4b7d {
    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);
}

.prev_4b7d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.prev_4b7d.feature-3938::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;
}

.border-4a07 {
    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;
}

.notification-eb53 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.hero-hard-850b h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stone_99b9 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hard-c157 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.hard-c157 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.hard-c157 p:last-child {
    margin-bottom: 0;
}

.hard-c157 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hidden_a9c3 {
    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;
}

.preview-07a6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cold_e688 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.cold_e688 .sidebar-379f {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.cold_e688 .pattern-lite-e5f7 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.active-e39b {
    padding: 4rem 1.25rem;
    background: white;
}

.picture_stale_8bc1 {
    max-width: 900px;
    margin: 0 auto;
}

.hard-95ca {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.hard-95ca:hover {
    border-color: var(--primary-purple);
}

.hard-95ca[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.hard-95ca 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;
}

.hard-95ca summary::-webkit-details-marker {
    display: none;
}

.hard-95ca summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.hard-95ca[open] summary::after {
    transform: rotate(45deg);
}

.pink_c7e3 {
    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);
    }
}

.pink_c7e3 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pink_c7e3 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.pink_c7e3 ul,
.pink_c7e3 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.pink_c7e3 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pink_c7e3 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.module_fixed_1ef5 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.card-bef1 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.card-bef1 th,
.card-bef1 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.card-bef1 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.middle_0abd {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.description-9407 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.breadcrumb_20a6 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .breadcrumb_20a6 {
        flex-direction: column;
        text-align: center;
    }
}

.breadcrumb_20a6 img {
    flex-shrink: 0;
}

.accordion-ac2a {
    font-size: 4rem;
    flex-shrink: 0;
}

.current_b8f3 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.current_b8f3 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.progress_4970 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.dirty-83ce {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.block-small-8ceb h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.block-small-8ceb > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.last-faef {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.picture_basic_cd54 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.popup-8b1f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.down_7199 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.down_7199 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.tall-ca5f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-prev-9bce {
    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);
}

.medium_8f0c {
    list-style: none;
}

.medium_8f0c li {
    margin-bottom: 0.75rem;
}

.medium_8f0c a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.medium_8f0c a:hover {
    color: white;
}

.wrapper-c45c {
    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;
}

.caption_5897 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.caption_5897 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.fresh-9409 {
    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);
}

.box_clean_9f59 {
    text-align: right;
}

@media (max-width: 767px) {
    .box_clean_9f59 {
        text-align: center;
        width: 100%;
    }
}

.box_clean_9f59 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.info_rough_e038 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.article-fluid-6d25 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.image-smooth-2109,
.hero-glass-01a5,
.hidden-current-0ab5,
.sort_5b90,
.simple_33c9,
.panel-e9c5,
.progress_efa7,
.active-e39b,
.description-9407,
.dirty-83ce {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .progress-f2d6 {
        font-size: 1.75rem;
    }
    
    .over-0580 {
        font-size: 1rem;
    }
    
    .under_3421 {
        flex-direction: column;
    }
    
    .list-down-5488 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .column_5b5f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .layout_3b11 {
        max-width: 100%;
    }
    
    .lower-b876 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .article-fluid-6d25 {
        padding: 0 1rem;
    }
    
    .widget-light-cb26 {
        padding: 4rem 1rem 3rem;
    }
    
    .widget-light-cb26 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .frame-steel-df94 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .current_df09 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .label_12fc,
    .card-bef1 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .hidden_dynamic_e43d {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .photo-current-e76a {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .texture-black-3c0e {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .widget-light-cb26 h1 {
        font-size: 1.5rem;
    }
    
    .current_df09 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .caption-e058 {
        padding: 0.75rem;
    }
    
    .sidebar-379f {
        font-size: 1.5rem;
    }
    
    .hidden_dynamic_e43d {
        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 */
.layout_3b11:hover,
.notice_tiny_70ef:hover,
.prev_4b7d:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .sort_5b90,
    .progress_efa7,
    .active-e39b {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.content-pro-23e3)
   ======================================== */

.cold-c3f8.element-3c8b {
    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;
}

.cold-c3f8.element-3c8b .image-fd26 {
    color: #334155;
}

.cold-c3f8.element-3c8b .image-fd26:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.cold-c3f8.element-3c8b .image-fd26.fn-active-635b {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.cold-c3f8.element-3c8b .narrow_df3d {
    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);
}

.cold-c3f8.element-3c8b .narrow_df3d::before {
    border-bottom-color: #ffffff;
}

.cold-c3f8.element-3c8b .bottom_8873 {
    color: #475569;
}

.cold-c3f8.element-3c8b .bottom_8873::before {
    background: #818cf8;
}

.cold-c3f8.element-3c8b .bottom_8873:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.cold-c3f8.element-3c8b .bottom_8873:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.cold-c3f8.element-3c8b .thumbnail-bc50 {
    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);
}

.cold-c3f8.element-3c8b .thumbnail-bc50:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.cold-c3f8.element-3c8b .thumbnail-bc50 span {
    background: #475569;
    box-shadow: none;
}

.cold-c3f8.element-3c8b .thumbnail-bc50.fn-active-635b span:nth-child(1),
.cold-c3f8.element-3c8b .thumbnail-bc50.fn-active-635b span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .cold-c3f8.element-3c8b {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .cold-c3f8.element-3c8b .disabled_brown_d167 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .cold-c3f8.element-3c8b .disabled_brown_d167 span {
        color: #334155 !important;
    }

    .cold-c3f8.element-3c8b .static_3fa7 {
        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);
    }

    .cold-c3f8.element-3c8b .static_3fa7 .image-fd26 {
        color: #334155;
        text-shadow: none;
    }

    .cold-c3f8.element-3c8b .static_3fa7 .image-fd26:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .cold-c3f8.element-3c8b .static_3fa7 .image-fd26.mini_375e::after {
        color: #64748b;
    }

    .cold-c3f8.element-3c8b .static_3fa7 .narrow_df3d {
        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) */
    .cold-c3f8.element-3c8b .static_3fa7 .stone_a4ad.fn-active-635b .narrow_df3d {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .cold-c3f8.element-3c8b .static_3fa7 .bottom_8873 {
        color: #475569;
    }

    .cold-c3f8.element-3c8b .static_3fa7 .bottom_8873::before {
        color: #6366f1;
    }

    .cold-c3f8.element-3c8b .static_3fa7 .bottom_8873:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .cold-c3f8.element-3c8b .static_3fa7 .bottom_8873:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .cold-c3f8.element-3c8b .static_3fa7 .bottom_8873:hover::before {
        color: #4f46e5;
    }
}

/* apk.plasma-f6ab — mesmo tema claro da home; blocos extras */
body.row-8d9c {
    background: #f8f9fa;
    color: #2c3e50;
}

.row-8d9c .next_2af7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.row-8d9c .dirty_5275 {
    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);
}

.row-8d9c .dirty_5275 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.row-8d9c .dirty_5275 p:last-child {
    margin-bottom: 0;
}

.row-8d9c .dirty_5275 strong {
    color: var(--text-primary);
}

.row-8d9c .footer_stone_5ee8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.row-8d9c .footer_stone_5ee8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.menu_current_4f96 {
    background: #f8f9fa;
    color: #2c3e50;
}

.menu_current_4f96 .modal_west_d2e4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.menu_current_4f96 .black_d76c {
    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);
}

.menu_current_4f96 .black_d76c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.menu_current_4f96 .black_d76c p:last-child {
    margin-bottom: 0;
}

.menu_current_4f96 .black_d76c strong {
    color: var(--text-primary);
}

.menu_current_4f96 .complex-c0c2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.menu_current_4f96 .complex-c0c2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hovered-3f18 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hovered-3f18 .outline-e1f2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hovered-3f18 .dirty-60ce {
    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);
}

.hovered-3f18 .dirty-60ce p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hovered-3f18 .dirty-60ce p:last-child {
    margin-bottom: 0;
}

.hovered-3f18 .dirty-60ce strong {
    color: var(--text-primary);
}

.hovered-3f18 .active-mini-937b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hovered-3f18 .active-mini-937b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.highlight_50f5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.highlight_50f5 .alert-mini-b35d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.highlight_50f5 .box_slow_4a4e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.highlight_50f5 .box_slow_4a4e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.highlight_50f5 .box_slow_4a4e p:last-child {
    margin-bottom: 0;
}

.highlight_50f5 .box_slow_4a4e strong {
    color: var(--text-primary);
}

.highlight_50f5 .tooltip_left_8a92 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.highlight_50f5 .tooltip_left_8a92 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.button_a148 {
    background: #f8f9fa;
    color: #2c3e50;
}

.button_a148 .pink_f906 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button_a148 .notification_iron_06a6 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.button_a148 .notification_iron_06a6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button_a148 .notification_iron_06a6 p:last-child {
    margin-bottom: 0;
}

.button_a148 .notification_iron_06a6 strong {
    color: var(--text-primary);
}

.button_a148 .texture_hard_f962 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button_a148 .texture_hard_f962 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.slow-f22e {
    background: #f8f9fa;
    color: #2c3e50;
}

.slow-f22e .under-72d8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slow-f22e .advanced_c4ad {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.slow-f22e .advanced_c4ad p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow-f22e .advanced_c4ad p:last-child {
    margin-bottom: 0;
}

.slow-f22e .advanced_c4ad strong {
    color: var(--text-primary);
}

.slow-f22e .alert_dark_7430 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slow-f22e .alert_dark_7430 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.static-c0e3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.static-c0e3 .wrapper_black_a496 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.static-c0e3 .advanced_4355 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.static-c0e3 .advanced_4355 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-c0e3 .advanced_4355 p:last-child {
    margin-bottom: 0;
}

.static-c0e3 .advanced_4355 strong {
    color: var(--text-primary);
}

.static-c0e3 .hover-29ad {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.static-c0e3 .hover-29ad img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.article-495f {
    background: #f8f9fa;
    color: #2c3e50;
}

.article-495f .content-2277 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.article-495f .component_3a45 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.article-495f .component_3a45 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.article-495f .component_3a45 p:last-child {
    margin-bottom: 0;
}

.article-495f .component_3a45 strong {
    color: var(--text-primary);
}

.article-495f .table-2d7f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.article-495f .table-2d7f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.module_inner_3a13 {
    background: #f8f9fa;
    color: #2c3e50;
}

.module_inner_3a13 .focus_easy_31b7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.module_inner_3a13 .heading_ed42 {
    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);
}

.module_inner_3a13 .heading_ed42 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module_inner_3a13 .heading_ed42 p:last-child {
    margin-bottom: 0;
}

.module_inner_3a13 .heading_ed42 strong {
    color: var(--text-primary);
}

.module_inner_3a13 .modal_eb30 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.module_inner_3a13 .modal_eb30 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.aside-c37b {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside-c37b .icon-b378 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside-c37b .backdrop-in-5fe5 {
    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);
}

.aside-c37b .backdrop-in-5fe5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-c37b .backdrop-in-5fe5 p:last-child {
    margin-bottom: 0;
}

.aside-c37b .backdrop-in-5fe5 strong {
    color: var(--text-primary);
}

.aside-c37b .pattern_d81a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.aside-c37b .pattern_d81a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.copper-f747 {
    background: #f8f9fa;
    color: #2c3e50;
}

.copper-f747 .paragraph_78e0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.copper-f747 .caption-12e0 {
    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);
}

.copper-f747 .caption-12e0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.copper-f747 .caption-12e0 p:last-child {
    margin-bottom: 0;
}

.copper-f747 .caption-12e0 strong {
    color: var(--text-primary);
}

.copper-f747 .overlay_2077 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.copper-f747 .overlay_2077 li {
    margin-bottom: 0.65rem;
}

.copper-f747 .overlay_2077 li:last-child {
    margin-bottom: 0;
}

.copper-f747 .form-green-50bc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.copper-f747 .form-green-50bc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.soft_b610 {
    background: #f8f9fa;
    color: #2c3e50;
}

.soft_b610 .input_162e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.soft_b610 .chip_easy_77f9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.soft_b610 .chip_easy_77f9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft_b610 .chip_easy_77f9 p:last-child {
    margin-bottom: 0;
}

.soft_b610 .chip_easy_77f9 strong {
    color: var(--text-primary);
}

.soft_b610 .description-iron-a822 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft_b610 .description-iron-a822 li {
    margin-bottom: 0.65rem;
}

.soft_b610 .description-iron-a822 li:last-child {
    margin-bottom: 0;
}

.soft_b610 .tooltip_selected_ca78 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.soft_b610 .tooltip_selected_ca78 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.message_under_9add {
    background: #f8f9fa;
    color: #2c3e50;
}

.message_under_9add .heading_21f3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message_under_9add .info_orange_8977 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.message_under_9add .info_orange_8977 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message_under_9add .info_orange_8977 p:last-child {
    margin-bottom: 0;
}

.message_under_9add .info_orange_8977 strong {
    color: var(--text-primary);
}

.message_under_9add .icon-black-3888 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message_under_9add .icon-black-3888 li {
    margin-bottom: 0.65rem;
}

.message_under_9add .icon-black-3888 li:last-child {
    margin-bottom: 0;
}

.message_under_9add .hover-hard-d217 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message_under_9add .hover-hard-d217 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.description_305b {
    background: #f8f9fa;
    color: #2c3e50;
}

.description_305b .frame_1dc8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description_305b .up_7650 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.description_305b .up_7650 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description_305b .up_7650 p:last-child {
    margin-bottom: 0;
}

.description_305b .up_7650 strong {
    color: var(--text-primary);
}

.description_305b .medium-ea07 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description_305b .medium-ea07 li {
    margin-bottom: 0.65rem;
}

.description_305b .medium-ea07 li:last-child {
    margin-bottom: 0;
}

body.section_60ec {
    background: #f8f9fa;
    color: #2c3e50;
}

.section_60ec .background-7a1c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.section_60ec .gallery_5f10 {
    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_60ec .gallery_5f10 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_60ec .gallery_5f10 p:last-child {
    margin-bottom: 0;
}

.section_60ec .gallery_5f10 strong {
    color: var(--text-primary);
}

.section_60ec .lower_d6c5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_60ec .lower_d6c5 li {
    margin-bottom: 0.65rem;
}

.section_60ec .lower_d6c5 li:last-child {
    margin-bottom: 0;
}

.section_60ec .grid-next-af5f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.section_60ec .grid-next-af5f 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-07b6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.mask-07b6 .banner_active_f14d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.mask-07b6 .backdrop_569d {
    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-07b6 .backdrop_569d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mask-07b6 .backdrop_569d p:last-child {
    margin-bottom: 0;
}

.mask-07b6 .backdrop_569d strong {
    color: var(--text-primary);
}

.mask-07b6 .hidden-rough-c829 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mask-07b6 .hidden-rough-c829 li {
    margin-bottom: 0.65rem;
}

.mask-07b6 .hidden-rough-c829 li:last-child {
    margin-bottom: 0;
}

.mask-07b6 .red_45b0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.mask-07b6 .red_45b0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hot_880d {
    background: #f8f9fa;
    color: #2c3e50;
}

.hot_880d .info-hovered-0616 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hot_880d .slider_7a7c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.hot_880d .slider_7a7c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hot_880d .slider_7a7c p:last-child {
    margin-bottom: 0;
}

.hot_880d .slider_7a7c strong {
    color: var(--text-primary);
}

.hot_880d .bright_8852 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hot_880d .bright_8852 li {
    margin-bottom: 0.65rem;
}

.hot_880d .bright_8852 li:last-child {
    margin-bottom: 0;
}

.hot_880d .static-ae6c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hot_880d .static-ae6c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.column_huge_7ff2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.column_huge_7ff2 .outline-easy-4357 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.column_huge_7ff2 .table-f056 {
    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);
}

.column_huge_7ff2 .table-f056 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.column_huge_7ff2 .table-f056 p:last-child {
    margin-bottom: 0;
}

.column_huge_7ff2 .table-f056 strong {
    color: var(--text-primary);
}

.column_huge_7ff2 .info-clean-3bdb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.column_huge_7ff2 .info-clean-3bdb li {
    margin-bottom: 0.65rem;
}

.column_huge_7ff2 .info-clean-3bdb li:last-child {
    margin-bottom: 0;
}

.column_huge_7ff2 .short-8025 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.column_huge_7ff2 .short-8025 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: 964f */
.phantom-card-p5 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
