/* 
 * 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.pink-d8b6) — fixed together on mobile */
.backdrop-c8bc {
    width: 100%;
}

.table_liquid_5e5d {
    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) {
    .backdrop-c8bc {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .table_liquid_5e5d {
        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.advanced_fd8f. Conta) stay reachable.
     */
    .preview-orange-4ca4 .list-plasma-c304 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .backdrop-c8bc .preview-orange-4ca4 > .list-plasma-c304 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .backdrop-c8bc:has(.preview-under-83d3.fn-show-7c3b) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .backdrop-c8bc:has(.preview-under-83d3.fn-show-7c3b) .table_liquid_5e5d {
        flex-shrink: 0;
    }

    .backdrop-c8bc:has(.preview-under-83d3.fn-show-7c3b) .preview-orange-4ca4 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .backdrop-c8bc:has(.preview-under-83d3.fn-show-7c3b) .preview-orange-4ca4 > .list-plasma-c304 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .backdrop-c8bc:has(.preview-under-83d3.fn-show-7c3b) .copper-c206 {
        flex-shrink: 0;
    }

    .backdrop-c8bc:has(.preview-under-83d3.fn-show-7c3b) .preview-under-83d3.fn-show-7c3b {
        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 */
    .preview-orange-4ca4 .preview-under-83d3 .aside-af1a.fn-active-7c3b .stale_ba0a {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .table_liquid_5e5d {
        position: sticky;
        top: 0;
    }
}

.backdrop-c8bc.disabled-south-bc97,
.backdrop-c8bc.disabled-south-bc97 .table_liquid_5e5d {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.last-e426 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .last-e426 {
        padding: 0.75rem 0;
    }
}

.detail-pressed-2b2f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.up-93d9 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .up-93d9 img {
        height: 35px;
    }
}

/* .preview-orange-4ca4 / .outer_2ccd — inner pages (brown bar); index uses .out_689e below */

.preview-orange-4ca4:not(.out_689e) .outer_2ccd.fn-active-7c3b {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.component-cb0f {
    display: flex;
    gap: var(--spacing-md);
}

.light-098b,
.solid-3096 {
    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) {
    .light-098b,
    .solid-3096 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .component-cb0f {
        gap: 0.5rem;
    }
}

.light-098b {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.light-098b:hover {
    background: var(--primary-purple);
    color: white;
}

.solid-3096 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.solid-3096:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.block-8bde {
    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%;
}

.block-8bde::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;
}

.block-8bde::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;
}

.rough_6ab9 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.outline_119e {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.outline_119e 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);
}

.block-8bde 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;
}

.preview-5f40 {
    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;
}

.preview-5f40 strong {
    font-weight: 700;
}

.popup-next-31ae {
    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);
}

.accordion_thick_c7f1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.nav-364e {
    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);
}

.nav-364e:hover {
    transform: translateY(-4px);
}

.disabled_orange_f6a1 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.hidden-hard-4b7a {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.slow-6356 {
    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;
}

.slow-6356:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.slow-6356.box-simple-f1b4 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.widget_384e {
    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);
}

.widget_384e:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.black_a945 {
    padding: 3rem 1.25rem;
    background: white;
}

.info-small-f1d3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature_fluid_a5db {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.feature_fluid_a5db:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature_fluid_a5db img {
    margin-bottom: 1rem;
}

.badge-fluid-f7d7 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature_fluid_a5db h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature_fluid_a5db 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 */
.grid-b5b8 {
    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);
}

.widget-top-051c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.upper_58f6 {
    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);
}

