/* 
 * 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.white_b62d) — fixed together on mobile */
.message_baae {
    width: 100%;
}

.inner_e232 {
    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) {
    .message_baae {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .inner_e232 {
        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.bronze-e63e. Conta) stay reachable.
     */
    .plasma_4da9 .wood_417d {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .message_baae .plasma_4da9 > .wood_417d {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .message_baae:has(.secondary-684d.fn-show-37f7) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .message_baae:has(.secondary-684d.fn-show-37f7) .inner_e232 {
        flex-shrink: 0;
    }

    .message_baae:has(.secondary-684d.fn-show-37f7) .plasma_4da9 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .message_baae:has(.secondary-684d.fn-show-37f7) .plasma_4da9 > .wood_417d {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .message_baae:has(.secondary-684d.fn-show-37f7) .item-045b {
        flex-shrink: 0;
    }

    .message_baae:has(.secondary-684d.fn-show-37f7) .secondary-684d.fn-show-37f7 {
        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 */
    .plasma_4da9 .secondary-684d .avatar-full-2b06.fn-active-37f7 .up-d5ad {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .inner_e232 {
        position: sticky;
        top: 0;
    }
}

.message_baae.info-80a6,
.message_baae.info-80a6 .inner_e232 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.black-61e0 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .black-61e0 {
        padding: 0.75rem 0;
    }
}

.border_d4b6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.container-dark-948d img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .container-dark-948d img {
        height: 35px;
    }
}

/* .plasma_4da9 / .header_56cc — inner pages (brown bar); index uses .input_red_0a81 below */

.plasma_4da9:not(.input_red_0a81) .header_56cc.fn-active-37f7 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.complex_f9d6 {
    display: flex;
    gap: var(--spacing-md);
}

.lower_1d7a,
.tabs_31e7 {
    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) {
    .lower_1d7a,
    .tabs_31e7 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .complex_f9d6 {
        gap: 0.5rem;
    }
}

.lower_1d7a {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.lower_1d7a:hover {
    background: var(--primary-purple);
    color: white;
}

.tabs_31e7 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.tabs_31e7:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.article_purple_4f47 {
    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%;
}

.article_purple_4f47::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;
}

.article_purple_4f47::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;
}

.warm_b9ae {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.form-silver-0ddf {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.form-silver-0ddf 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);
}

.article_purple_4f47 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;
}

.icon-2df5 {
    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;
}

.icon-2df5 strong {
    font-weight: 700;
}

.badge-pressed-dd1e {
    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);
}

.module_narrow_ec38 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.search_3aaf {
    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);
}

.search_3aaf:hover {
    transform: translateY(-4px);
}

.message-bdc9 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.paragraph-black-1dd4 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.filter_e11f {
    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;
}

.filter_e11f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.filter_e11f.silver-c988 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.feature-wide-a1c2 {
    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);
}

.feature-wide-a1c2:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.info-4af8 {
    padding: 3rem 1.25rem;
    background: white;
}

.list-35ac {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.image_over_bee1 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.image_over_bee1:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.image_over_bee1 img {
    margin-bottom: 1rem;
}

.module-fast-0689 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.image_over_bee1 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.image_over_bee1 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 */
.dim_ff57 {
    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);
}

.message_ba82 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.badge-6989 {
    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);
}

