/* 
 * 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.link_1840) — fixed together on mobile */
.panel-e21b {
    width: 100%;
}

.filter_top_f5f0 {
    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) {
    .panel-e21b {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .filter_top_f5f0 {
        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.shade-gold-3084. Conta) stay reachable.
     */
    .notice-4390 .component_a2cf {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .panel-e21b .notice-4390 > .component_a2cf {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .panel-e21b:has(.accordion-huge-7c2c.fn-show-c2b9) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .panel-e21b:has(.accordion-huge-7c2c.fn-show-c2b9) .filter_top_f5f0 {
        flex-shrink: 0;
    }

    .panel-e21b:has(.accordion-huge-7c2c.fn-show-c2b9) .notice-4390 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .panel-e21b:has(.accordion-huge-7c2c.fn-show-c2b9) .notice-4390 > .component_a2cf {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .panel-e21b:has(.accordion-huge-7c2c.fn-show-c2b9) .sort-eb0c {
        flex-shrink: 0;
    }

    .panel-e21b:has(.accordion-huge-7c2c.fn-show-c2b9) .accordion-huge-7c2c.fn-show-c2b9 {
        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 */
    .notice-4390 .accordion-huge-7c2c .highlight-active-291a.fn-active-c2b9 .last-852a {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .filter_top_f5f0 {
        position: sticky;
        top: 0;
    }
}

.panel-e21b.panel_brown_937d,
.panel-e21b.panel_brown_937d .filter_top_f5f0 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.paragraph-dynamic-f563 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .paragraph-dynamic-f563 {
        padding: 0.75rem 0;
    }
}

.short-07f6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.border_4ab6 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .border_4ab6 img {
        height: 35px;
    }
}

/* .notice-4390 / .dirty-21f0 — inner pages (brown bar); index uses .lower-9718 below */

.notice-4390:not(.lower-9718) .dirty-21f0.fn-active-c2b9 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.active_a131 {
    display: flex;
    gap: var(--spacing-md);
}

.caption_6532,
.overlay-pressed-d000 {
    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) {
    .caption_6532,
    .overlay-pressed-d000 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .active_a131 {
        gap: 0.5rem;
    }
}

.caption_6532 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.caption_6532:hover {
    background: var(--primary-purple);
    color: white;
}

.overlay-pressed-d000 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.overlay-pressed-d000:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.hidden_complex_643f {
    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%;
}

.hidden_complex_643f::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;
}

.hidden_complex_643f::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;
}

.banner_middle_1c8b {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.hover_medium_d96b {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.hover_medium_d96b 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);
}

.hidden_complex_643f 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;
}

.hover-3e78 {
    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;
}

.hover-3e78 strong {
    font-weight: 700;
}

.hovered-bd69 {
    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);
}

.hero_hard_67bf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.box-2805 {
    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);
}

.box-2805:hover {
    transform: translateY(-4px);
}

.dim_0b88 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.notification-cold-cd05 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.main-advanced-4c11 {
    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;
}

.main-advanced-4c11:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.main-advanced-4c11.link-9e5a {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.background_a491 {
    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);
}

.background_a491:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.module_old_bca2 {
    padding: 3rem 1.25rem;
    background: white;
}

.article_silver_959d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.description_dynamic_1f09 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.description_dynamic_1f09:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.description_dynamic_1f09 img {
    margin-bottom: 1rem;
}

.info-wood-28bd {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.description_dynamic_1f09 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.description_dynamic_1f09 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 */
.notice_bright_677d {
    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);
}

.highlight_d5ef {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.notification-copper-e5e6 {
    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);
}

