/* 
 * 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.pagination_6a99) — fixed together on mobile */
.purple-1f0f {
    width: 100%;
}

.surface-light-e7d5 {
    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) {
    .purple-1f0f {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .surface-light-e7d5 {
        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.header-selected-ba70. Conta) stay reachable.
     */
    .hover_narrow_6e64 .card-a75d {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .purple-1f0f .hover_narrow_6e64 > .card-a75d {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .purple-1f0f:has(.detail_hard_c632.fn-show-8d76) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .purple-1f0f:has(.detail_hard_c632.fn-show-8d76) .surface-light-e7d5 {
        flex-shrink: 0;
    }

    .purple-1f0f:has(.detail_hard_c632.fn-show-8d76) .hover_narrow_6e64 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .purple-1f0f:has(.detail_hard_c632.fn-show-8d76) .hover_narrow_6e64 > .card-a75d {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .purple-1f0f:has(.detail_hard_c632.fn-show-8d76) .footer-25c3 {
        flex-shrink: 0;
    }

    .purple-1f0f:has(.detail_hard_c632.fn-show-8d76) .detail_hard_c632.fn-show-8d76 {
        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 */
    .hover_narrow_6e64 .detail_hard_c632 .fresh-ef87.fn-active-8d76 .module_5c70 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .surface-light-e7d5 {
        position: sticky;
        top: 0;
    }
}

.purple-1f0f.steel_539d,
.purple-1f0f.steel_539d .surface-light-e7d5 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.box-soft-30cc {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .box-soft-30cc {
        padding: 0.75rem 0;
    }
}

.nav_new_a086 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.detail-85ac img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .detail-85ac img {
        height: 35px;
    }
}

/* .hover_narrow_6e64 / .summary-prev-bbab — inner pages (brown bar); index uses .east_1dfa below */

.hover_narrow_6e64:not(.east_1dfa) .summary-prev-bbab.fn-active-8d76 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.purple-1191 {
    display: flex;
    gap: var(--spacing-md);
}

.icon_medium_7467,
.title_green_7472 {
    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) {
    .icon_medium_7467,
    .title_green_7472 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .purple-1191 {
        gap: 0.5rem;
    }
}

.icon_medium_7467 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.icon_medium_7467:hover {
    background: var(--primary-purple);
    color: white;
}

.title_green_7472 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.title_green_7472:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.grid-down-0668 {
    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%;
}

.grid-down-0668::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;
}

.grid-down-0668::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;
}

.card-fixed-4d6d {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.image_340d {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.image_340d 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);
}

.grid-down-0668 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;
}

.complex-72ff {
    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;
}

.complex-72ff strong {
    font-weight: 700;
}

.table-1f31 {
    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);
}

.medium_95e6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.outer-efe5 {
    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);
}

.outer-efe5:hover {
    transform: translateY(-4px);
}

.wide-efc8 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.status-right-b490 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.old_9630 {
    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;
}

.old_9630:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.old_9630.mask_west_26cb {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.text_ebff {
    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);
}

.text_ebff:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.secondary-a277 {
    padding: 3rem 1.25rem;
    background: white;
}

.layout_full_f7fb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner_18e7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.banner_18e7:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.banner_18e7 img {
    margin-bottom: 1rem;
}

.item-up-a445 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.banner_18e7 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.banner_18e7 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 */
.purple_172e {
    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-acd9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.accent-362b {
    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);
}

