/* 
 * 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.green-b9b1) — fixed together on mobile */
.clean-650e {
    width: 100%;
}

.column_soft_0e6b {
    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) {
    .clean-650e {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .column_soft_0e6b {
        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.focus-west-bc39. Conta) stay reachable.
     */
    .white-8fd0 .caption_9850 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .clean-650e .white-8fd0 > .caption_9850 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .clean-650e:has(.notification_inner_804b.fn-show-5a6e) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .clean-650e:has(.notification_inner_804b.fn-show-5a6e) .column_soft_0e6b {
        flex-shrink: 0;
    }

    .clean-650e:has(.notification_inner_804b.fn-show-5a6e) .white-8fd0 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .clean-650e:has(.notification_inner_804b.fn-show-5a6e) .white-8fd0 > .caption_9850 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .clean-650e:has(.notification_inner_804b.fn-show-5a6e) .active_8483 {
        flex-shrink: 0;
    }

    .clean-650e:has(.notification_inner_804b.fn-show-5a6e) .notification_inner_804b.fn-show-5a6e {
        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 */
    .white-8fd0 .notification_inner_804b .layout_fluid_9551.fn-active-5a6e .texture-707b {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .column_soft_0e6b {
        position: sticky;
        top: 0;
    }
}

.clean-650e.image_2816,
.clean-650e.image_2816 .column_soft_0e6b {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.inner-b62e {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .inner-b62e {
        padding: 0.75rem 0;
    }
}

.silver-a010 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.under_6406 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .under_6406 img {
        height: 35px;
    }
}

/* .white-8fd0 / .east_467f — inner pages (brown bar); index uses .mini_de82 below */

.white-8fd0:not(.mini_de82) .east_467f.fn-active-5a6e {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.heading_static_ac8a {
    display: flex;
    gap: var(--spacing-md);
}

.hover-huge-1304,
.slow-0d28 {
    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) {
    .hover-huge-1304,
    .slow-0d28 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .heading_static_ac8a {
        gap: 0.5rem;
    }
}

.hover-huge-1304 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.hover-huge-1304:hover {
    background: var(--primary-purple);
    color: white;
}

.slow-0d28 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.slow-0d28:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.medium-bb92 {
    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%;
}

.medium-bb92::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;
}

.medium-bb92::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;
}

.copper_9106 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.iron-1149 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.iron-1149 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);
}

.medium-bb92 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;
}

.basic_47cc {
    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;
}

.basic_47cc strong {
    font-weight: 700;
}

.alert_f250 {
    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);
}

.out-8e17 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.avatar-fda4 {
    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);
}

.avatar-fda4:hover {
    transform: translateY(-4px);
}

.popup_dark_5dc9 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.easy_31c4 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.shadow_57f9 {
    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;
}

.shadow_57f9:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.shadow_57f9.layout_first_3f56 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.black-45cf {
    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);
}

.black-45cf:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.small_4132 {
    padding: 3rem 1.25rem;
    background: white;
}

.info_9444 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.new_0eb2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.new_0eb2:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.new_0eb2 img {
    margin-bottom: 1rem;
}

.table_fresh_5d27 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.new_0eb2 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.new_0eb2 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 */
.short_b044 {
    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);
}

.red-c200 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.border_4ef3 {
    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);
}