.upper_58f6 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.upper_58f6 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.upper_58f6 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.active_4ee7 {
    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
   ======================================== */

.first-d132 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.green-c5b0 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.narrow-00d8 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.west_c50b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.container-easy-cbcb {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.container-easy-cbcb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.container-easy-cbcb.right-2117 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.container-easy-cbcb.right-2117 h3,
.container-easy-cbcb.right-2117 p {
    color: white;
}

.heading-ede4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.container-easy-cbcb h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.container-easy-cbcb p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.white_30e0 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.white_30e0:hover {
    gap: 0.75rem;
}

.container-easy-cbcb.right-2117 .white_30e0 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.main_first_c3b3 {
    padding: 4rem 1.25rem;
    background: white;
}

.smooth-c26d {
    text-align: center;
    margin-bottom: 3rem;
}

.over-3837 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.inner-fca5 {
    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%;
}

.inner-fca5:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.up_f920 {
    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);
}

.component-brown-a9fb {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.active_f171 {
    padding: 1.5rem;
}

.active_f171 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.status_ca75 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.banner-4ed5 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.glass_a9a9,
.block_small_4e33 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.glass_a9a9 {
    background: #dcfce7;
    color: #166534;
}

.glass_a9a9.gradient-56c1 {
    background: #10b981;
    color: white;
}

.block_small_4e33 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.block_small_4e33.layout-plasma-45a2 {
    background: #fee2e2;
    color: #991b1b;
}

.block_small_4e33.red_961e {
    background: #fef3c7;
    color: #92400e;
}

.block_small_4e33.input_8187 {
    background: #dcfce7;
    color: #166534;
}

.notification-thick-c0a6 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notification-thick-c0a6 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.aside_bright_cba5 {
    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);
}

.aside_bright_cba5:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.south_93ea {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.wrapper-red-5e36 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.info-af1e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .info-af1e {
        grid-template-columns: 1fr 1fr;
    }
}

.logo-d88a img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.secondary_4d13 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.in_ef0b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.photo_dark_d520 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.secondary_35e0 {
    font-size: 1rem;
    opacity: 0.9;
}

.secondary_4d13 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.slow_616e {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.slow_616e li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.slow_616e 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;
}

.slow_616e li strong {
    color: var(--primary-purple);
}

.slow_616e li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.sort_55af {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.modal-wide-75ea {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.breadcrumb-22d2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.modal-wide-75ea .hidden-hard-4b7a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.nav-d5ca p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.table_558b {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.table_558b a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.iron_b91b {
    padding: 4rem 1.25rem;
    background: white;
}

.preview-focused-35e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .preview-focused-35e9 {
        grid-template-columns: 1fr 1fr;
    }
}

.background_1f59 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.breadcrumb-5e28 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.status-iron-a961 {
    margin-bottom: 1.5rem;
}

.full-7e70 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery_gas_0fd0 {
    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);
}

.description-f148 {
    white-space: nowrap;
}

.plasma-a64c {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.static-cc62 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.prev_c3ae {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.prev_c3ae:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.south-9041 {
    font-size: 2rem;
    flex-shrink: 0;
}

.mask_5b1a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.mask_5b1a p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.secondary_2e9e {
    margin-top: 3rem;
}

.secondary_2e9e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.over_164d {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.over_164d thead {
    background: var(--primary-purple);
    color: white;
}

.over_164d th,
.over_164d td {
    padding: 1rem;
    text-align: left;
}

.over_164d th {
    font-weight: 700;
    font-size: 0.9rem;
}

.over_164d tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.over_164d tbody tr:last-child {
    border-bottom: none;
}

.over_164d tbody tr:hover {
    background: var(--light-bg);
}

.feature-motion-7f84 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.warm-e11e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.smooth_a712 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.notice-f001 {
    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);
}

.notice-f001:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.notice-f001.middle_7b39::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;
}

.cold-d2eb {
    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;
}

.under-6178 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.paragraph-plasma-c27e h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.widget_brown_9cd2 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.module-hot-9187 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.module-hot-9187 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.module-hot-9187 p:last-child {
    margin-bottom: 0;
}

.module-hot-9187 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.item-e62e {
    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;
}

.status_df26 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.texture-0892 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.texture-0892 .disabled_orange_f6a1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.texture-0892 .hidden-hard-4b7a {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.preview_19e9 {
    padding: 4rem 1.25rem;
    background: white;
}

.bottom-caa5 {
    max-width: 900px;
    margin: 0 auto;
}

.left-dba3 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.left-dba3:hover {
    border-color: var(--primary-purple);
}

.left-dba3[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.left-dba3 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;
}

.left-dba3 summary::-webkit-details-marker {
    display: none;
}

.left-dba3 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.left-dba3[open] summary::after {
    transform: rotate(45deg);
}

.component_middle_22fd {
    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);
    }
}

.component_middle_22fd p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.component_middle_22fd h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.component_middle_22fd ul,
.component_middle_22fd ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.component_middle_22fd li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.component_middle_22fd strong {
    color: var(--text-primary);
    font-weight: 600;
}

.fresh_bf9e {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.fixed_e9df {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.fixed_e9df th,
.fixed_e9df td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.fixed_e9df th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.north_2fef {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.static-69f4 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.full_35be {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .full_35be {
        flex-direction: column;
        text-align: center;
    }
}

.full_35be img {
    flex-shrink: 0;
}

.hover-a717 {
    font-size: 4rem;
    flex-shrink: 0;
}

.grid_small_1925 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.grid_small_1925 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.accent_69fe {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.dropdown_in_b52b {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.carousel-dc60 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.carousel-dc60 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hovered-647e {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.main-d2b8 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.notice-468e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.texture_clean_9aa3 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.texture_clean_9aa3 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.layout-636e {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.container-223c {
    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);
}

.liquid-ec3f {
    list-style: none;
}

.liquid-ec3f li {
    margin-bottom: 0.75rem;
}

.liquid-ec3f a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.liquid-ec3f a:hover {
    color: white;
}

.highlight_8f10 {
    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-7066 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.caption-7066 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.main-84e3 {
    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);
}

.hover_stone_d606 {
    text-align: right;
}

@media (max-width: 767px) {
    .hover_stone_d606 {
        text-align: center;
        width: 100%;
    }
}

.hover_stone_d606 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.gas-20f1 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.list-plasma-c304 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.black_a945,
.grid-b5b8,
.first-d132,
.main_first_c3b3,
.wrapper-red-5e36,
.iron_b91b,
.warm-e11e,
.preview_19e9,
.static-69f4,
.dropdown_in_b52b {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .green-c5b0 {
        font-size: 1.75rem;
    }
    
    .narrow-00d8 {
        font-size: 1rem;
    }
    
    .sort_55af {
        flex-direction: column;
    }
    
    .preview-focused-35e9 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .over-3837 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inner-fca5 {
        max-width: 100%;
    }
    
    .component-brown-a9fb {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .list-plasma-c304 {
        padding: 0 1rem;
    }
    
    .block-8bde {
        padding: 4rem 1rem 3rem;
    }
    
    .block-8bde h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .slow-6356 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion_thick_c7f1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .over_164d,
    .fixed_e9df {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .info-small-f1d3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .west_c50b {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .smooth_a712 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .block-8bde h1 {
        font-size: 1.5rem;
    }
    
    .accordion_thick_c7f1 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .nav-364e {
        padding: 0.75rem;
    }
    
    .disabled_orange_f6a1 {
        font-size: 1.5rem;
    }
    
    .info-small-f1d3 {
        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 */
.inner-fca5:hover,
.container-easy-cbcb:hover,
.notice-f001:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .main_first_c3b3,
    .warm-e11e,
    .preview_19e9 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.pink-d8b6)
   ======================================== */

.preview-orange-4ca4.out_689e {
    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;
}

.preview-orange-4ca4.out_689e .outer_2ccd {
    color: #334155;
}

.preview-orange-4ca4.out_689e .outer_2ccd:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.preview-orange-4ca4.out_689e .outer_2ccd.fn-active-7c3b {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.preview-orange-4ca4.out_689e .stale_ba0a {
    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);
}

.preview-orange-4ca4.out_689e .stale_ba0a::before {
    border-bottom-color: #ffffff;
}

.preview-orange-4ca4.out_689e .column_0479 {
    color: #475569;
}

.preview-orange-4ca4.out_689e .column_0479::before {
    background: #818cf8;
}

.preview-orange-4ca4.out_689e .column_0479:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.preview-orange-4ca4.out_689e .column_0479:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.preview-orange-4ca4.out_689e .top_7f5e {
    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);
}

.preview-orange-4ca4.out_689e .top_7f5e:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.preview-orange-4ca4.out_689e .top_7f5e span {
    background: #475569;
    box-shadow: none;
}

.preview-orange-4ca4.out_689e .top_7f5e.fn-active-7c3b span:nth-child(1),
.preview-orange-4ca4.out_689e .top_7f5e.fn-active-7c3b span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .preview-orange-4ca4.out_689e {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .preview-orange-4ca4.out_689e .copper-c206 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .preview-orange-4ca4.out_689e .copper-c206 span {
        color: #334155 !important;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 {
        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);
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .outer_2ccd {
        color: #334155;
        text-shadow: none;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .outer_2ccd:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .outer_2ccd.background_89d2::after {
        color: #64748b;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .stale_ba0a {
        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) */
    .preview-orange-4ca4.out_689e .preview-under-83d3 .aside-af1a.fn-active-7c3b .stale_ba0a {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .column_0479 {
        color: #475569;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .column_0479::before {
        color: #6366f1;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .column_0479:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .column_0479:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .preview-orange-4ca4.out_689e .preview-under-83d3 .column_0479:hover::before {
        color: #4f46e5;
    }
}

/* apk.shadow-127d — mesmo tema claro da home; blocos extras */
body.gallery-bc4f {
    background: #f8f9fa;
    color: #2c3e50;
}

.gallery-bc4f .texture_pink_0c9a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gallery-bc4f .picture-145d {
    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);
}

.gallery-bc4f .picture-145d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery-bc4f .picture-145d p:last-child {
    margin-bottom: 0;
}

.gallery-bc4f .picture-145d strong {
    color: var(--text-primary);
}

.gallery-bc4f .pattern_0feb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gallery-bc4f .pattern_0feb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pink_8898 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pink_8898 .status-25e8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pink_8898 .last_9139 {
    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);
}

.pink_8898 .last_9139 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pink_8898 .last_9139 p:last-child {
    margin-bottom: 0;
}

.pink_8898 .last_9139 strong {
    color: var(--text-primary);
}

.pink_8898 .notification_outer_d44a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pink_8898 .notification_outer_d44a 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-tiny-06fe {
    background: #f8f9fa;
    color: #2c3e50;
}

.message-tiny-06fe .modal-black-fe30 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message-tiny-06fe .card-5c53 {
    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-tiny-06fe .card-5c53 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message-tiny-06fe .card-5c53 p:last-child {
    margin-bottom: 0;
}

.message-tiny-06fe .card-5c53 strong {
    color: var(--text-primary);
}

.message-tiny-06fe .copper_2a69 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message-tiny-06fe .copper_2a69 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.blue-5364 {
    background: #f8f9fa;
    color: #2c3e50;
}

.blue-5364 .simple-45ff {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.blue-5364 .fast_2dea {
    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);
}

.blue-5364 .fast_2dea p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue-5364 .fast_2dea p:last-child {
    margin-bottom: 0;
}

.blue-5364 .fast_2dea strong {
    color: var(--text-primary);
}

.blue-5364 .warm-b5fb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.blue-5364 .warm-b5fb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.middle-d7fe {
    background: #f8f9fa;
    color: #2c3e50;
}

.middle-d7fe .info_de41 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.middle-d7fe .secondary-982c {
    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);
}

.middle-d7fe .secondary-982c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle-d7fe .secondary-982c p:last-child {
    margin-bottom: 0;
}

.middle-d7fe .secondary-982c strong {
    color: var(--text-primary);
}

.middle-d7fe .silver_8800 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.middle-d7fe .silver_8800 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pro_3445 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pro_3445 .widget_2adf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pro_3445 .advanced-47ab {
    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);
}

.pro_3445 .advanced-47ab p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro_3445 .advanced-47ab p:last-child {
    margin-bottom: 0;
}

.pro_3445 .advanced-47ab strong {
    color: var(--text-primary);
}

.pro_3445 .list-bf44 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pro_3445 .list-bf44 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.nav-24e5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.nav-24e5 .background-light-b717 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.nav-24e5 .focus-fresh-babb {
    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);
}

.nav-24e5 .focus-fresh-babb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.nav-24e5 .focus-fresh-babb p:last-child {
    margin-bottom: 0;
}

.nav-24e5 .focus-fresh-babb strong {
    color: var(--text-primary);
}

.nav-24e5 .purple-9460 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.nav-24e5 .purple-9460 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.detail_b1de {
    background: #f8f9fa;
    color: #2c3e50;
}

.detail_b1de .glass_35f0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.detail_b1de .tag-b0fb {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.detail_b1de .tag-b0fb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail_b1de .tag-b0fb p:last-child {
    margin-bottom: 0;
}

.detail_b1de .tag-b0fb strong {
    color: var(--text-primary);
}

.detail_b1de .action_8cb6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.detail_b1de .action_8cb6 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-soft-e43a {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-soft-e43a .gradient_old_0c10 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-soft-e43a .block_wood_797a {
    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-soft-e43a .block_wood_797a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-soft-e43a .block_wood_797a p:last-child {
    margin-bottom: 0;
}

.button-soft-e43a .block_wood_797a strong {
    color: var(--text-primary);
}

.button-soft-e43a .hover-left-5bd6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-soft-e43a .hover-left-5bd6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent-static-ddda {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent-static-ddda .breadcrumb_006d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent-static-ddda .smooth_bb87 {
    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);
}

.accent-static-ddda .smooth_bb87 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent-static-ddda .smooth_bb87 p:last-child {
    margin-bottom: 0;
}

.accent-static-ddda .smooth_bb87 strong {
    color: var(--text-primary);
}

.accent-static-ddda .item_light_d7c5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent-static-ddda .item_light_d7c5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.grid_first_1f07 {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid_first_1f07 .nav_ac0d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid_first_1f07 .layout_159d {
    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);
}

.grid_first_1f07 .layout_159d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_first_1f07 .layout_159d p:last-child {
    margin-bottom: 0;
}

.grid_first_1f07 .layout_159d strong {
    color: var(--text-primary);
}

.grid_first_1f07 .video-195d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid_first_1f07 .video-195d li {
    margin-bottom: 0.65rem;
}

.grid_first_1f07 .video-195d li:last-child {
    margin-bottom: 0;
}

.grid_first_1f07 .east-6088 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.grid_first_1f07 .east-6088 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-f012 {
    background: #f8f9fa;
    color: #2c3e50;
}

.list-f012 .notification_black_1f1b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list-f012 .box_huge_a7d5 {
    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-f012 .box_huge_a7d5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list-f012 .box_huge_a7d5 p:last-child {
    margin-bottom: 0;
}

.list-f012 .box_huge_a7d5 strong {
    color: var(--text-primary);
}

.list-f012 .aside-gold-92fd {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list-f012 .aside-gold-92fd li {
    margin-bottom: 0.65rem;
}

.list-f012 .aside-gold-92fd li:last-child {
    margin-bottom: 0;
}

.list-f012 .label_liquid_b473 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list-f012 .label_liquid_b473 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.popup-smooth-003b {
    background: #f8f9fa;
    color: #2c3e50;
}

.popup-smooth-003b .silver_8949 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.popup-smooth-003b .small-d75f {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.popup-smooth-003b .small-d75f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.popup-smooth-003b .small-d75f p:last-child {
    margin-bottom: 0;
}

.popup-smooth-003b .small-d75f strong {
    color: var(--text-primary);
}

.popup-smooth-003b .liquid_dea5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.popup-smooth-003b .liquid_dea5 li {
    margin-bottom: 0.65rem;
}

.popup-smooth-003b .liquid_dea5 li:last-child {
    margin-bottom: 0;
}

.popup-smooth-003b .surface-ecb3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.popup-smooth-003b .surface-ecb3 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.overlay-narrow-7816 {
    background: #f8f9fa;
    color: #2c3e50;
}

.overlay-narrow-7816 .narrow_4fb0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.overlay-narrow-7816 .right-82a2 {
    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);
}

.overlay-narrow-7816 .right-82a2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay-narrow-7816 .right-82a2 p:last-child {
    margin-bottom: 0;
}

.overlay-narrow-7816 .right-82a2 strong {
    color: var(--text-primary);
}

.overlay-narrow-7816 .input_6eb6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay-narrow-7816 .input_6eb6 li {
    margin-bottom: 0.65rem;
}

.overlay-narrow-7816 .input_6eb6 li:last-child {
    margin-bottom: 0;
}

body.heading_3476 {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading_3476 .logo_easy_8a43 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading_3476 .preview-basic-ac7e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.heading_3476 .preview-basic-ac7e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading_3476 .preview-basic-ac7e p:last-child {
    margin-bottom: 0;
}

.heading_3476 .preview-basic-ac7e strong {
    color: var(--text-primary);
}

.heading_3476 .short_bf13 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading_3476 .short_bf13 li {
    margin-bottom: 0.65rem;
}

.heading_3476 .short_bf13 li:last-child {
    margin-bottom: 0;
}

.heading_3476 .element_purple_d20e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading_3476 .element_purple_d20e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.main-narrow-b5cf {
    background: #f8f9fa;
    color: #2c3e50;
}

.main-narrow-b5cf .light_1276 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.main-narrow-b5cf .badge-b1fa {
    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);
}

.main-narrow-b5cf .badge-b1fa p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main-narrow-b5cf .badge-b1fa p:last-child {
    margin-bottom: 0;
}

.main-narrow-b5cf .badge-b1fa strong {
    color: var(--text-primary);
}

.main-narrow-b5cf .element-fe5d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main-narrow-b5cf .element-fe5d li {
    margin-bottom: 0.65rem;
}

.main-narrow-b5cf .element-fe5d li:last-child {
    margin-bottom: 0;
}

.main-narrow-b5cf .icon-0af6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.main-narrow-b5cf .icon-0af6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.cool_c081 {
    background: #f8f9fa;
    color: #2c3e50;
}

.cool_c081 .dropdown-mini-4368 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.cool_c081 .header_94fe {
    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);
}

.cool_c081 .header_94fe p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.cool_c081 .header_94fe p:last-child {
    margin-bottom: 0;
}

.cool_c081 .header_94fe strong {
    color: var(--text-primary);
}

.cool_c081 .form_381d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.cool_c081 .form_381d li {
    margin-bottom: 0.65rem;
}

.cool_c081 .form_381d li:last-child {
    margin-bottom: 0;
}

.cool_c081 .frame_paper_1b6d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.cool_c081 .frame_paper_1b6d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.top_9659 {
    background: #f8f9fa;
    color: #2c3e50;
}

.top_9659 .title_a936 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.top_9659 .red_ae74 {
    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);
}

.top_9659 .red_ae74 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.top_9659 .red_ae74 p:last-child {
    margin-bottom: 0;
}

.top_9659 .red_ae74 strong {
    color: var(--text-primary);
}

.top_9659 .pattern-0901 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.top_9659 .pattern-0901 li {
    margin-bottom: 0.65rem;
}

.top_9659 .pattern-0901 li:last-child {
    margin-bottom: 0;
}

.top_9659 .progress-49fe {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.top_9659 .progress-49fe 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: 25cb */
.promo-block-a0 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