.accent-362b h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.accent-362b p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.accent-362b a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.box_0fcb {
    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
   ======================================== */

.shade-a8fe {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.message_b33d {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.texture-866a {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.frame_thick_e4df {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.filter-over-b575 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.filter-over-b575:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.filter-over-b575.item_copper_db7c {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.filter-over-b575.item_copper_db7c h3,
.filter-over-b575.item_copper_db7c p {
    color: white;
}

.progress_warm_89ae {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.filter-over-b575 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.filter-over-b575 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.lower_48ff {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.lower_48ff:hover {
    gap: 0.75rem;
}

.filter-over-b575.item_copper_db7c .lower_48ff {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.accordion-a5ae {
    padding: 4rem 1.25rem;
    background: white;
}

.photo_05ab {
    text-align: center;
    margin-bottom: 3rem;
}

.focus_0ced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.form_mini_3d5f {
    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%;
}

.form_mini_3d5f:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.header-pro-9740 {
    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);
}

.picture-clean-e650 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.pattern_4d76 {
    padding: 1.5rem;
}

.pattern_4d76 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.slider_e241 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.grid_over_12f8 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tooltip-light-08de,
.component_8219 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.tooltip-light-08de {
    background: #dcfce7;
    color: #166534;
}

.tooltip-light-08de.texture-focused-41fa {
    background: #10b981;
    color: white;
}

.component_8219 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.component_8219.hovered_4f1d {
    background: #fee2e2;
    color: #991b1b;
}

.component_8219.shadow_pro_f0c2 {
    background: #fef3c7;
    color: #92400e;
}

.component_8219.description-iron-c70d {
    background: #dcfce7;
    color: #166534;
}

.icon_action_8507 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.icon_action_8507 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.message_52f1 {
    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);
}

.message_52f1:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.dropdown_31c0 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.focus-motion-78fe {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tag_bronze_2e55 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tag_bronze_2e55 {
        grid-template-columns: 1fr 1fr;
    }
}

.border-gas-0a31 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.current-d7e0 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.stone_ae15 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.primary_hot_fc34 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.disabled-bronze-de95 {
    font-size: 1rem;
    opacity: 0.9;
}

.current-d7e0 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.top-068f {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.top-068f li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.top-068f 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;
}

.top-068f li strong {
    color: var(--primary-purple);
}

.top-068f li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.column_in_f14f {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.button_down_53f7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.search_6f98 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.button_down_53f7 .status-right-b490 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.nav-liquid-589e p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.pressed_a254 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.pressed_a254 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.tall-bbe8 {
    padding: 4rem 1.25rem;
    background: white;
}

.badge_inner_4579 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .badge_inner_4579 {
        grid-template-columns: 1fr 1fr;
    }
}

.component-lower-2517 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.up_72b4 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.tertiary-3eec {
    margin-bottom: 1.5rem;
}

.secondary-9d08 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.sort_cold_7828 {
    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);
}

.paragraph-large-ab3d {
    white-space: nowrap;
}

.feature_712d {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.description-190e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tag-selected-d3a2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.tag-selected-d3a2:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.pink_9844 {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-1376 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.caption-1376 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.lower-1d01 {
    margin-top: 3rem;
}

.lower-1d01 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.simple-d4e9 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.simple-d4e9 thead {
    background: var(--primary-purple);
    color: white;
}

.simple-d4e9 th,
.simple-d4e9 td {
    padding: 1rem;
    text-align: left;
}

.simple-d4e9 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.simple-d4e9 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.simple-d4e9 tbody tr:last-child {
    border-bottom: none;
}

.simple-d4e9 tbody tr:hover {
    background: var(--light-bg);
}

.menu_280c {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.highlight-smooth-b4be {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.highlight_0c3b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.light-6804 {
    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);
}

.light-6804:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.light-6804.pagination_781f::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;
}

.gallery_stale_3dc1 {
    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;
}

.next-fff5 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.over_8a31 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.fresh-ed35 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tooltip_40ae {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.tooltip_40ae p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.tooltip_40ae p:last-child {
    margin-bottom: 0;
}

.tooltip_40ae strong {
    color: var(--text-primary);
    font-weight: 600;
}

.item_c701 {
    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;
}

.center-8c56 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.badge-easy-6d25 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.badge-easy-6d25 .wide-efc8 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.badge-easy-6d25 .status-right-b490 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.selected_93f6 {
    padding: 4rem 1.25rem;
    background: white;
}

.black-93e8 {
    max-width: 900px;
    margin: 0 auto;
}

.gradient_red_4979 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.gradient_red_4979:hover {
    border-color: var(--primary-purple);
}

.gradient_red_4979[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.gradient_red_4979 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;
}

.gradient_red_4979 summary::-webkit-details-marker {
    display: none;
}

.gradient_red_4979 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.gradient_red_4979[open] summary::after {
    transform: rotate(45deg);
}

.left_a65f {
    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);
    }
}

.left_a65f p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.left_a65f h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.left_a65f ul,
.left_a65f ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.left_a65f li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.left_a65f strong {
    color: var(--text-primary);
    font-weight: 600;
}

.thumbnail-under-c9cb {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.bottom-6fe5 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.bottom-6fe5 th,
.bottom-6fe5 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.bottom-6fe5 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.video-4f1c {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.static_08b2 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.hero_ecc5 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .hero_ecc5 {
        flex-direction: column;
        text-align: center;
    }
}

.hero_ecc5 img {
    flex-shrink: 0;
}

.paragraph_4f49 {
    font-size: 4rem;
    flex-shrink: 0;
}

.accordion-white-7f03 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.accordion-white-7f03 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.center-3525 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.backdrop_5681 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.panel_671a h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.panel_671a > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer_bb85 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.summary-focused-b54d {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.item_4863 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.logo-d226 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.logo-d226 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.description-a072 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.soft-26bd {
    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);
}

.photo_fixed_d219 {
    list-style: none;
}

.photo_fixed_d219 li {
    margin-bottom: 0.75rem;
}

.photo_fixed_d219 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.photo_fixed_d219 a:hover {
    color: white;
}

.banner-motion-0007 {
    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;
}

.background_last_b05d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.background_last_b05d span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-thick-06d1 {
    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);
}

.texture_738a {
    text-align: right;
}

@media (max-width: 767px) {
    .texture_738a {
        text-align: center;
        width: 100%;
    }
}

.texture_738a p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.feature_hovered_8e26 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.card-a75d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.secondary-a277,
.purple_172e,
.shade-a8fe,
.accordion-a5ae,
.focus-motion-78fe,
.tall-bbe8,
.highlight-smooth-b4be,
.selected_93f6,
.static_08b2,
.backdrop_5681 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .message_b33d {
        font-size: 1.75rem;
    }
    
    .texture-866a {
        font-size: 1rem;
    }
    
    .column_in_f14f {
        flex-direction: column;
    }
    
    .badge_inner_4579 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .focus_0ced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form_mini_3d5f {
        max-width: 100%;
    }
    
    .picture-clean-e650 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .card-a75d {
        padding: 0 1rem;
    }
    
    .grid-down-0668 {
        padding: 4rem 1rem 3rem;
    }
    
    .grid-down-0668 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .old_9630 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .medium_95e6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .simple-d4e9,
    .bottom-6fe5 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .layout_full_f7fb {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .frame_thick_e4df {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .highlight_0c3b {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .grid-down-0668 h1 {
        font-size: 1.5rem;
    }
    
    .medium_95e6 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .outer-efe5 {
        padding: 0.75rem;
    }
    
    .wide-efc8 {
        font-size: 1.5rem;
    }
    
    .layout_full_f7fb {
        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 */
.form_mini_3d5f:hover,
.filter-over-b575:hover,
.light-6804:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .accordion-a5ae,
    .highlight-smooth-b4be,
    .selected_93f6 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.pagination_6a99)
   ======================================== */

.hover_narrow_6e64.east_1dfa {
    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;
}

.hover_narrow_6e64.east_1dfa .summary-prev-bbab {
    color: #334155;
}

.hover_narrow_6e64.east_1dfa .summary-prev-bbab:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.hover_narrow_6e64.east_1dfa .summary-prev-bbab.fn-active-8d76 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.hover_narrow_6e64.east_1dfa .module_5c70 {
    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);
}

.hover_narrow_6e64.east_1dfa .module_5c70::before {
    border-bottom-color: #ffffff;
}

.hover_narrow_6e64.east_1dfa .grid_5c55 {
    color: #475569;
}

.hover_narrow_6e64.east_1dfa .grid_5c55::before {
    background: #818cf8;
}

.hover_narrow_6e64.east_1dfa .grid_5c55:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.hover_narrow_6e64.east_1dfa .grid_5c55:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.hover_narrow_6e64.east_1dfa .media_4310 {
    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);
}

.hover_narrow_6e64.east_1dfa .media_4310:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.hover_narrow_6e64.east_1dfa .media_4310 span {
    background: #475569;
    box-shadow: none;
}

.hover_narrow_6e64.east_1dfa .media_4310.fn-active-8d76 span:nth-child(1),
.hover_narrow_6e64.east_1dfa .media_4310.fn-active-8d76 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .hover_narrow_6e64.east_1dfa {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .hover_narrow_6e64.east_1dfa .footer-25c3 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .hover_narrow_6e64.east_1dfa .footer-25c3 span {
        color: #334155 !important;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 {
        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);
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .summary-prev-bbab {
        color: #334155;
        text-shadow: none;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .summary-prev-bbab:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .summary-prev-bbab.element-5d80::after {
        color: #64748b;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .module_5c70 {
        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) */
    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .fresh-ef87.fn-active-8d76 .module_5c70 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .grid_5c55 {
        color: #475569;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .grid_5c55::before {
        color: #6366f1;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .grid_5c55:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .grid_5c55:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .hover_narrow_6e64.east_1dfa .detail_hard_c632 .grid_5c55:hover::before {
        color: #4f46e5;
    }
}

/* apk.alert-short-3c1a — mesmo tema claro da home; blocos extras */
body.pagination_192f {
    background: #f8f9fa;
    color: #2c3e50;
}

.pagination_192f .logo_tall_e3fd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pagination_192f .link_north_a150 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.pagination_192f .link_north_a150 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pagination_192f .link_north_a150 p:last-child {
    margin-bottom: 0;
}

.pagination_192f .link_north_a150 strong {
    color: var(--text-primary);
}

.pagination_192f .shade-4eb2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pagination_192f .shade-4eb2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hidden-slow-6564 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hidden-slow-6564 .simple_807c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hidden-slow-6564 .notice_tall_4a3b {
    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);
}

.hidden-slow-6564 .notice_tall_4a3b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden-slow-6564 .notice_tall_4a3b p:last-child {
    margin-bottom: 0;
}

.hidden-slow-6564 .notice_tall_4a3b strong {
    color: var(--text-primary);
}

.hidden-slow-6564 .narrow-de2f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hidden-slow-6564 .narrow-de2f 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_old_32c3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title_old_32c3 .hover_thick_2295 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title_old_32c3 .overlay-short-6201 {
    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_old_32c3 .overlay-short-6201 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title_old_32c3 .overlay-short-6201 p:last-child {
    margin-bottom: 0;
}

.title_old_32c3 .overlay-short-6201 strong {
    color: var(--text-primary);
}

.title_old_32c3 .fast_5818 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title_old_32c3 .fast_5818 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.badge_red_a88d {
    background: #f8f9fa;
    color: #2c3e50;
}

.badge_red_a88d .next-a438 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.badge_red_a88d .description-5a09 {
    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);
}

.badge_red_a88d .description-5a09 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.badge_red_a88d .description-5a09 p:last-child {
    margin-bottom: 0;
}

.badge_red_a88d .description-5a09 strong {
    color: var(--text-primary);
}

.badge_red_a88d .picture-add4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.badge_red_a88d .picture-add4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shadow-focused-e15c {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow-focused-e15c .shadow-dd93 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow-focused-e15c .preview_ea40 {
    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);
}

.shadow-focused-e15c .preview_ea40 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow-focused-e15c .preview_ea40 p:last-child {
    margin-bottom: 0;
}

.shadow-focused-e15c .preview_ea40 strong {
    color: var(--text-primary);
}

.shadow-focused-e15c .pro-7907 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shadow-focused-e15c .pro-7907 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.header_basic_0bd9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.header_basic_0bd9 .east_ec5d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.header_basic_0bd9 .banner-4ef2 {
    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);
}

.header_basic_0bd9 .banner-4ef2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.header_basic_0bd9 .banner-4ef2 p:last-child {
    margin-bottom: 0;
}

.header_basic_0bd9 .banner-4ef2 strong {
    color: var(--text-primary);
}

.header_basic_0bd9 .breadcrumb_5c4d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.header_basic_0bd9 .breadcrumb_5c4d 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_1678 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gradient_1678 .dark_f413 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gradient_1678 .over_b37d {
    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_1678 .over_b37d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient_1678 .over_b37d p:last-child {
    margin-bottom: 0;
}

.gradient_1678 .over_b37d strong {
    color: var(--text-primary);
}

.gradient_1678 .layout-prev-0fdc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gradient_1678 .layout-prev-0fdc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.current-0aa6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.current-0aa6 .gallery_8d00 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.current-0aa6 .label_c8cd {
    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);
}

.current-0aa6 .label_c8cd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.current-0aa6 .label_c8cd p:last-child {
    margin-bottom: 0;
}

.current-0aa6 .label_c8cd strong {
    color: var(--text-primary);
}

.current-0aa6 .primary-inner-57d4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.current-0aa6 .primary-inner-57d4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.under-824a {
    background: #f8f9fa;
    color: #2c3e50;
}

.under-824a .copper-59b7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.under-824a .secondary-dark-639a {
    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);
}

.under-824a .secondary-dark-639a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.under-824a .secondary-dark-639a p:last-child {
    margin-bottom: 0;
}

.under-824a .secondary-dark-639a strong {
    color: var(--text-primary);
}

.under-824a .item_basic_d6d3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.under-824a .item_basic_d6d3 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-84a1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-84a1 .fast_4776 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-84a1 .aside_06b3 {
    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-84a1 .aside_06b3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-84a1 .aside_06b3 p:last-child {
    margin-bottom: 0;
}

.title-84a1 .aside_06b3 strong {
    color: var(--text-primary);
}

.title-84a1 .hovered_5604 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title-84a1 .hovered_5604 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_first_2828 {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo_first_2828 .badge_left_2f01 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo_first_2828 .breadcrumb-efe3 {
    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_first_2828 .breadcrumb-efe3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_first_2828 .breadcrumb-efe3 p:last-child {
    margin-bottom: 0;
}

.photo_first_2828 .breadcrumb-efe3 strong {
    color: var(--text-primary);
}

.photo_first_2828 .main_8ee7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_first_2828 .main_8ee7 li {
    margin-bottom: 0.65rem;
}

.photo_first_2828 .main_8ee7 li:last-child {
    margin-bottom: 0;
}

.photo_first_2828 .stone_3d5b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo_first_2828 .stone_3d5b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.slow_09b0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slow_09b0 .text_e6a2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slow_09b0 .caption-complex-6aeb {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.slow_09b0 .caption-complex-6aeb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow_09b0 .caption-complex-6aeb p:last-child {
    margin-bottom: 0;
}

.slow_09b0 .caption-complex-6aeb strong {
    color: var(--text-primary);
}

.slow_09b0 .footer_e5fe {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slow_09b0 .footer_e5fe li {
    margin-bottom: 0.65rem;
}

.slow_09b0 .footer_e5fe li:last-child {
    margin-bottom: 0;
}

.slow_09b0 .backdrop_4372 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slow_09b0 .backdrop_4372 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_63c7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.in_63c7 .article-wide-3be8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.in_63c7 .plasma_3747 {
    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_63c7 .plasma_3747 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.in_63c7 .plasma_3747 p:last-child {
    margin-bottom: 0;
}

.in_63c7 .plasma_3747 strong {
    color: var(--text-primary);
}

.in_63c7 .border-dark-5b4a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.in_63c7 .border-dark-5b4a li {
    margin-bottom: 0.65rem;
}

.in_63c7 .border-dark-5b4a li:last-child {
    margin-bottom: 0;
}

.in_63c7 .sidebar-9822 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.in_63c7 .sidebar-9822 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.blue-0f36 {
    background: #f8f9fa;
    color: #2c3e50;
}

.blue-0f36 .solid_1ef9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.blue-0f36 .focus_3531 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.blue-0f36 .focus_3531 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue-0f36 .focus_3531 p:last-child {
    margin-bottom: 0;
}

.blue-0f36 .focus_3531 strong {
    color: var(--text-primary);
}

.blue-0f36 .warm_f54c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue-0f36 .warm_f54c li {
    margin-bottom: 0.65rem;
}

.blue-0f36 .warm_f54c li:last-child {
    margin-bottom: 0;
}

body.table-3236 {
    background: #f8f9fa;
    color: #2c3e50;
}

.table-3236 .silver-ff76 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table-3236 .cold-fdc4 {
    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);
}

.table-3236 .cold-fdc4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-3236 .cold-fdc4 p:last-child {
    margin-bottom: 0;
}

.table-3236 .cold-fdc4 strong {
    color: var(--text-primary);
}

.table-3236 .tooltip-92c8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table-3236 .tooltip-92c8 li {
    margin-bottom: 0.65rem;
}

.table-3236 .tooltip-92c8 li:last-child {
    margin-bottom: 0;
}

.table-3236 .sidebar-iron-e202 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.table-3236 .sidebar-iron-e202 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tag-south-8f4d {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag-south-8f4d .short-2938 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag-south-8f4d .input_3374 {
    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);
}

.tag-south-8f4d .input_3374 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-south-8f4d .input_3374 p:last-child {
    margin-bottom: 0;
}

.tag-south-8f4d .input_3374 strong {
    color: var(--text-primary);
}

.tag-south-8f4d .hovered-45ad {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-south-8f4d .hovered-45ad li {
    margin-bottom: 0.65rem;
}

.tag-south-8f4d .hovered-45ad li:last-child {
    margin-bottom: 0;
}

.tag-south-8f4d .container-iron-7ad7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tag-south-8f4d .container-iron-7ad7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tabs_59ec {
    background: #f8f9fa;
    color: #2c3e50;
}

.tabs_59ec .highlight_109a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tabs_59ec .grid-slow-4ce1 {
    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);
}

.tabs_59ec .grid-slow-4ce1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tabs_59ec .grid-slow-4ce1 p:last-child {
    margin-bottom: 0;
}

.tabs_59ec .grid-slow-4ce1 strong {
    color: var(--text-primary);
}

.tabs_59ec .slider-pressed-ac99 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tabs_59ec .slider-pressed-ac99 li {
    margin-bottom: 0.65rem;
}

.tabs_59ec .slider-pressed-ac99 li:last-child {
    margin-bottom: 0;
}

.tabs_59ec .banner_9685 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tabs_59ec .banner_9685 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.menu_12e0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.menu_12e0 .prev-5f5c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.menu_12e0 .title-dc07 {
    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);
}

.menu_12e0 .title-dc07 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.menu_12e0 .title-dc07 p:last-child {
    margin-bottom: 0;
}

.menu_12e0 .title-dc07 strong {
    color: var(--text-primary);
}

.menu_12e0 .thumbnail_purple_eac6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.menu_12e0 .thumbnail_purple_eac6 li {
    margin-bottom: 0.65rem;
}

.menu_12e0 .thumbnail_purple_eac6 li:last-child {
    margin-bottom: 0;
}

.menu_12e0 .detail-brown-83b0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.menu_12e0 .detail-brown-83b0 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: e865 */
.promo-block-e8 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