.notification-copper-e5e6 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.notification-copper-e5e6 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.notification-copper-e5e6 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sidebar_next_8228 {
    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
   ======================================== */

.heading-brown-62ca {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.element_3c0d {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.popup-dim-5d7f {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.middle_c9f6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-short-4136 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.photo-short-4136:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.photo-short-4136.section_80e3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.photo-short-4136.section_80e3 h3,
.photo-short-4136.section_80e3 p {
    color: white;
}

.shade_narrow_e1cd {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.photo-short-4136 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.photo-short-4136 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.list-08e5 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.list-08e5:hover {
    gap: 0.75rem;
}

.photo-short-4136.section_80e3 .list-08e5 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.search_hard_4f2c {
    padding: 4rem 1.25rem;
    background: white;
}

.prev_1dc0 {
    text-align: center;
    margin-bottom: 3rem;
}

.tag_bfce {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.main-paper-cde4 {
    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%;
}

.main-paper-cde4:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.current_29eb {
    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);
}

.column-hard-1b71 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.hovered_210c {
    padding: 1.5rem;
}

.hovered_210c h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.layout-static-b343 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gold_452b {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.border_large_8029,
.content_hard_9df5 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.border_large_8029 {
    background: #dcfce7;
    color: #166534;
}

.border_large_8029.input-5e95 {
    background: #10b981;
    color: white;
}

.content_hard_9df5 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.content_hard_9df5.complex-ab7f {
    background: #fee2e2;
    color: #991b1b;
}

.content_hard_9df5.complex-249c {
    background: #fef3c7;
    color: #92400e;
}

.content_hard_9df5.outer-9cef {
    background: #dcfce7;
    color: #166534;
}

.slider-soft-082b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.slider-soft-082b strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.status_81cd {
    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);
}

.status_81cd:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.summary-3c4d {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.avatar-left-765a {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.focus-solid-2f36 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .focus-solid-2f36 {
        grid-template-columns: 1fr 1fr;
    }
}

.inner_904f img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.paper-bb48 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.modal_e1b5 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.container-upper-3128 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hovered_c4db {
    font-size: 1rem;
    opacity: 0.9;
}

.paper-bb48 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature_up_ab9a {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.feature_up_ab9a li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.feature_up_ab9a 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;
}

.feature_up_ab9a li strong {
    color: var(--primary-purple);
}

.feature_up_ab9a li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.top-fcaf {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.icon_ee78 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.backdrop_7ee3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.icon_ee78 .notification-cold-cd05 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.banner-f4c2 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.aside_bf0e {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.aside_bf0e a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.box_left_c1e4 {
    padding: 4rem 1.25rem;
    background: white;
}

.footer-yellow-6623 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .footer-yellow-6623 {
        grid-template-columns: 1fr 1fr;
    }
}

.description-6032 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.middle-43c7 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.detail-large-c2c9 {
    margin-bottom: 1.5rem;
}

.content-in-5c36 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.upper_b949 {
    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);
}

.box-92ff {
    white-space: nowrap;
}

.bronze-4512 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.active-f186 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.frame-3145 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.frame-3145:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.shadow-static-b750 {
    font-size: 2rem;
    flex-shrink: 0;
}

.message_116d h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.message_116d p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.progress-plasma-f29d {
    margin-top: 3rem;
}

.progress-plasma-f29d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.warm_1025 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.warm_1025 thead {
    background: var(--primary-purple);
    color: white;
}

.warm_1025 th,
.warm_1025 td {
    padding: 1rem;
    text-align: left;
}

.warm_1025 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.warm_1025 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.warm_1025 tbody tr:last-child {
    border-bottom: none;
}

.warm_1025 tbody tr:hover {
    background: var(--light-bg);
}

.smooth_6e64 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.wrapper_orange_9953 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.focus_fixed_c1b0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.main_brown_8ce7 {
    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);
}

.main_brown_8ce7:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.main_brown_8ce7.inner-b93d::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;
}

.right-0f9b {
    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;
}

.shadow_1f56 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.small-f2e6 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.brown_22ed {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-9001 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.feature-9001 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.feature-9001 p:last-child {
    margin-bottom: 0;
}

.feature-9001 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.texture-5aeb {
    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;
}

.last-226e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.easy-d414 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.easy-d414 .dim_0b88 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.easy-d414 .notification-cold-cd05 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.short-13aa {
    padding: 4rem 1.25rem;
    background: white;
}

.nav-motion-c339 {
    max-width: 900px;
    margin: 0 auto;
}

.gallery_clean_6818 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.gallery_clean_6818:hover {
    border-color: var(--primary-purple);
}

.gallery_clean_6818[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.gallery_clean_6818 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;
}

.gallery_clean_6818 summary::-webkit-details-marker {
    display: none;
}

.gallery_clean_6818 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.gallery_clean_6818[open] summary::after {
    transform: rotate(45deg);
}

.column_rough_a25c {
    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);
    }
}

.column_rough_a25c p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.column_rough_a25c h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.column_rough_a25c ul,
.column_rough_a25c ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.column_rough_a25c li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.column_rough_a25c strong {
    color: var(--text-primary);
    font-weight: 600;
}

.sidebar-0c0d {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.in_0f8a {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.in_0f8a th,
.in_0f8a td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.in_0f8a th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.center-f716 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.dropdown_c834 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.info_large_2875 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .info_large_2875 {
        flex-direction: column;
        text-align: center;
    }
}

.info_large_2875 img {
    flex-shrink: 0;
}

.carousel_dirty_390b {
    font-size: 4rem;
    flex-shrink: 0;
}

.down_82d6 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.down_82d6 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.detail-85b4 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.basic-37a2 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.bottom-a4f9 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.bottom-a4f9 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tabs-under-8959 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.block_bottom_33e7 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.in_457b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.filter_hard_53ae h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.filter_hard_53ae p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.medium_6640 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.under_da67 {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.liquid-ea07 {
    list-style: none;
}

.liquid-ea07 li {
    margin-bottom: 0.75rem;
}

.liquid-ea07 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.liquid-ea07 a:hover {
    color: white;
}

.background-solid-b107 {
    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;
}

.badge-9ea5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-9ea5 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.article_copper_1e7d {
    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);
}

.surface-b833 {
    text-align: right;
}

@media (max-width: 767px) {
    .surface-b833 {
        text-align: center;
        width: 100%;
    }
}

.surface-b833 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.card-d6e1 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.component_a2cf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.module_old_bca2,
.notice_bright_677d,
.heading-brown-62ca,
.search_hard_4f2c,
.avatar-left-765a,
.box_left_c1e4,
.wrapper_orange_9953,
.short-13aa,
.dropdown_c834,
.basic-37a2 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .element_3c0d {
        font-size: 1.75rem;
    }
    
    .popup-dim-5d7f {
        font-size: 1rem;
    }
    
    .top-fcaf {
        flex-direction: column;
    }
    
    .footer-yellow-6623 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .tag_bfce {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-paper-cde4 {
        max-width: 100%;
    }
    
    .column-hard-1b71 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .component_a2cf {
        padding: 0 1rem;
    }
    
    .hidden_complex_643f {
        padding: 4rem 1rem 3rem;
    }
    
    .hidden_complex_643f h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .main-advanced-4c11 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero_hard_67bf {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .warm_1025,
    .in_0f8a {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .article_silver_959d {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .middle_c9f6 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .focus_fixed_c1b0 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hidden_complex_643f h1 {
        font-size: 1.5rem;
    }
    
    .hero_hard_67bf {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .box-2805 {
        padding: 0.75rem;
    }
    
    .dim_0b88 {
        font-size: 1.5rem;
    }
    
    .article_silver_959d {
        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 */
.main-paper-cde4:hover,
.photo-short-4136:hover,
.main_brown_8ce7:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .search_hard_4f2c,
    .wrapper_orange_9953,
    .short-13aa {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.link_1840)
   ======================================== */

.notice-4390.lower-9718 {
    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;
}

.notice-4390.lower-9718 .dirty-21f0 {
    color: #334155;
}

.notice-4390.lower-9718 .dirty-21f0:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.notice-4390.lower-9718 .dirty-21f0.fn-active-c2b9 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.notice-4390.lower-9718 .last-852a {
    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);
}

.notice-4390.lower-9718 .last-852a::before {
    border-bottom-color: #ffffff;
}

.notice-4390.lower-9718 .link-center-5050 {
    color: #475569;
}

.notice-4390.lower-9718 .link-center-5050::before {
    background: #818cf8;
}

.notice-4390.lower-9718 .link-center-5050:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.notice-4390.lower-9718 .link-center-5050:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.notice-4390.lower-9718 .logo_dynamic_d6af {
    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);
}

.notice-4390.lower-9718 .logo_dynamic_d6af:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.notice-4390.lower-9718 .logo_dynamic_d6af span {
    background: #475569;
    box-shadow: none;
}

.notice-4390.lower-9718 .logo_dynamic_d6af.fn-active-c2b9 span:nth-child(1),
.notice-4390.lower-9718 .logo_dynamic_d6af.fn-active-c2b9 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .notice-4390.lower-9718 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .notice-4390.lower-9718 .sort-eb0c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .notice-4390.lower-9718 .sort-eb0c span {
        color: #334155 !important;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c {
        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);
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .dirty-21f0 {
        color: #334155;
        text-shadow: none;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .dirty-21f0:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .dirty-21f0.hero_71c8::after {
        color: #64748b;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .last-852a {
        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) */
    .notice-4390.lower-9718 .accordion-huge-7c2c .highlight-active-291a.fn-active-c2b9 .last-852a {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .link-center-5050 {
        color: #475569;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .link-center-5050::before {
        color: #6366f1;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .link-center-5050:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .link-center-5050:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .notice-4390.lower-9718 .accordion-huge-7c2c .link-center-5050:hover::before {
        color: #4f46e5;
    }
}

/* apk.glass_25c7 — mesmo tema claro da home; blocos extras */
body.info_9b02 {
    background: #f8f9fa;
    color: #2c3e50;
}

.info_9b02 .paper-cf92 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.info_9b02 .footer_2c92 {
    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);
}

.info_9b02 .footer_2c92 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.info_9b02 .footer_2c92 p:last-child {
    margin-bottom: 0;
}

.info_9b02 .footer_2c92 strong {
    color: var(--text-primary);
}

.info_9b02 .active-green-fe64 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.info_9b02 .active-green-fe64 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.carousel_4c50 {
    background: #f8f9fa;
    color: #2c3e50;
}

.carousel_4c50 .hot-a199 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.carousel_4c50 .dropdown_a6fe {
    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);
}

.carousel_4c50 .dropdown_a6fe p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel_4c50 .dropdown_a6fe p:last-child {
    margin-bottom: 0;
}

.carousel_4c50 .dropdown_a6fe strong {
    color: var(--text-primary);
}

.carousel_4c50 .column_glass_0919 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.carousel_4c50 .column_glass_0919 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hover-inner-5fcf {
    background: #f8f9fa;
    color: #2c3e50;
}

.hover-inner-5fcf .heading-stale-0998 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hover-inner-5fcf .outline_ffd0 {
    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);
}

.hover-inner-5fcf .outline_ffd0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hover-inner-5fcf .outline_ffd0 p:last-child {
    margin-bottom: 0;
}

.hover-inner-5fcf .outline_ffd0 strong {
    color: var(--text-primary);
}

.hover-inner-5fcf .grid_west_c1cf {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hover-inner-5fcf .grid_west_c1cf img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.progress_simple_b23e {
    background: #f8f9fa;
    color: #2c3e50;
}

.progress_simple_b23e .focused_979e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.progress_simple_b23e .tiny-dc39 {
    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);
}

.progress_simple_b23e .tiny-dc39 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.progress_simple_b23e .tiny-dc39 p:last-child {
    margin-bottom: 0;
}

.progress_simple_b23e .tiny-dc39 strong {
    color: var(--text-primary);
}

.progress_simple_b23e .right-7b2d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.progress_simple_b23e .right-7b2d 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-motion-53dd {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo-motion-53dd .cool_3fd9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo-motion-53dd .box-6441 {
    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-motion-53dd .box-6441 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-motion-53dd .box-6441 p:last-child {
    margin-bottom: 0;
}

.photo-motion-53dd .box-6441 strong {
    color: var(--text-primary);
}

.photo-motion-53dd .highlight_stale_89af {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo-motion-53dd .highlight_stale_89af img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.background_short_46cb {
    background: #f8f9fa;
    color: #2c3e50;
}

.background_short_46cb .component_55c4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.background_short_46cb .white-28bf {
    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);
}

.background_short_46cb .white-28bf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background_short_46cb .white-28bf p:last-child {
    margin-bottom: 0;
}

.background_short_46cb .white-28bf strong {
    color: var(--text-primary);
}

.background_short_46cb .full-a92b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.background_short_46cb .full-a92b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.slider_complex_16a3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slider_complex_16a3 .breadcrumb_6e71 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slider_complex_16a3 .nav_d4ca {
    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);
}

.slider_complex_16a3 .nav_d4ca p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slider_complex_16a3 .nav_d4ca p:last-child {
    margin-bottom: 0;
}

.slider_complex_16a3 .nav_d4ca strong {
    color: var(--text-primary);
}

.slider_complex_16a3 .input_2e70 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slider_complex_16a3 .input_2e70 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.widget_7459 {
    background: #f8f9fa;
    color: #2c3e50;
}

.widget_7459 .status_left_1d44 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.widget_7459 .overlay-9052 {
    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);
}

.widget_7459 .overlay-9052 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget_7459 .overlay-9052 p:last-child {
    margin-bottom: 0;
}

.widget_7459 .overlay-9052 strong {
    color: var(--text-primary);
}

.widget_7459 .sidebar-down-c978 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.widget_7459 .sidebar-down-c978 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.in-e23e {
    background: #f8f9fa;
    color: #2c3e50;
}

.in-e23e .bronze_66cc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.in-e23e .green_e67f {
    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);
}

.in-e23e .green_e67f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.in-e23e .green_e67f p:last-child {
    margin-bottom: 0;
}

.in-e23e .green_e67f strong {
    color: var(--text-primary);
}

.in-e23e .table_dim_3639 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.in-e23e .table_dim_3639 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.west-3ca5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.west-3ca5 .shadow-soft-95dc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.west-3ca5 .avatar-c5fe {
    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);
}

.west-3ca5 .avatar-c5fe p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.west-3ca5 .avatar-c5fe p:last-child {
    margin-bottom: 0;
}

.west-3ca5 .avatar-c5fe strong {
    color: var(--text-primary);
}

.west-3ca5 .lower_2a55 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.west-3ca5 .lower_2a55 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.yellow_7d81 {
    background: #f8f9fa;
    color: #2c3e50;
}

.yellow_7d81 .container_f43e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.yellow_7d81 .modal-warm-da27 {
    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);
}

.yellow_7d81 .modal-warm-da27 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.yellow_7d81 .modal-warm-da27 p:last-child {
    margin-bottom: 0;
}

.yellow_7d81 .modal-warm-da27 strong {
    color: var(--text-primary);
}

.yellow_7d81 .info-cccd {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.yellow_7d81 .info-cccd li {
    margin-bottom: 0.65rem;
}

.yellow_7d81 .info-cccd li:last-child {
    margin-bottom: 0;
}

.yellow_7d81 .item-0612 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.yellow_7d81 .item-0612 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-d54a {
    background: #f8f9fa;
    color: #2c3e50;
}

.gradient-d54a .block_d861 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gradient-d54a .summary-c7b0 {
    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-d54a .summary-c7b0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient-d54a .summary-c7b0 p:last-child {
    margin-bottom: 0;
}

.gradient-d54a .summary-c7b0 strong {
    color: var(--text-primary);
}

.gradient-d54a .feature_out_69a2 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient-d54a .feature_out_69a2 li {
    margin-bottom: 0.65rem;
}

.gradient-d54a .feature_out_69a2 li:last-child {
    margin-bottom: 0;
}

.gradient-d54a .solid_a670 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gradient-d54a .solid_a670 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.background-mini-f39e {
    background: #f8f9fa;
    color: #2c3e50;
}

.background-mini-f39e .list_center_16ad {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.background-mini-f39e .layout-smooth-8fcf {
    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);
}

.background-mini-f39e .layout-smooth-8fcf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-mini-f39e .layout-smooth-8fcf p:last-child {
    margin-bottom: 0;
}

.background-mini-f39e .layout-smooth-8fcf strong {
    color: var(--text-primary);
}

.background-mini-f39e .chip-prev-abd1 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-mini-f39e .chip-prev-abd1 li {
    margin-bottom: 0.65rem;
}

.background-mini-f39e .chip-prev-abd1 li:last-child {
    margin-bottom: 0;
}

.background-mini-f39e .selected_9180 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.background-mini-f39e .selected_9180 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_hard_e653 {
    background: #f8f9fa;
    color: #2c3e50;
}

.row_hard_e653 .next_ec4d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.row_hard_e653 .detail-south-2b2c {
    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_hard_e653 .detail-south-2b2c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.row_hard_e653 .detail-south-2b2c p:last-child {
    margin-bottom: 0;
}

.row_hard_e653 .detail-south-2b2c strong {
    color: var(--text-primary);
}

.row_hard_e653 .layout-old-36d3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.row_hard_e653 .layout-old-36d3 li {
    margin-bottom: 0.65rem;
}

.row_hard_e653 .layout-old-36d3 li:last-child {
    margin-bottom: 0;
}

body.aside_2aab {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside_2aab .pink_29bf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside_2aab .notice_left_953e {
    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_2aab .notice_left_953e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside_2aab .notice_left_953e p:last-child {
    margin-bottom: 0;
}

.aside_2aab .notice_left_953e strong {
    color: var(--text-primary);
}

.aside_2aab .white-e77f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside_2aab .white-e77f li {
    margin-bottom: 0.65rem;
}

.aside_2aab .white-e77f li:last-child {
    margin-bottom: 0;
}

.aside_2aab .modal_pink_97f1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.aside_2aab .modal_pink_97f1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.background-bright-6ed1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.background-bright-6ed1 .link_thick_d716 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.background-bright-6ed1 .outline_middle_bade {
    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);
}

.background-bright-6ed1 .outline_middle_bade p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-bright-6ed1 .outline_middle_bade p:last-child {
    margin-bottom: 0;
}

.background-bright-6ed1 .outline_middle_bade strong {
    color: var(--text-primary);
}

.background-bright-6ed1 .middle_6d59 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.background-bright-6ed1 .middle_6d59 li {
    margin-bottom: 0.65rem;
}

.background-bright-6ed1 .middle_6d59 li:last-child {
    margin-bottom: 0;
}

.background-bright-6ed1 .search_6f97 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.background-bright-6ed1 .search_6f97 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tall-742c {
    background: #f8f9fa;
    color: #2c3e50;
}

.tall-742c .chip-7488 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tall-742c .wrapper-370e {
    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);
}

.tall-742c .wrapper-370e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tall-742c .wrapper-370e p:last-child {
    margin-bottom: 0;
}

.tall-742c .wrapper-370e strong {
    color: var(--text-primary);
}

.tall-742c .breadcrumb-outer-fb25 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tall-742c .breadcrumb-outer-fb25 li {
    margin-bottom: 0.65rem;
}

.tall-742c .breadcrumb-outer-fb25 li:last-child {
    margin-bottom: 0;
}

.tall-742c .list_west_a2a2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tall-742c .list_west_a2a2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.active-1516 {
    background: #f8f9fa;
    color: #2c3e50;
}

.active-1516 .upper_735e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active-1516 .footer-fixed-3b93 {
    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);
}

.active-1516 .footer-fixed-3b93 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-1516 .footer-fixed-3b93 p:last-child {
    margin-bottom: 0;
}

.active-1516 .footer-fixed-3b93 strong {
    color: var(--text-primary);
}

.active-1516 .banner-5d95 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-1516 .banner-5d95 li {
    margin-bottom: 0.65rem;
}

.active-1516 .banner-5d95 li:last-child {
    margin-bottom: 0;
}

.active-1516 .outline-8dd6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active-1516 .outline-8dd6 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: a512 */
.widget-item-e3 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
