/* 
 * 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.shadow_paper_200a) — fixed together on mobile */
.module-new-addd {
    width: 100%;
}

.tooltip_liquid_45e7 {
    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) {
    .module-new-addd {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .tooltip_liquid_45e7 {
        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.orange-1a82. Conta) stay reachable.
     */
    .grid_88ef .header-focused-46a1 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .module-new-addd .grid_88ef > .header-focused-46a1 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .module-new-addd:has(.table_fresh_2ba5.fn-show-1d2f) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .module-new-addd:has(.table_fresh_2ba5.fn-show-1d2f) .tooltip_liquid_45e7 {
        flex-shrink: 0;
    }

    .module-new-addd:has(.table_fresh_2ba5.fn-show-1d2f) .grid_88ef {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .module-new-addd:has(.table_fresh_2ba5.fn-show-1d2f) .grid_88ef > .header-focused-46a1 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .module-new-addd:has(.table_fresh_2ba5.fn-show-1d2f) .heading_816b {
        flex-shrink: 0;
    }

    .module-new-addd:has(.table_fresh_2ba5.fn-show-1d2f) .table_fresh_2ba5.fn-show-1d2f {
        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 */
    .grid_88ef .table_fresh_2ba5 .element-6a75.fn-active-1d2f .box-b464 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .tooltip_liquid_45e7 {
        position: sticky;
        top: 0;
    }
}

.module-new-addd.border-dynamic-3f97,
.module-new-addd.border-dynamic-3f97 .tooltip_liquid_45e7 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.preview-brown-2f96 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .preview-brown-2f96 {
        padding: 0.75rem 0;
    }
}

.status-small-4561 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.element-in-200a img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .element-in-200a img {
        height: 35px;
    }
}

/* .grid_88ef / .shade-7230 — inner pages (brown bar); index uses .out_d4c8 below */

.grid_88ef:not(.out_d4c8) .shade-7230.fn-active-1d2f {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.focus_complex_2670 {
    display: flex;
    gap: var(--spacing-md);
}

.thumbnail_93bc,
.south_aaf0 {
    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) {
    .thumbnail_93bc,
    .south_aaf0 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .focus_complex_2670 {
        gap: 0.5rem;
    }
}

.thumbnail_93bc {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.thumbnail_93bc:hover {
    background: var(--primary-purple);
    color: white;
}

.south_aaf0 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.south_aaf0:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.surface_hard_df85 {
    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%;
}

.surface_hard_df85::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;
}

.surface_hard_df85::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;
}

.link_01e1 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.photo_7294 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.photo_7294 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);
}

.surface_hard_df85 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;
}

.alert_0ae6 {
    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;
}

.alert_0ae6 strong {
    font-weight: 700;
}

.gallery_19fd {
    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);
}

.carousel-focused-7c2d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.media_fast_227d {
    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);
}

.media_fast_227d:hover {
    transform: translateY(-4px);
}

.element-d26b {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.wrapper-df77 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.gradient_6b2f {
    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;
}

.gradient_6b2f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.gradient_6b2f.layout_1774 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.logo-under-06d5 {
    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);
}

.logo-under-06d5:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.info_silver_d889 {
    padding: 3rem 1.25rem;
    background: white;
}

.dropdown-blue-6d8c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.chip-silver-b05f {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.chip-silver-b05f:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.chip-silver-b05f img {
    margin-bottom: 1rem;
}

.footer_fixed_4ec4 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.chip-silver-b05f h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chip-silver-b05f 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 */
.logo_d148 {
    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);
}

.element-full-bb6b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tooltip-silver-cd66 {
    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);
}