.badge-6989 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.badge-6989 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.badge-6989 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.search-smooth-04d5 {
    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
   ======================================== */

.outline-4fc1 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sort_6e0c {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.card-medium-9430 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.hot_d203 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-purple-e095 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.hero-purple-e095:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.hero-purple-e095.mask_thick_ac34 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-purple-e095.mask_thick_ac34 h3,
.hero-purple-e095.mask_thick_ac34 p {
    color: white;
}

.cold_bb3c {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-purple-e095 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.hero-purple-e095 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fresh_a5b8 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.fresh_a5b8:hover {
    gap: 0.75rem;
}

.hero-purple-e095.mask_thick_ac34 .fresh_a5b8 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.under_9dff {
    padding: 4rem 1.25rem;
    background: white;
}

.title_676f {
    text-align: center;
    margin-bottom: 3rem;
}

.outer-dcb1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.surface-3de1 {
    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%;
}

.surface-3de1:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.avatar_c948 {
    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);
}

.wood-0f4f {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.progress_caf3 {
    padding: 1.5rem;
}

.progress_caf3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.media_5f06 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.center_b673 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.info-cold-ebf9,
.thick_655e {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.info-cold-ebf9 {
    background: #dcfce7;
    color: #166534;
}

.info-cold-ebf9.modal-red-b0c1 {
    background: #10b981;
    color: white;
}

.thick_655e {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.thick_655e.button_e928 {
    background: #fee2e2;
    color: #991b1b;
}

.thick_655e.chip_a9cd {
    background: #fef3c7;
    color: #92400e;
}

.thick_655e.media-82f1 {
    background: #dcfce7;
    color: #166534;
}

.disabled_6fa4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.disabled_6fa4 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.article-iron-1a6b {
    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);
}

.article-iron-1a6b:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.overlay_full_3ae5 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.hero_bc41 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.bright_0e34 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bright_0e34 {
        grid-template-columns: 1fr 1fr;
    }
}

.frame_down_4b32 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.black-f00d h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.paragraph-1a0f {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.solid_d6df {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.layout-clean-2553 {
    font-size: 1rem;
    opacity: 0.9;
}

.black-f00d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.grid_warm_1b6b {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.grid_warm_1b6b li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.grid_warm_1b6b 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;
}

.grid_warm_1b6b li strong {
    color: var(--primary-purple);
}

.grid_warm_1b6b li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.panel_lower_72c0 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.action-dfa1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.gas-7692 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.action-dfa1 .paragraph-black-1dd4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.description_cool_3e60 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.aside_5c16 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.aside_5c16 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.bright_cca3 {
    padding: 4rem 1.25rem;
    background: white;
}

.soft-68c8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .soft-68c8 {
        grid-template-columns: 1fr 1fr;
    }
}

.preview-hot-a4c7 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.popup-0253 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.accordion_bright_13f4 {
    margin-bottom: 1.5rem;
}

.search-thick-a052 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.secondary-b277 {
    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);
}

.left_e88d {
    white-space: nowrap;
}

.orange-7bf3 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.stale-ab88 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.photo-c107 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.photo-c107:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.menu_e85f {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-mini-1ca5 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.status-mini-1ca5 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.texture_ce1d {
    margin-top: 3rem;
}

.texture_ce1d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pattern_tiny_387c {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pattern_tiny_387c thead {
    background: var(--primary-purple);
    color: white;
}

.pattern_tiny_387c th,
.pattern_tiny_387c td {
    padding: 1rem;
    text-align: left;
}

.pattern_tiny_387c th {
    font-weight: 700;
    font-size: 0.9rem;
}

.pattern_tiny_387c tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.pattern_tiny_387c tbody tr:last-child {
    border-bottom: none;
}

.pattern_tiny_387c tbody tr:hover {
    background: var(--light-bg);
}

.shade-93af {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.disabled_54c8 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.dark_f4a4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.frame-247c {
    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);
}

.frame-247c:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.frame-247c.overlay-narrow-2150::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;
}

.breadcrumb_85c1 {
    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;
}

.item_158c {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.gradient_dce9 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.center_cae4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.slider_de25 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.slider_de25 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.slider_de25 p:last-child {
    margin-bottom: 0;
}

.slider_de25 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.grid-3664 {
    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;
}

.heading_2c1f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.layout_7a0b {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.layout_7a0b .message-bdc9 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.layout_7a0b .paragraph-black-1dd4 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.content_f1a5 {
    padding: 4rem 1.25rem;
    background: white;
}

.yellow-2fa6 {
    max-width: 900px;
    margin: 0 auto;
}

.heading_easy_fb00 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.heading_easy_fb00:hover {
    border-color: var(--primary-purple);
}

.heading_easy_fb00[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.heading_easy_fb00 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;
}

.heading_easy_fb00 summary::-webkit-details-marker {
    display: none;
}

.heading_easy_fb00 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.heading_easy_fb00[open] summary::after {
    transform: rotate(45deg);
}

.hero_fresh_8aac {
    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);
    }
}

.hero_fresh_8aac p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero_fresh_8aac h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.hero_fresh_8aac ul,
.hero_fresh_8aac ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.hero_fresh_8aac li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero_fresh_8aac strong {
    color: var(--text-primary);
    font-weight: 600;
}

.video-027e {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.panel-prev-cb4e {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.panel-prev-cb4e th,
.panel-prev-cb4e td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.panel-prev-cb4e th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.focus-4fff {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.advanced_31d2 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.prev_3be7 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .prev_3be7 {
        flex-direction: column;
        text-align: center;
    }
}

.prev_3be7 img {
    flex-shrink: 0;
}

.popup-8d4c {
    font-size: 4rem;
    flex-shrink: 0;
}

.progress-8548 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.progress-8548 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.image_49b6 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.copper-430e {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.hidden_f525 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hidden_f525 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.message_8d99 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.modal_fast_174a {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.nav-aa06 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.block-db7e h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.block-db7e p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.modal-dd96 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.preview-5cfa {
    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);
}

.tertiary_7d37 {
    list-style: none;
}

.tertiary_7d37 li {
    margin-bottom: 0.75rem;
}

.tertiary_7d37 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.tertiary_7d37 a:hover {
    color: white;
}

.pattern-stone-99f9 {
    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;
}

.progress_stone_e390 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.progress_stone_e390 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.filter-c429 {
    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_steel_4362 {
    text-align: right;
}

@media (max-width: 767px) {
    .hover_steel_4362 {
        text-align: center;
        width: 100%;
    }
}

.hover_steel_4362 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.liquid_07e2 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.wood_417d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.info-4af8,
.dim_ff57,
.outline-4fc1,
.under_9dff,
.hero_bc41,
.bright_cca3,
.disabled_54c8,
.content_f1a5,
.advanced_31d2,
.copper-430e {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .sort_6e0c {
        font-size: 1.75rem;
    }
    
    .card-medium-9430 {
        font-size: 1rem;
    }
    
    .panel_lower_72c0 {
        flex-direction: column;
    }
    
    .soft-68c8 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .outer-dcb1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .surface-3de1 {
        max-width: 100%;
    }
    
    .wood-0f4f {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .wood_417d {
        padding: 0 1rem;
    }
    
    .article_purple_4f47 {
        padding: 4rem 1rem 3rem;
    }
    
    .article_purple_4f47 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .filter_e11f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .module_narrow_ec38 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .pattern_tiny_387c,
    .panel-prev-cb4e {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .list-35ac {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .hot_d203 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .dark_f4a4 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .article_purple_4f47 h1 {
        font-size: 1.5rem;
    }
    
    .module_narrow_ec38 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .search_3aaf {
        padding: 0.75rem;
    }
    
    .message-bdc9 {
        font-size: 1.5rem;
    }
    
    .list-35ac {
        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 */
.surface-3de1:hover,
.hero-purple-e095:hover,
.frame-247c:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .under_9dff,
    .disabled_54c8,
    .content_f1a5 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.white_b62d)
   ======================================== */

.plasma_4da9.input_red_0a81 {
    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;
}

.plasma_4da9.input_red_0a81 .header_56cc {
    color: #334155;
}

.plasma_4da9.input_red_0a81 .header_56cc:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.plasma_4da9.input_red_0a81 .header_56cc.fn-active-37f7 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.plasma_4da9.input_red_0a81 .up-d5ad {
    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);
}

.plasma_4da9.input_red_0a81 .up-d5ad::before {
    border-bottom-color: #ffffff;
}

.plasma_4da9.input_red_0a81 .pink-015e {
    color: #475569;
}

.plasma_4da9.input_red_0a81 .pink-015e::before {
    background: #818cf8;
}

.plasma_4da9.input_red_0a81 .pink-015e:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.plasma_4da9.input_red_0a81 .pink-015e:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.plasma_4da9.input_red_0a81 .accent_f2fe {
    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);
}

.plasma_4da9.input_red_0a81 .accent_f2fe:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.plasma_4da9.input_red_0a81 .accent_f2fe span {
    background: #475569;
    box-shadow: none;
}

.plasma_4da9.input_red_0a81 .accent_f2fe.fn-active-37f7 span:nth-child(1),
.plasma_4da9.input_red_0a81 .accent_f2fe.fn-active-37f7 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .plasma_4da9.input_red_0a81 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .plasma_4da9.input_red_0a81 .item-045b {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .plasma_4da9.input_red_0a81 .item-045b span {
        color: #334155 !important;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d {
        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);
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .header_56cc {
        color: #334155;
        text-shadow: none;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .header_56cc:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .header_56cc.shade-current-ad53::after {
        color: #64748b;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .up-d5ad {
        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) */
    .plasma_4da9.input_red_0a81 .secondary-684d .avatar-full-2b06.fn-active-37f7 .up-d5ad {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .pink-015e {
        color: #475569;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .pink-015e::before {
        color: #6366f1;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .pink-015e:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .pink-015e:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .plasma_4da9.input_red_0a81 .secondary-684d .pink-015e:hover::before {
        color: #4f46e5;
    }
}

/* apk.shadow-8943 — mesmo tema claro da home; blocos extras */
body.overlay-green-0f27 {
    background: #f8f9fa;
    color: #2c3e50;
}

.overlay-green-0f27 .tooltip-b83f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.overlay-green-0f27 .south_988c {
    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-green-0f27 .south_988c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay-green-0f27 .south_988c p:last-child {
    margin-bottom: 0;
}

.overlay-green-0f27 .south_988c strong {
    color: var(--text-primary);
}

.overlay-green-0f27 .right_f5ac {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.overlay-green-0f27 .right_f5ac 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-complex-e0e9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-complex-e0e9 .outline_up_be7d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-complex-e0e9 .black_e54e {
    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-complex-e0e9 .black_e54e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-complex-e0e9 .black_e54e p:last-child {
    margin-bottom: 0;
}

.button-complex-e0e9 .black_e54e strong {
    color: var(--text-primary);
}

.button-complex-e0e9 .simple-a32f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-complex-e0e9 .simple-a32f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.over-b58d {
    background: #f8f9fa;
    color: #2c3e50;
}

.over-b58d .fluid_42cd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.over-b58d .hot-0b31 {
    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);
}

.over-b58d .hot-0b31 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.over-b58d .hot-0b31 p:last-child {
    margin-bottom: 0;
}

.over-b58d .hot-0b31 strong {
    color: var(--text-primary);
}

.over-b58d .basic_de7b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.over-b58d .basic_de7b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.aside-aa6e {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside-aa6e .chip_8aeb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside-aa6e .modal-c341 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.aside-aa6e .modal-c341 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-aa6e .modal-c341 p:last-child {
    margin-bottom: 0;
}

.aside-aa6e .modal-c341 strong {
    color: var(--text-primary);
}

.aside-aa6e .avatar-a236 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.aside-aa6e .avatar-a236 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer-pink-3c7c {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer-pink-3c7c .module-e2ad {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer-pink-3c7c .outline_full_f0e9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.footer-pink-3c7c .outline_full_f0e9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-pink-3c7c .outline_full_f0e9 p:last-child {
    margin-bottom: 0;
}

.footer-pink-3c7c .outline_full_f0e9 strong {
    color: var(--text-primary);
}

.footer-pink-3c7c .pagination_da77 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer-pink-3c7c .pagination_da77 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.description-69d1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.description-69d1 .active-75c5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description-69d1 .tooltip_88fe {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.description-69d1 .tooltip_88fe p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description-69d1 .tooltip_88fe p:last-child {
    margin-bottom: 0;
}

.description-69d1 .tooltip_88fe strong {
    color: var(--text-primary);
}

.description-69d1 .picture-59da {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.description-69d1 .picture-59da img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.full_5b32 {
    background: #f8f9fa;
    color: #2c3e50;
}

.full_5b32 .container-wide-a61c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.full_5b32 .info_complex_6e81 {
    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);
}

.full_5b32 .info_complex_6e81 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.full_5b32 .info_complex_6e81 p:last-child {
    margin-bottom: 0;
}

.full_5b32 .info_complex_6e81 strong {
    color: var(--text-primary);
}

.full_5b32 .chip_9e86 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.full_5b32 .chip_9e86 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.silver-e4a3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.silver-e4a3 .left-1335 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.silver-e4a3 .heading_current_a7f0 {
    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);
}

.silver-e4a3 .heading_current_a7f0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver-e4a3 .heading_current_a7f0 p:last-child {
    margin-bottom: 0;
}

.silver-e4a3 .heading_current_a7f0 strong {
    color: var(--text-primary);
}

.silver-e4a3 .blue_84c2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.silver-e4a3 .blue_84c2 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-dim-394e {
    background: #f8f9fa;
    color: #2c3e50;
}

.overlay-dim-394e .summary_f543 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.overlay-dim-394e .popup_dark_de4a {
    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-dim-394e .popup_dark_de4a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay-dim-394e .popup_dark_de4a p:last-child {
    margin-bottom: 0;
}

.overlay-dim-394e .popup_dark_de4a strong {
    color: var(--text-primary);
}

.overlay-dim-394e .tabs-soft-df75 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.overlay-dim-394e .tabs-soft-df75 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.row-dirty-251e {
    background: #f8f9fa;
    color: #2c3e50;
}

.row-dirty-251e .small-3b33 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.row-dirty-251e .cool-56c3 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.row-dirty-251e .cool-56c3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.row-dirty-251e .cool-56c3 p:last-child {
    margin-bottom: 0;
}

.row-dirty-251e .cool-56c3 strong {
    color: var(--text-primary);
}

.row-dirty-251e .pattern-5c92 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.row-dirty-251e .pattern-5c92 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper_stone_40fd {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper_stone_40fd .photo_soft_a97f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper_stone_40fd .media_7b16 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.wrapper_stone_40fd .media_7b16 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_stone_40fd .media_7b16 p:last-child {
    margin-bottom: 0;
}

.wrapper_stone_40fd .media_7b16 strong {
    color: var(--text-primary);
}

.wrapper_stone_40fd .filter_a5a7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_stone_40fd .filter_a5a7 li {
    margin-bottom: 0.65rem;
}

.wrapper_stone_40fd .filter_a5a7 li:last-child {
    margin-bottom: 0;
}

.wrapper_stone_40fd .slider-medium-a11e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper_stone_40fd .slider-medium-a11e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.photo_paper_3f5c {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo_paper_3f5c .outline-pressed-9903 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo_paper_3f5c .summary_top_46cb {
    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);
}

.photo_paper_3f5c .summary_top_46cb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_paper_3f5c .summary_top_46cb p:last-child {
    margin-bottom: 0;
}

.photo_paper_3f5c .summary_top_46cb strong {
    color: var(--text-primary);
}

.photo_paper_3f5c .prev-7aa3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_paper_3f5c .prev-7aa3 li {
    margin-bottom: 0.65rem;
}

.photo_paper_3f5c .prev-7aa3 li:last-child {
    margin-bottom: 0;
}

.photo_paper_3f5c .highlight_3030 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo_paper_3f5c .highlight_3030 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.image_9c83 {
    background: #f8f9fa;
    color: #2c3e50;
}

.image_9c83 .wood_3aff {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.image_9c83 .header-0c86 {
    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);
}

.image_9c83 .header-0c86 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.image_9c83 .header-0c86 p:last-child {
    margin-bottom: 0;
}

.image_9c83 .header-0c86 strong {
    color: var(--text-primary);
}

.image_9c83 .filter_9167 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.image_9c83 .filter_9167 li {
    margin-bottom: 0.65rem;
}

.image_9c83 .filter_9167 li:last-child {
    margin-bottom: 0;
}

.image_9c83 .chip-b699 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.image_9c83 .chip-b699 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dynamic-fe2a {
    background: #f8f9fa;
    color: #2c3e50;
}

.dynamic-fe2a .popup-2070 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dynamic-fe2a .preview_49b2 {
    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);
}

.dynamic-fe2a .preview_49b2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dynamic-fe2a .preview_49b2 p:last-child {
    margin-bottom: 0;
}

.dynamic-fe2a .preview_49b2 strong {
    color: var(--text-primary);
}

.dynamic-fe2a .caption_white_2014 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dynamic-fe2a .caption_white_2014 li {
    margin-bottom: 0.65rem;
}

.dynamic-fe2a .caption_white_2014 li:last-child {
    margin-bottom: 0;
}

body.box-549d {
    background: #f8f9fa;
    color: #2c3e50;
}

.box-549d .medium_43d3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.box-549d .stone-e051 {
    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);
}

.box-549d .stone-e051 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.box-549d .stone-e051 p:last-child {
    margin-bottom: 0;
}

.box-549d .stone-e051 strong {
    color: var(--text-primary);
}

.box-549d .advanced_4bfb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.box-549d .advanced_4bfb li {
    margin-bottom: 0.65rem;
}

.box-549d .advanced_4bfb li:last-child {
    margin-bottom: 0;
}

.box-549d .border-071a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.box-549d .border-071a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.left-be80 {
    background: #f8f9fa;
    color: #2c3e50;
}

.left-be80 .breadcrumb_4b97 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.left-be80 .gradient-de45 {
    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);
}

.left-be80 .gradient-de45 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.left-be80 .gradient-de45 p:last-child {
    margin-bottom: 0;
}

.left-be80 .gradient-de45 strong {
    color: var(--text-primary);
}

.left-be80 .lower-02fa {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.left-be80 .lower-02fa li {
    margin-bottom: 0.65rem;
}

.left-be80 .lower-02fa li:last-child {
    margin-bottom: 0;
}

.left-be80 .form_current_8769 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.left-be80 .form_current_8769 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.title-short-deb5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-short-deb5 .section_ab03 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-short-deb5 .paper-c23f {
    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);
}

.title-short-deb5 .paper-c23f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-short-deb5 .paper-c23f p:last-child {
    margin-bottom: 0;
}

.title-short-deb5 .paper-c23f strong {
    color: var(--text-primary);
}

.title-short-deb5 .form_ee69 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-short-deb5 .form_ee69 li {
    margin-bottom: 0.65rem;
}

.title-short-deb5 .form_ee69 li:last-child {
    margin-bottom: 0;
}

.title-short-deb5 .avatar_0114 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title-short-deb5 .avatar_0114 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.static-5183 {
    background: #f8f9fa;
    color: #2c3e50;
}

.static-5183 .active_74af {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.static-5183 .input-d2a9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.static-5183 .input-d2a9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-5183 .input-d2a9 p:last-child {
    margin-bottom: 0;
}

.static-5183 .input-d2a9 strong {
    color: var(--text-primary);
}

.static-5183 .feature-ba54 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.static-5183 .feature-ba54 li {
    margin-bottom: 0.65rem;
}

.static-5183 .feature-ba54 li:last-child {
    margin-bottom: 0;
}

.static-5183 .input-gas-9a82 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.static-5183 .input-gas-9a82 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: 5ba8 */
.widget-item-y9 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