.border_4ef3 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.border_4ef3 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.border_4ef3 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.container_f0fa {
    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
   ======================================== */

.sidebar-14db {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.bronze-f022 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.hard-fb4b {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.purple-7892 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.south_b726 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.south_b726:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.south_b726.silver-a5f3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.south_b726.silver-a5f3 h3,
.south_b726.silver-a5f3 p {
    color: white;
}

.thick-70e4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.south_b726 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.south_b726 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.alert_4ca6 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.alert_4ca6:hover {
    gap: 0.75rem;
}

.south_b726.silver-a5f3 .alert_4ca6 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.overlay-23b3 {
    padding: 4rem 1.25rem;
    background: white;
}

.text_pink_7543 {
    text-align: center;
    margin-bottom: 3rem;
}

.surface_east_1e9d {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.highlight-red-f059 {
    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%;
}

.highlight-red-f059:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.layout_west_43e3 {
    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);
}

.disabled_hard_078a {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.item-a582 {
    padding: 1.5rem;
}

.item-a582 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.dim-4f6e {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gallery-outer-8a01 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.dirty_02f5,
.heading-19b5 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.dirty_02f5 {
    background: #dcfce7;
    color: #166534;
}

.dirty_02f5.plasma_9c55 {
    background: #10b981;
    color: white;
}

.heading-19b5 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.heading-19b5.pattern-71bb {
    background: #fee2e2;
    color: #991b1b;
}

.heading-19b5.paper_c9d3 {
    background: #fef3c7;
    color: #92400e;
}

.heading-19b5.red-08c7 {
    background: #dcfce7;
    color: #166534;
}

.icon_e005 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.icon_e005 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.picture-aa30 {
    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);
}

.picture-aa30:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.title-d9f8 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.tag-gold-7fb5 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.easy_efff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .easy_efff {
        grid-template-columns: 1fr 1fr;
    }
}

.main-dfae img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.highlight-dirty-6ead h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tertiary_glass_7678 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.surface-thick-763a {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.component_smooth_3764 {
    font-size: 1rem;
    opacity: 0.9;
}

.highlight-dirty-6ead h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.background-51de {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.background-51de li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.background-51de 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;
}

.background-51de li strong {
    color: var(--primary-purple);
}

.background-51de li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.status-32ec {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.table_5eb3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.over_9f2d {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.table_5eb3 .easy_31c4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.gradient-ed50 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.icon-warm-0cb2 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.icon-warm-0cb2 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.tiny_24a5 {
    padding: 4rem 1.25rem;
    background: white;
}

.layout-cool-1174 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .layout-cool-1174 {
        grid-template-columns: 1fr 1fr;
    }
}

.menu-tiny-b9d3 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.silver_0f5a {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.large-56c0 {
    margin-bottom: 1.5rem;
}

.upper-d225 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.banner_2408 {
    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);
}

.dim_50e7 {
    white-space: nowrap;
}

.thumbnail-50f4 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.image-inner-a024 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.active-a664 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.active-a664:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.wrapper_4241 {
    font-size: 2rem;
    flex-shrink: 0;
}

.grid_e8be h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.grid_e8be p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.dynamic_d4be {
    margin-top: 3rem;
}

.dynamic_d4be h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.info_full_efd5 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.info_full_efd5 thead {
    background: var(--primary-purple);
    color: white;
}

.info_full_efd5 th,
.info_full_efd5 td {
    padding: 1rem;
    text-align: left;
}

.info_full_efd5 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.info_full_efd5 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.info_full_efd5 tbody tr:last-child {
    border-bottom: none;
}

.info_full_efd5 tbody tr:hover {
    background: var(--light-bg);
}

.frame-center-3605 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.cool-f65f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.alert-0c6d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.thick_5fb5 {
    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);
}

.thick_5fb5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.thick_5fb5.secondary-42fb::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;
}

.static-ed40 {
    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;
}

.summary-inner-d23b {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.over-3f29 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.hard_bb8e {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.grid-46a7 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.grid-46a7 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.grid-46a7 p:last-child {
    margin-bottom: 0;
}

.grid-46a7 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.border-ca29 {
    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;
}

.secondary_cea3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stone_5f47 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.stone_5f47 .popup_dark_5dc9 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.stone_5f47 .easy_31c4 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.heading-lite-555b {
    padding: 4rem 1.25rem;
    background: white;
}

.image-yellow-cc76 {
    max-width: 900px;
    margin: 0 auto;
}

.notification_3f7b {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.notification_3f7b:hover {
    border-color: var(--primary-purple);
}

.notification_3f7b[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.notification_3f7b 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;
}

.notification_3f7b summary::-webkit-details-marker {
    display: none;
}

.notification_3f7b summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.notification_3f7b[open] summary::after {
    transform: rotate(45deg);
}

.basic-3ff7 {
    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);
    }
}

.basic-3ff7 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.basic-3ff7 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.basic-3ff7 ul,
.basic-3ff7 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.basic-3ff7 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.basic-3ff7 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.disabled-011b {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.notice_black_77de {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.notice_black_77de th,
.notice_black_77de td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.notice_black_77de th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.left_84e6 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.icon_bottom_de59 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.block_dirty_886b {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .block_dirty_886b {
        flex-direction: column;
        text-align: center;
    }
}

.block_dirty_886b img {
    flex-shrink: 0;
}

.thumbnail-e2a3 {
    font-size: 4rem;
    flex-shrink: 0;
}

.banner_gas_0595 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.banner_gas_0595 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.black_62db {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.block-df83 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.hovered_2676 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hovered_2676 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.south_4c85 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.hover_narrow_d0e1 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.button_over_b49b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.slider_3b13 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slider_3b13 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.gold_705f {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.last_009e {
    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);
}

.pagination_ff3e {
    list-style: none;
}

.pagination_ff3e li {
    margin-bottom: 0.75rem;
}

.pagination_ff3e a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.pagination_ff3e a:hover {
    color: white;
}

.focus_a4f2 {
    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;
}

.notice-ac02 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.notice-ac02 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.heading-9b9a {
    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);
}

.label-5f5d {
    text-align: right;
}

@media (max-width: 767px) {
    .label-5f5d {
        text-align: center;
        width: 100%;
    }
}

.label-5f5d p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.focus_ede6 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.caption_9850 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.small_4132,
.short_b044,
.sidebar-14db,
.overlay-23b3,
.tag-gold-7fb5,
.tiny_24a5,
.cool-f65f,
.heading-lite-555b,
.icon_bottom_de59,
.block-df83 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .bronze-f022 {
        font-size: 1.75rem;
    }
    
    .hard-fb4b {
        font-size: 1rem;
    }
    
    .status-32ec {
        flex-direction: column;
    }
    
    .layout-cool-1174 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .surface_east_1e9d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-red-f059 {
        max-width: 100%;
    }
    
    .disabled_hard_078a {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .caption_9850 {
        padding: 0 1rem;
    }
    
    .medium-bb92 {
        padding: 4rem 1rem 3rem;
    }
    
    .medium-bb92 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .shadow_57f9 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .out-8e17 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .info_full_efd5,
    .notice_black_77de {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .info_9444 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .purple-7892 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .alert-0c6d {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .medium-bb92 h1 {
        font-size: 1.5rem;
    }
    
    .out-8e17 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .avatar-fda4 {
        padding: 0.75rem;
    }
    
    .popup_dark_5dc9 {
        font-size: 1.5rem;
    }
    
    .info_9444 {
        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 */
.highlight-red-f059:hover,
.south_b726:hover,
.thick_5fb5:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .overlay-23b3,
    .cool-f65f,
    .heading-lite-555b {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.green-b9b1)
   ======================================== */

.white-8fd0.mini_de82 {
    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;
}

.white-8fd0.mini_de82 .east_467f {
    color: #334155;
}

.white-8fd0.mini_de82 .east_467f:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.white-8fd0.mini_de82 .east_467f.fn-active-5a6e {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.white-8fd0.mini_de82 .texture-707b {
    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);
}

.white-8fd0.mini_de82 .texture-707b::before {
    border-bottom-color: #ffffff;
}

.white-8fd0.mini_de82 .feature-inner-82ae {
    color: #475569;
}

.white-8fd0.mini_de82 .feature-inner-82ae::before {
    background: #818cf8;
}

.white-8fd0.mini_de82 .feature-inner-82ae:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.white-8fd0.mini_de82 .feature-inner-82ae:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.white-8fd0.mini_de82 .hard_1256 {
    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);
}

.white-8fd0.mini_de82 .hard_1256:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.white-8fd0.mini_de82 .hard_1256 span {
    background: #475569;
    box-shadow: none;
}

.white-8fd0.mini_de82 .hard_1256.fn-active-5a6e span:nth-child(1),
.white-8fd0.mini_de82 .hard_1256.fn-active-5a6e span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .white-8fd0.mini_de82 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .white-8fd0.mini_de82 .active_8483 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .white-8fd0.mini_de82 .active_8483 span {
        color: #334155 !important;
    }

    .white-8fd0.mini_de82 .notification_inner_804b {
        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);
    }

    .white-8fd0.mini_de82 .notification_inner_804b .east_467f {
        color: #334155;
        text-shadow: none;
    }

    .white-8fd0.mini_de82 .notification_inner_804b .east_467f:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .white-8fd0.mini_de82 .notification_inner_804b .east_467f.lite-6a2e::after {
        color: #64748b;
    }

    .white-8fd0.mini_de82 .notification_inner_804b .texture-707b {
        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) */
    .white-8fd0.mini_de82 .notification_inner_804b .layout_fluid_9551.fn-active-5a6e .texture-707b {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .white-8fd0.mini_de82 .notification_inner_804b .feature-inner-82ae {
        color: #475569;
    }

    .white-8fd0.mini_de82 .notification_inner_804b .feature-inner-82ae::before {
        color: #6366f1;
    }

    .white-8fd0.mini_de82 .notification_inner_804b .feature-inner-82ae:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .white-8fd0.mini_de82 .notification_inner_804b .feature-inner-82ae:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .white-8fd0.mini_de82 .notification_inner_804b .feature-inner-82ae:hover::before {
        color: #4f46e5;
    }
}

/* apk.description-clean-03a4 — mesmo tema claro da home; blocos extras */
body.module-6127 {
    background: #f8f9fa;
    color: #2c3e50;
}

.module-6127 .carousel_glass_af1d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.module-6127 .form_0dd5 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.module-6127 .form_0dd5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module-6127 .form_0dd5 p:last-child {
    margin-bottom: 0;
}

.module-6127 .form_0dd5 strong {
    color: var(--text-primary);
}

.module-6127 .menu-57dc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.module-6127 .menu-57dc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outline-4800 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outline-4800 .overlay-25e0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outline-4800 .banner-dark-8c79 {
    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);
}

.outline-4800 .banner-dark-8c79 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outline-4800 .banner-dark-8c79 p:last-child {
    margin-bottom: 0;
}

.outline-4800 .banner-dark-8c79 strong {
    color: var(--text-primary);
}

.outline-4800 .black-7603 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outline-4800 .black-7603 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outline_c30c {
    background: #f8f9fa;
    color: #2c3e50;
}

.outline_c30c .label-01f5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outline_c30c .nav-6fd9 {
    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);
}

.outline_c30c .nav-6fd9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outline_c30c .nav-6fd9 p:last-child {
    margin-bottom: 0;
}

.outline_c30c .nav-6fd9 strong {
    color: var(--text-primary);
}

.outline_c30c .advanced_c27b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outline_c30c .advanced_c27b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pagination-orange-f68d {
    background: #f8f9fa;
    color: #2c3e50;
}

.pagination-orange-f68d .alert-liquid-acf5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pagination-orange-f68d .info_ad72 {
    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);
}

.pagination-orange-f68d .info_ad72 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pagination-orange-f68d .info_ad72 p:last-child {
    margin-bottom: 0;
}

.pagination-orange-f68d .info_ad72 strong {
    color: var(--text-primary);
}

.pagination-orange-f68d .up_24ee {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pagination-orange-f68d .up_24ee img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.alert_east_cae0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.alert_east_cae0 .info-selected-5df0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.alert_east_cae0 .media_inner_0191 {
    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);
}

.alert_east_cae0 .media_inner_0191 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.alert_east_cae0 .media_inner_0191 p:last-child {
    margin-bottom: 0;
}

.alert_east_cae0 .media_inner_0191 strong {
    color: var(--text-primary);
}

.alert_east_cae0 .detail_1066 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.alert_east_cae0 .detail_1066 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.input_thick_7d1f {
    background: #f8f9fa;
    color: #2c3e50;
}

.input_thick_7d1f .red_679d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input_thick_7d1f .widget_ce6c {
    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);
}

.input_thick_7d1f .widget_ce6c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input_thick_7d1f .widget_ce6c p:last-child {
    margin-bottom: 0;
}

.input_thick_7d1f .widget_ce6c strong {
    color: var(--text-primary);
}

.input_thick_7d1f .secondary-fa24 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input_thick_7d1f .secondary-fa24 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-55b5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid-55b5 .gas-6940 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid-55b5 .content-350f {
    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-55b5 .content-350f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid-55b5 .content-350f p:last-child {
    margin-bottom: 0;
}

.grid-55b5 .content-350f strong {
    color: var(--text-primary);
}

.grid-55b5 .mini-72e6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.grid-55b5 .mini-72e6 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_9fe6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent_9fe6 .slider_acb9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent_9fe6 .form_last_bf9a {
    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_9fe6 .form_last_bf9a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_9fe6 .form_last_bf9a p:last-child {
    margin-bottom: 0;
}

.accent_9fe6 .form_last_bf9a strong {
    color: var(--text-primary);
}

.accent_9fe6 .accent-4c97 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent_9fe6 .accent-4c97 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.card-fresh-f2f6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.card-fresh-f2f6 .background-first-1e8d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.card-fresh-f2f6 .nav_basic_316f {
    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);
}

.card-fresh-f2f6 .nav_basic_316f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card-fresh-f2f6 .nav_basic_316f p:last-child {
    margin-bottom: 0;
}

.card-fresh-f2f6 .nav_basic_316f strong {
    color: var(--text-primary);
}

.card-fresh-f2f6 .caption-motion-d0e2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.card-fresh-f2f6 .caption-motion-d0e2 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_71b1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gradient_71b1 .logo_a589 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gradient_71b1 .nav_efab {
    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_71b1 .nav_efab p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient_71b1 .nav_efab p:last-child {
    margin-bottom: 0;
}

.gradient_71b1 .nav_efab strong {
    color: var(--text-primary);
}

.gradient_71b1 .banner-bcef {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gradient_71b1 .banner-bcef img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.modal_easy_d4d4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.modal_easy_d4d4 .element-e2be {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.modal_easy_d4d4 .action-a02c {
    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);
}

.modal_easy_d4d4 .action-a02c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal_easy_d4d4 .action-a02c p:last-child {
    margin-bottom: 0;
}

.modal_easy_d4d4 .action-a02c strong {
    color: var(--text-primary);
}

.modal_easy_d4d4 .purple-729d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal_easy_d4d4 .purple-729d li {
    margin-bottom: 0.65rem;
}

.modal_easy_d4d4 .purple-729d li:last-child {
    margin-bottom: 0;
}

.modal_easy_d4d4 .input_db87 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.modal_easy_d4d4 .input_db87 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.label-fixed-6750 {
    background: #f8f9fa;
    color: #2c3e50;
}

.label-fixed-6750 .popup-8a43 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label-fixed-6750 .sort_pink_e280 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.label-fixed-6750 .sort_pink_e280 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-fixed-6750 .sort_pink_e280 p:last-child {
    margin-bottom: 0;
}

.label-fixed-6750 .sort_pink_e280 strong {
    color: var(--text-primary);
}

.label-fixed-6750 .alert_33cb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-fixed-6750 .alert_33cb li {
    margin-bottom: 0.65rem;
}

.label-fixed-6750 .alert_33cb li:last-child {
    margin-bottom: 0;
}

.label-fixed-6750 .popup_2581 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label-fixed-6750 .popup_2581 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.narrow-d65d {
    background: #f8f9fa;
    color: #2c3e50;
}

.narrow-d65d .grid-357d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.narrow-d65d .in_1bb2 {
    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);
}

.narrow-d65d .in_1bb2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.narrow-d65d .in_1bb2 p:last-child {
    margin-bottom: 0;
}

.narrow-d65d .in_1bb2 strong {
    color: var(--text-primary);
}

.narrow-d65d .notice_short_7d92 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.narrow-d65d .notice_short_7d92 li {
    margin-bottom: 0.65rem;
}

.narrow-d65d .notice_short_7d92 li:last-child {
    margin-bottom: 0;
}

.narrow-d65d .block_simple_800c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.narrow-d65d .block_simple_800c 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-99d3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pro-99d3 .column-78fb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pro-99d3 .paper-81b5 {
    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-99d3 .paper-81b5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro-99d3 .paper-81b5 p:last-child {
    margin-bottom: 0;
}

.pro-99d3 .paper-81b5 strong {
    color: var(--text-primary);
}

.pro-99d3 .solid_9aba {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro-99d3 .solid_9aba li {
    margin-bottom: 0.65rem;
}

.pro-99d3 .solid_9aba li:last-child {
    margin-bottom: 0;
}

body.element_f926 {
    background: #f8f9fa;
    color: #2c3e50;
}

.element_f926 .easy_0e8e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.element_f926 .photo_adb0 {
    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);
}

.element_f926 .photo_adb0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element_f926 .photo_adb0 p:last-child {
    margin-bottom: 0;
}

.element_f926 .photo_adb0 strong {
    color: var(--text-primary);
}

.element_f926 .carousel-action-8bb6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element_f926 .carousel-action-8bb6 li {
    margin-bottom: 0.65rem;
}

.element_f926 .carousel-action-8bb6 li:last-child {
    margin-bottom: 0;
}

.element_f926 .tooltip_steel_9628 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.element_f926 .tooltip_steel_9628 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.avatar-liquid-eafb {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar-liquid-eafb .focus_b1e8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar-liquid-eafb .link_dark_8fbb {
    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);
}

.avatar-liquid-eafb .link_dark_8fbb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar-liquid-eafb .link_dark_8fbb p:last-child {
    margin-bottom: 0;
}

.avatar-liquid-eafb .link_dark_8fbb strong {
    color: var(--text-primary);
}

.avatar-liquid-eafb .thumbnail_1d32 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar-liquid-eafb .thumbnail_1d32 li {
    margin-bottom: 0.65rem;
}

.avatar-liquid-eafb .thumbnail_1d32 li:last-child {
    margin-bottom: 0;
}

.avatar-liquid-eafb .title_action_22d8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar-liquid-eafb .title_action_22d8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.item-68cb {
    background: #f8f9fa;
    color: #2c3e50;
}

.item-68cb .carousel-up-4bb6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.item-68cb .first_3aec {
    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);
}

.item-68cb .first_3aec p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item-68cb .first_3aec p:last-child {
    margin-bottom: 0;
}

.item-68cb .first_3aec strong {
    color: var(--text-primary);
}

.item-68cb .column_9f63 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item-68cb .column_9f63 li {
    margin-bottom: 0.65rem;
}

.item-68cb .column_9f63 li:last-child {
    margin-bottom: 0;
}

.item-68cb .component_f3ac {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.item-68cb .component_f3ac img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.section_under_8072 {
    background: #f8f9fa;
    color: #2c3e50;
}

.section_under_8072 .fixed-5333 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.section_under_8072 .in-27a9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.section_under_8072 .in-27a9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_under_8072 .in-27a9 p:last-child {
    margin-bottom: 0;
}

.section_under_8072 .in-27a9 strong {
    color: var(--text-primary);
}

.section_under_8072 .shade_up_ccfa {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.section_under_8072 .shade_up_ccfa li {
    margin-bottom: 0.65rem;
}

.section_under_8072 .shade_up_ccfa li:last-child {
    margin-bottom: 0;
}

.section_under_8072 .pressed-8df9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.section_under_8072 .pressed-8df9 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: 4633 */
.shadow-element-w2 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