.tooltip-silver-cd66 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.tooltip-silver-cd66 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.tooltip-silver-cd66 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.texture_23e8 {
    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
   ======================================== */

.blue-2a86 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.west-701c {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.tiny_4a86 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.out_3a7c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fixed-f820 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.fixed-f820:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.fixed-f820.article_82e0 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fixed-f820.article_82e0 h3,
.fixed-f820.article_82e0 p {
    color: white;
}

.hot_3726 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fixed-f820 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.fixed-f820 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notice_c673 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.notice_c673:hover {
    gap: 0.75rem;
}

.fixed-f820.article_82e0 .notice_c673 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.stone-8a56 {
    padding: 4rem 1.25rem;
    background: white;
}

.out_4f94 {
    text-align: center;
    margin-bottom: 3rem;
}

.active_cold_e6ca {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.outline_3bd7 {
    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%;
}

.outline_3bd7:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.next_8d99 {
    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);
}

.slow_d696 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.block-bb49 {
    padding: 1.5rem;
}

.block-bb49 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tabs-current-5b9b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.image_4439 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pagination-1940,
.detail-prev-34fd {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.pagination-1940 {
    background: #dcfce7;
    color: #166534;
}

.pagination-1940.primary_over_9507 {
    background: #10b981;
    color: white;
}

.detail-prev-34fd {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.detail-prev-34fd.sort_3654 {
    background: #fee2e2;
    color: #991b1b;
}

.detail-prev-34fd.active_tiny_c57f {
    background: #fef3c7;
    color: #92400e;
}

.detail-prev-34fd.link_wide_2c95 {
    background: #dcfce7;
    color: #166534;
}

.progress-4e7d {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.progress-4e7d strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.modal-5a8f {
    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);
}

.modal-5a8f:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.active_outer_3a82 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.out-897f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.grid-223c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-223c {
        grid-template-columns: 1fr 1fr;
    }
}

.up-1624 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.dim-40b3 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.sort-ee5c {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.filter-first-d8eb {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.caption_hot_a48c {
    font-size: 1rem;
    opacity: 0.9;
}

.dim-40b3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.preview-4555 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.preview-4555 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.preview-4555 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;
}

.preview-4555 li strong {
    color: var(--primary-purple);
}

.preview-4555 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.accordion-587f {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.header-1090 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.middle_547d {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.header-1090 .wrapper-df77 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.nav-clean-acde p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.cool_6ff0 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.cool_6ff0 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.cool_f8ab {
    padding: 4rem 1.25rem;
    background: white;
}

.container_south_29d1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .container_south_29d1 {
        grid-template-columns: 1fr 1fr;
    }
}

.soft-1be0 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.element_tiny_2e66 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.hover_8738 {
    margin-bottom: 1.5rem;
}

.orange-bbfc {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-green-3032 {
    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);
}

.message_solid_52f1 {
    white-space: nowrap;
}

.wrapper-815f {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.alert-e222 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tertiary_a12b {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.tertiary_a12b:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.icon-a815 {
    font-size: 2rem;
    flex-shrink: 0;
}

.card_upper_2d33 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card_upper_2d33 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.popup_dim_b263 {
    margin-top: 3rem;
}

.popup_dim_b263 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.grid_3bce {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.grid_3bce thead {
    background: var(--primary-purple);
    color: white;
}

.grid_3bce th,
.grid_3bce td {
    padding: 1rem;
    text-align: left;
}

.grid_3bce th {
    font-weight: 700;
    font-size: 0.9rem;
}

.grid_3bce tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.grid_3bce tbody tr:last-child {
    border-bottom: none;
}

.grid_3bce tbody tr:hover {
    background: var(--light-bg);
}

.description_1022 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.article-narrow-ce3a {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hot-3db9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.icon-22b0 {
    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);
}

.icon-22b0:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.icon-22b0.new_28f2::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;
}

.box-49c8 {
    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;
}

.cold-ea98 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.black-8804 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cold_b5ff {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.info-2fc2 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.info-2fc2 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-2fc2 p:last-child {
    margin-bottom: 0;
}

.info-2fc2 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tabs-pink-7552 {
    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;
}

.left-03b3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.red_078d {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.red_078d .element-d26b {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.red_078d .wrapper-df77 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.glass-11d2 {
    padding: 4rem 1.25rem;
    background: white;
}

.hidden_f0db {
    max-width: 900px;
    margin: 0 auto;
}

.link_58a3 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.link_58a3:hover {
    border-color: var(--primary-purple);
}

.link_58a3[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.link_58a3 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;
}

.link_58a3 summary::-webkit-details-marker {
    display: none;
}

.link_58a3 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.link_58a3[open] summary::after {
    transform: rotate(45deg);
}

.cool-6d9f {
    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);
    }
}

.cool-6d9f p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.cool-6d9f h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.cool-6d9f ul,
.cool-6d9f ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.cool-6d9f li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cool-6d9f strong {
    color: var(--text-primary);
    font-weight: 600;
}

.secondary_cool_9cfd {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.menu_up_d0ac {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.menu_up_d0ac th,
.menu_up_d0ac td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.menu_up_d0ac th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.tabs_steel_6e9e {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.tertiary_focused_98a4 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.outline-3bf7 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .outline-3bf7 {
        flex-direction: column;
        text-align: center;
    }
}

.outline-3bf7 img {
    flex-shrink: 0;
}

.alert_de8e {
    font-size: 4rem;
    flex-shrink: 0;
}

.media_aeca h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.media_aeca p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.article-c601 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.hero_smooth_a10a {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.pagination-8416 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.pagination-8416 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.status-a263 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.element-c9af {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.center_6648 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-left-ca58 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.preview-left-ca58 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.top_4b2d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tooltip_f40b {
    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);
}

.block-2b25 {
    list-style: none;
}

.block-2b25 li {
    margin-bottom: 0.75rem;
}

.block-2b25 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.block-2b25 a:hover {
    color: white;
}

.pattern_b94d {
    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;
}

.dynamic-28e2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dynamic-28e2 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.iron-ab0c {
    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);
}

.hard-8150 {
    text-align: right;
}

@media (max-width: 767px) {
    .hard-8150 {
        text-align: center;
        width: 100%;
    }
}

.hard-8150 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.notification-large-4462 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.header-focused-46a1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.info_silver_d889,
.logo_d148,
.blue-2a86,
.stone-8a56,
.out-897f,
.cool_f8ab,
.article-narrow-ce3a,
.glass-11d2,
.tertiary_focused_98a4,
.hero_smooth_a10a {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .west-701c {
        font-size: 1.75rem;
    }
    
    .tiny_4a86 {
        font-size: 1rem;
    }
    
    .accordion-587f {
        flex-direction: column;
    }
    
    .container_south_29d1 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .active_cold_e6ca {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .outline_3bd7 {
        max-width: 100%;
    }
    
    .slow_d696 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .header-focused-46a1 {
        padding: 0 1rem;
    }
    
    .surface_hard_df85 {
        padding: 4rem 1rem 3rem;
    }
    
    .surface_hard_df85 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .gradient_6b2f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .carousel-focused-7c2d {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .grid_3bce,
    .menu_up_d0ac {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .dropdown-blue-6d8c {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .out_3a7c {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .hot-3db9 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .surface_hard_df85 h1 {
        font-size: 1.5rem;
    }
    
    .carousel-focused-7c2d {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .media_fast_227d {
        padding: 0.75rem;
    }
    
    .element-d26b {
        font-size: 1.5rem;
    }
    
    .dropdown-blue-6d8c {
        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 */
.outline_3bd7:hover,
.fixed-f820:hover,
.icon-22b0:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .stone-8a56,
    .article-narrow-ce3a,
    .glass-11d2 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.shadow_paper_200a)
   ======================================== */

.grid_88ef.out_d4c8 {
    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;
}

.grid_88ef.out_d4c8 .shade-7230 {
    color: #334155;
}

.grid_88ef.out_d4c8 .shade-7230:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.grid_88ef.out_d4c8 .shade-7230.fn-active-1d2f {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.grid_88ef.out_d4c8 .box-b464 {
    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);
}

.grid_88ef.out_d4c8 .box-b464::before {
    border-bottom-color: #ffffff;
}

.grid_88ef.out_d4c8 .box_0f54 {
    color: #475569;
}

.grid_88ef.out_d4c8 .box_0f54::before {
    background: #818cf8;
}

.grid_88ef.out_d4c8 .box_0f54:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.grid_88ef.out_d4c8 .box_0f54:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.grid_88ef.out_d4c8 .silver_015c {
    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);
}

.grid_88ef.out_d4c8 .silver_015c:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.grid_88ef.out_d4c8 .silver_015c span {
    background: #475569;
    box-shadow: none;
}

.grid_88ef.out_d4c8 .silver_015c.fn-active-1d2f span:nth-child(1),
.grid_88ef.out_d4c8 .silver_015c.fn-active-1d2f span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .grid_88ef.out_d4c8 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .grid_88ef.out_d4c8 .heading_816b {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .grid_88ef.out_d4c8 .heading_816b span {
        color: #334155 !important;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 {
        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);
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .shade-7230 {
        color: #334155;
        text-shadow: none;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .shade-7230:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .shade-7230.basic_a71d::after {
        color: #64748b;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .box-b464 {
        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) */
    .grid_88ef.out_d4c8 .table_fresh_2ba5 .element-6a75.fn-active-1d2f .box-b464 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .box_0f54 {
        color: #475569;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .box_0f54::before {
        color: #6366f1;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .box_0f54:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .box_0f54:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .grid_88ef.out_d4c8 .table_fresh_2ba5 .box_0f54:hover::before {
        color: #4f46e5;
    }
}

/* apk.backdrop_large_c5f2 — mesmo tema claro da home; blocos extras */
body.white_8bb9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.white_8bb9 .gallery-cbca {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.white_8bb9 .hard-a7ce {
    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);
}

.white_8bb9 .hard-a7ce p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.white_8bb9 .hard-a7ce p:last-child {
    margin-bottom: 0;
}

.white_8bb9 .hard-a7ce strong {
    color: var(--text-primary);
}

.white_8bb9 .gallery_selected_5cc7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.white_8bb9 .gallery_selected_5cc7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paragraph-07de {
    background: #f8f9fa;
    color: #2c3e50;
}

.paragraph-07de .logo_in_f807 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paragraph-07de .picture_adcc {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.paragraph-07de .picture_adcc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph-07de .picture_adcc p:last-child {
    margin-bottom: 0;
}

.paragraph-07de .picture_adcc strong {
    color: var(--text-primary);
}

.paragraph-07de .overlay_29f6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paragraph-07de .overlay_29f6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.status_785e {
    background: #f8f9fa;
    color: #2c3e50;
}

.status_785e .hover_dynamic_134d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.status_785e .hidden_wide_12b4 {
    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);
}

.status_785e .hidden_wide_12b4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status_785e .hidden_wide_12b4 p:last-child {
    margin-bottom: 0;
}

.status_785e .hidden_wide_12b4 strong {
    color: var(--text-primary);
}

.status_785e .stone_94c9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.status_785e .stone_94c9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.list-clean-38cc {
    background: #f8f9fa;
    color: #2c3e50;
}

.list-clean-38cc .outer-e4c2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list-clean-38cc .slow-e188 {
    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);
}

.list-clean-38cc .slow-e188 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list-clean-38cc .slow-e188 p:last-child {
    margin-bottom: 0;
}

.list-clean-38cc .slow-e188 strong {
    color: var(--text-primary);
}

.list-clean-38cc .active_bottom_c811 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list-clean-38cc .active_bottom_c811 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.liquid_a644 {
    background: #f8f9fa;
    color: #2c3e50;
}

.liquid_a644 .rough-882a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.liquid_a644 .banner-lower-724c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.liquid_a644 .banner-lower-724c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.liquid_a644 .banner-lower-724c p:last-child {
    margin-bottom: 0;
}

.liquid_a644 .banner-lower-724c strong {
    color: var(--text-primary);
}

.liquid_a644 .header-b47c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.liquid_a644 .header-b47c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.first_ebc4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.first_ebc4 .block-white-b54c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.first_ebc4 .status_66d6 {
    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);
}

.first_ebc4 .status_66d6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.first_ebc4 .status_66d6 p:last-child {
    margin-bottom: 0;
}

.first_ebc4 .status_66d6 strong {
    color: var(--text-primary);
}

.first_ebc4 .orange_94dc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.first_ebc4 .orange_94dc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gradient-active-4848 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gradient-active-4848 .middle-e064 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gradient-active-4848 .pressed_0ef9 {
    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);
}

.gradient-active-4848 .pressed_0ef9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient-active-4848 .pressed_0ef9 p:last-child {
    margin-bottom: 0;
}

.gradient-active-4848 .pressed_0ef9 strong {
    color: var(--text-primary);
}

.gradient-active-4848 .status-a755 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gradient-active-4848 .status-a755 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-7e7c {
    background: #f8f9fa;
    color: #2c3e50;
}

.gold-7e7c .background_mini_31a0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gold-7e7c .tabs_dirty_6f16 {
    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-7e7c .tabs_dirty_6f16 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gold-7e7c .tabs_dirty_6f16 p:last-child {
    margin-bottom: 0;
}

.gold-7e7c .tabs_dirty_6f16 strong {
    color: var(--text-primary);
}

.gold-7e7c .cool_ad6f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gold-7e7c .cool_ad6f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thumbnail-red-2479 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail-red-2479 .text-6329 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail-red-2479 .up_338a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.thumbnail-red-2479 .up_338a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail-red-2479 .up_338a p:last-child {
    margin-bottom: 0;
}

.thumbnail-red-2479 .up_338a strong {
    color: var(--text-primary);
}

.thumbnail-red-2479 .link-top-9e02 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail-red-2479 .link-top-9e02 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-d3ab {
    background: #f8f9fa;
    color: #2c3e50;
}

.mask-d3ab .new-5290 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.mask-d3ab .over-5f5a {
    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-d3ab .over-5f5a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mask-d3ab .over-5f5a p:last-child {
    margin-bottom: 0;
}

.mask-d3ab .over-5f5a strong {
    color: var(--text-primary);
}

.mask-d3ab .footer_0445 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.mask-d3ab .footer_0445 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_rough_d827 {
    background: #f8f9fa;
    color: #2c3e50;
}

.frame_rough_d827 .out-4985 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.frame_rough_d827 .border_73d1 {
    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_rough_d827 .border_73d1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame_rough_d827 .border_73d1 p:last-child {
    margin-bottom: 0;
}

.frame_rough_d827 .border_73d1 strong {
    color: var(--text-primary);
}

.frame_rough_d827 .alert-paper-ab17 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame_rough_d827 .alert-paper-ab17 li {
    margin-bottom: 0.65rem;
}

.frame_rough_d827 .alert-paper-ab17 li:last-child {
    margin-bottom: 0;
}

.frame_rough_d827 .focused-dccc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.frame_rough_d827 .focused-dccc 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-ce97 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slow-ce97 .outline_smooth_2f6d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slow-ce97 .tertiary_e267 {
    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-ce97 .tertiary_e267 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow-ce97 .tertiary_e267 p:last-child {
    margin-bottom: 0;
}

.slow-ce97 .tertiary_e267 strong {
    color: var(--text-primary);
}

.slow-ce97 .picture-middle-cdd8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow-ce97 .picture-middle-cdd8 li {
    margin-bottom: 0.65rem;
}

.slow-ce97 .picture-middle-cdd8 li:last-child {
    margin-bottom: 0;
}

.slow-ce97 .glass_fe36 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slow-ce97 .glass_fe36 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer_copper_be4f {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer_copper_be4f .frame-63cd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer_copper_be4f .avatar-f97f {
    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);
}

.footer_copper_be4f .avatar-f97f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_copper_be4f .avatar-f97f p:last-child {
    margin-bottom: 0;
}

.footer_copper_be4f .avatar-f97f strong {
    color: var(--text-primary);
}

.footer_copper_be4f .popup_pressed_20f9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer_copper_be4f .popup_pressed_20f9 li {
    margin-bottom: 0.65rem;
}

.footer_copper_be4f .popup_pressed_20f9 li:last-child {
    margin-bottom: 0;
}

.footer_copper_be4f .feature_f2e4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer_copper_be4f .feature_f2e4 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-left-a3fc {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside-left-a3fc .basic-49ae {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside-left-a3fc .input_281a {
    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-left-a3fc .input_281a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-left-a3fc .input_281a p:last-child {
    margin-bottom: 0;
}

.aside-left-a3fc .input_281a strong {
    color: var(--text-primary);
}

.aside-left-a3fc .container_2047 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-left-a3fc .container_2047 li {
    margin-bottom: 0.65rem;
}

.aside-left-a3fc .container_2047 li:last-child {
    margin-bottom: 0;
}

body.chip_2dbc {
    background: #f8f9fa;
    color: #2c3e50;
}

.chip_2dbc .info_05d0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.chip_2dbc .nav-plasma-f38b {
    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);
}

.chip_2dbc .nav-plasma-f38b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.chip_2dbc .nav-plasma-f38b p:last-child {
    margin-bottom: 0;
}

.chip_2dbc .nav-plasma-f38b strong {
    color: var(--text-primary);
}

.chip_2dbc .nav_cfd9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.chip_2dbc .nav_cfd9 li {
    margin-bottom: 0.65rem;
}

.chip_2dbc .nav_cfd9 li:last-child {
    margin-bottom: 0;
}

.chip_2dbc .status_short_1b1f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.chip_2dbc .status_short_1b1f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.disabled-inner-7119 {
    background: #f8f9fa;
    color: #2c3e50;
}

.disabled-inner-7119 .block-716d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.disabled-inner-7119 .link_tall_a82b {
    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);
}

.disabled-inner-7119 .link_tall_a82b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-inner-7119 .link_tall_a82b p:last-child {
    margin-bottom: 0;
}

.disabled-inner-7119 .link_tall_a82b strong {
    color: var(--text-primary);
}

.disabled-inner-7119 .hard-6993 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.disabled-inner-7119 .hard-6993 li {
    margin-bottom: 0.65rem;
}

.disabled-inner-7119 .hard-6993 li:last-child {
    margin-bottom: 0;
}

.disabled-inner-7119 .current_b3d4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.disabled-inner-7119 .current_b3d4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.south_b56f {
    background: #f8f9fa;
    color: #2c3e50;
}

.south_b56f .bronze-b763 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.south_b56f .full_6b01 {
    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);
}

.south_b56f .full_6b01 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south_b56f .full_6b01 p:last-child {
    margin-bottom: 0;
}

.south_b56f .full_6b01 strong {
    color: var(--text-primary);
}

.south_b56f .widget_5aee {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south_b56f .widget_5aee li {
    margin-bottom: 0.65rem;
}

.south_b56f .widget_5aee li:last-child {
    margin-bottom: 0;
}

.south_b56f .blue-633f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.south_b56f .blue-633f 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-2aba {
    background: #f8f9fa;
    color: #2c3e50;
}

.border-2aba .east-356c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.border-2aba .tabs-pro-eca2 {
    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-2aba .tabs-pro-eca2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border-2aba .tabs-pro-eca2 p:last-child {
    margin-bottom: 0;
}

.border-2aba .tabs-pro-eca2 strong {
    color: var(--text-primary);
}

.border-2aba .focused_a86e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border-2aba .focused_a86e li {
    margin-bottom: 0.65rem;
}

.border-2aba .focused_a86e li:last-child {
    margin-bottom: 0;
}

.border-2aba .banner-stone-dd7b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.border-2aba .banner-stone-dd7b 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: 6ee6 */
.ghost-box-h2 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
