/* 
 * 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.hard_478e) — fixed together on mobile */
.hard-61ef {
    width: 100%;
}

.paper-c7c7 {
    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) {
    .hard-61ef {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .paper-c7c7 {
        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.module_steel_bae1. Conta) stay reachable.
     */
    .new_bb3a .gas-0743 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .hard-61ef .new_bb3a > .gas-0743 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .hard-61ef:has(.input-26f6.fn-show-7bc2) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .hard-61ef:has(.input-26f6.fn-show-7bc2) .paper-c7c7 {
        flex-shrink: 0;
    }

    .hard-61ef:has(.input-26f6.fn-show-7bc2) .new_bb3a {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .hard-61ef:has(.input-26f6.fn-show-7bc2) .new_bb3a > .gas-0743 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .hard-61ef:has(.input-26f6.fn-show-7bc2) .article_purple_0456 {
        flex-shrink: 0;
    }

    .hard-61ef:has(.input-26f6.fn-show-7bc2) .input-26f6.fn-show-7bc2 {
        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 */
    .new_bb3a .input-26f6 .feature_adbd.fn-active-7bc2 .wrapper-east-cfa1 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .paper-c7c7 {
        position: sticky;
        top: 0;
    }
}

.hard-61ef.over_7a29,
.hard-61ef.over_7a29 .paper-c7c7 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.highlight-top-88b5 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .highlight-top-88b5 {
        padding: 0.75rem 0;
    }
}

.block-629e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.image-red-7b04 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .image-red-7b04 img {
        height: 35px;
    }
}

/* .new_bb3a / .grid_fe33 — inner pages (brown bar); index uses .gas_b6c9 below */

.new_bb3a:not(.gas_b6c9) .grid_fe33.fn-active-7bc2 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.logo_68e1 {
    display: flex;
    gap: var(--spacing-md);
}

.old-4991,
.short-5d5a {
    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) {
    .old-4991,
    .short-5d5a {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .logo_68e1 {
        gap: 0.5rem;
    }
}

.old-4991 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.old-4991:hover {
    background: var(--primary-purple);
    color: white;
}

.short-5d5a {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.short-5d5a:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.notice-8e19 {
    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%;
}

.notice-8e19::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;
}

.notice-8e19::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;
}

.orange_dd8e {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.small-5499 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.small-5499 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);
}

.notice-8e19 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;
}

.dirty-1fef {
    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;
}

.dirty-1fef strong {
    font-weight: 700;
}

.container-ba9e {
    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);
}

.article_soft_6ded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.overlay-b2ce {
    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);
}

.overlay-b2ce:hover {
    transform: translateY(-4px);
}

.surface-soft-c491 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.input_ec35 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.pro_3491 {
    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;
}

.pro_3491:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.pro_3491.carousel_paper_1fee {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.hero_9b1d {
    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);
}

.hero_9b1d:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.hard_f6af {
    padding: 3rem 1.25rem;
    background: white;
}

.heading_complex_4eed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.disabled_05b2 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.disabled_05b2:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.disabled_05b2 img {
    margin-bottom: 1rem;
}

.notice-dark-0428 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.disabled_05b2 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.disabled_05b2 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 */
.main-complex-1ee3 {
    padding: 3rem 1.25rem;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.widget-copper-eb65 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wide-05ac {
    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);
}

.video-wide-05ac h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.video-wide-05ac p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.video-wide-05ac a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prev-668d {
    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
   ======================================== */

.medium_3a49 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.lower-8e89 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.warm_23fc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.menu_f0ef {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.image_orange_688f {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.image_orange_688f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.image_orange_688f.narrow-0ab0 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.image_orange_688f.narrow-0ab0 h3,
.image_orange_688f.narrow-0ab0 p {
    color: white;
}

.section-red-15ff {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.image_orange_688f h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.image_orange_688f p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.info_mini_07f6 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.info_mini_07f6:hover {
    gap: 0.75rem;
}

.image_orange_688f.narrow-0ab0 .info_mini_07f6 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.hover-under-6f68 {
    padding: 4rem 1.25rem;
    background: white;
}

.link_advanced_8026 {
    text-align: center;
    margin-bottom: 3rem;
}

.pattern_625f {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.info_b3e9 {
    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%;
}

.info_b3e9:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.module_fixed_31e2 {
    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);
}

.caption-gas-de93 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.frame_static_b3e3 {
    padding: 1.5rem;
}

.frame_static_b3e3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.gradient-black-20c3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.message_east_e2eb {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.caption_light_912f,
.column-medium-b1be {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.caption_light_912f {
    background: #dcfce7;
    color: #166534;
}

.caption_light_912f.header-f6aa {
    background: #10b981;
    color: white;
}

.column-medium-b1be {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.column-medium-b1be.stone-b2f0 {
    background: #fee2e2;
    color: #991b1b;
}

.column-medium-b1be.slider_warm_7bc2 {
    background: #fef3c7;
    color: #92400e;
}

.column-medium-b1be.south_67a1 {
    background: #dcfce7;
    color: #166534;
}

.full-2cd6 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.full-2cd6 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.menu-steel-1e8d {
    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);
}

.menu-steel-1e8d:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.popup-east-bbc3 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.tabs-active-c045 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.summary-47dc {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .summary-47dc {
        grid-template-columns: 1fr 1fr;
    }
}

.out_9808 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.search-full-bcf0 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cool_832d {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.thumbnail_9ed5 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.shadow_dynamic_6ab8 {
    font-size: 1rem;
    opacity: 0.9;
}

.search-full-bcf0 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hard-3a66 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.hard-3a66 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.hard-3a66 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;
}

.hard-3a66 li strong {
    color: var(--primary-purple);
}

.hard-3a66 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.modal-41cf {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.active-tiny-f7a3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.tooltip-under-ead2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.active-tiny-f7a3 .input_ec35 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.hover_plasma_b1f1 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.tag-c0c6 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.tag-c0c6 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.title_ad3a {
    padding: 4rem 1.25rem;
    background: white;
}

.accent_fresh_04e9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .accent_fresh_04e9 {
        grid-template-columns: 1fr 1fr;
    }
}

.border-in-3a4d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.backdrop-d17f {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.pagination-middle-506e {
    margin-bottom: 1.5rem;
}

.white_8083 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blue_caee {
    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);
}

.pro-3c27 {
    white-space: nowrap;
}

.inner-d4d3 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.logo-yellow-1d0d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.aside_lite_24fe {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.aside_lite_24fe:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.grid-slow-41b8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.title_dc8c h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.title_dc8c p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pagination_752f {
    margin-top: 3rem;
}

.pagination_752f h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tiny_6912 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tiny_6912 thead {
    background: var(--primary-purple);
    color: white;
}

.tiny_6912 th,
.tiny_6912 td {
    padding: 1rem;
    text-align: left;
}

.tiny_6912 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.tiny_6912 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.tiny_6912 tbody tr:last-child {
    border-bottom: none;
}

.tiny_6912 tbody tr:hover {
    background: var(--light-bg);
}

.row_99b1 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.east-4773 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.dim_8ab8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.button-up-74fb {
    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);
}

.button-up-74fb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.button-up-74fb.hero-paper-dba2::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;
}

.down-b2fe {
    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;
}

.popup_53cd {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.tertiary-95a3 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.steel-656c {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.layout_soft_f0f1 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.layout_soft_f0f1 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.layout_soft_f0f1 p:last-child {
    margin-bottom: 0;
}

.layout_soft_f0f1 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.disabled-3436 {
    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;
}

.grid-green-4c63 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.selected-e171 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.selected-e171 .surface-soft-c491 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.selected-e171 .input_ec35 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.row-b17f {
    padding: 4rem 1.25rem;
    background: white;
}

.in-02f8 {
    max-width: 900px;
    margin: 0 auto;
}

.video_solid_a7e7 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.video_solid_a7e7:hover {
    border-color: var(--primary-purple);
}

.video_solid_a7e7[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.video_solid_a7e7 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;
}

.video_solid_a7e7 summary::-webkit-details-marker {
    display: none;
}

.video_solid_a7e7 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.video_solid_a7e7[open] summary::after {
    transform: rotate(45deg);
}

.motion_6dc2 {
    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);
    }
}

.motion_6dc2 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.motion_6dc2 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.motion_6dc2 ul,
.motion_6dc2 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.motion_6dc2 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.motion_6dc2 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.left-22ee {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.shadow_middle_192d {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.shadow_middle_192d th,
.shadow_middle_192d td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.shadow_middle_192d th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.wood_3982 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.module_rough_300b {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.card-c37d {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .card-c37d {
        flex-direction: column;
        text-align: center;
    }
}

.card-c37d img {
    flex-shrink: 0;
}

.wrapper-gold-6098 {
    font-size: 4rem;
    flex-shrink: 0;
}

.card_b84f h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card_b84f p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.blue_2b8a {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.modal_81d1 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.hard-661b h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hard-661b > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.header-large-c05f {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.hard-1b7a {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.wide-be85 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dropdown-c0a4 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dropdown-c0a4 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.focus-9f5a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.border-f126 {
    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);
}

.cool-e99d {
    list-style: none;
}

.cool-e99d li {
    margin-bottom: 0.75rem;
}

.cool-e99d a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.cool-e99d a:hover {
    color: white;
}

.link-smooth-1ea6 {
    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;
}

.image_e914 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.image_e914 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.out_8a92 {
    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);
}

.nav-active-8291 {
    text-align: right;
}

@media (max-width: 767px) {
    .nav-active-8291 {
        text-align: center;
        width: 100%;
    }
}

.nav-active-8291 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.layout_white_6590 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.gas-0743 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.hard_f6af,
.main-complex-1ee3,
.medium_3a49,
.hover-under-6f68,
.tabs-active-c045,
.title_ad3a,
.east-4773,
.row-b17f,
.module_rough_300b,
.modal_81d1 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .lower-8e89 {
        font-size: 1.75rem;
    }
    
    .warm_23fc {
        font-size: 1rem;
    }
    
    .modal-41cf {
        flex-direction: column;
    }
    
    .accent_fresh_04e9 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .pattern_625f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info_b3e9 {
        max-width: 100%;
    }
    
    .caption-gas-de93 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .gas-0743 {
        padding: 0 1rem;
    }
    
    .notice-8e19 {
        padding: 4rem 1rem 3rem;
    }
    
    .notice-8e19 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .pro_3491 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .article_soft_6ded {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .tiny_6912,
    .shadow_middle_192d {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .heading_complex_4eed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .menu_f0ef {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .dim_8ab8 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .notice-8e19 h1 {
        font-size: 1.5rem;
    }
    
    .article_soft_6ded {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .overlay-b2ce {
        padding: 0.75rem;
    }
    
    .surface-soft-c491 {
        font-size: 1.5rem;
    }
    
    .heading_complex_4eed {
        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 */
.info_b3e9:hover,
.image_orange_688f:hover,
.button-up-74fb:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .hover-under-6f68,
    .east-4773,
    .row-b17f {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.hard_478e)
   ======================================== */

.new_bb3a.gas_b6c9 {
    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;
}

.new_bb3a.gas_b6c9 .grid_fe33 {
    color: #334155;
}

.new_bb3a.gas_b6c9 .grid_fe33:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.new_bb3a.gas_b6c9 .grid_fe33.fn-active-7bc2 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.new_bb3a.gas_b6c9 .wrapper-east-cfa1 {
    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);
}

.new_bb3a.gas_b6c9 .wrapper-east-cfa1::before {
    border-bottom-color: #ffffff;
}

.new_bb3a.gas_b6c9 .yellow-4dbe {
    color: #475569;
}

.new_bb3a.gas_b6c9 .yellow-4dbe::before {
    background: #818cf8;
}

.new_bb3a.gas_b6c9 .yellow-4dbe:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.new_bb3a.gas_b6c9 .yellow-4dbe:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.new_bb3a.gas_b6c9 .hover_fixed_41f0 {
    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);
}

.new_bb3a.gas_b6c9 .hover_fixed_41f0:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.new_bb3a.gas_b6c9 .hover_fixed_41f0 span {
    background: #475569;
    box-shadow: none;
}

.new_bb3a.gas_b6c9 .hover_fixed_41f0.fn-active-7bc2 span:nth-child(1),
.new_bb3a.gas_b6c9 .hover_fixed_41f0.fn-active-7bc2 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .new_bb3a.gas_b6c9 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .new_bb3a.gas_b6c9 .article_purple_0456 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .new_bb3a.gas_b6c9 .article_purple_0456 span {
        color: #334155 !important;
    }

    .new_bb3a.gas_b6c9 .input-26f6 {
        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);
    }

    .new_bb3a.gas_b6c9 .input-26f6 .grid_fe33 {
        color: #334155;
        text-shadow: none;
    }

    .new_bb3a.gas_b6c9 .input-26f6 .grid_fe33:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .new_bb3a.gas_b6c9 .input-26f6 .grid_fe33.upper-9e31::after {
        color: #64748b;
    }

    .new_bb3a.gas_b6c9 .input-26f6 .wrapper-east-cfa1 {
        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) */
    .new_bb3a.gas_b6c9 .input-26f6 .feature_adbd.fn-active-7bc2 .wrapper-east-cfa1 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .new_bb3a.gas_b6c9 .input-26f6 .yellow-4dbe {
        color: #475569;
    }

    .new_bb3a.gas_b6c9 .input-26f6 .yellow-4dbe::before {
        color: #6366f1;
    }

    .new_bb3a.gas_b6c9 .input-26f6 .yellow-4dbe:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .new_bb3a.gas_b6c9 .input-26f6 .yellow-4dbe:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .new_bb3a.gas_b6c9 .input-26f6 .yellow-4dbe:hover::before {
        color: #4f46e5;
    }
}

/* apk.hard_d073 — mesmo tema claro da home; blocos extras */
body.current-0a16 {
    background: #f8f9fa;
    color: #2c3e50;
}

.current-0a16 .paper_288d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.current-0a16 .shade-blue-bce1 {
    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-0a16 .shade-blue-bce1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.current-0a16 .shade-blue-bce1 p:last-child {
    margin-bottom: 0;
}

.current-0a16 .shade-blue-bce1 strong {
    color: var(--text-primary);
}

.current-0a16 .background_light_d633 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.current-0a16 .background_light_d633 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.silver-bd7e {
    background: #f8f9fa;
    color: #2c3e50;
}

.silver-bd7e .detail_slow_c2c9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.silver-bd7e .gradient-soft-e429 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.silver-bd7e .gradient-soft-e429 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver-bd7e .gradient-soft-e429 p:last-child {
    margin-bottom: 0;
}

.silver-bd7e .gradient-soft-e429 strong {
    color: var(--text-primary);
}

.silver-bd7e .module-down-6f1f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.silver-bd7e .module-down-6f1f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.article_green_f40d {
    background: #f8f9fa;
    color: #2c3e50;
}

.article_green_f40d .tabs_pressed_80c1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.article_green_f40d .cool-4971 {
    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);
}

.article_green_f40d .cool-4971 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.article_green_f40d .cool-4971 p:last-child {
    margin-bottom: 0;
}

.article_green_f40d .cool-4971 strong {
    color: var(--text-primary);
}

.article_green_f40d .first-f935 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.article_green_f40d .first-f935 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.left_a6c4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.left_a6c4 .new-e3dd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.left_a6c4 .thumbnail_0a8c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.left_a6c4 .thumbnail_0a8c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.left_a6c4 .thumbnail_0a8c p:last-child {
    margin-bottom: 0;
}

.left_a6c4 .thumbnail_0a8c strong {
    color: var(--text-primary);
}

.left_a6c4 .block_left_77c9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.left_a6c4 .block_left_77c9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper-motion-5251 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper-motion-5251 .border_south_b2a4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper-motion-5251 .list-top-7cc4 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.wrapper-motion-5251 .list-top-7cc4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper-motion-5251 .list-top-7cc4 p:last-child {
    margin-bottom: 0;
}

.wrapper-motion-5251 .list-top-7cc4 strong {
    color: var(--text-primary);
}

.wrapper-motion-5251 .pattern-lower-b776 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper-motion-5251 .pattern-lower-b776 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent_bright_af38 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent_bright_af38 .mask_south_99fc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent_bright_af38 .layout_cac9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.accent_bright_af38 .layout_cac9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_bright_af38 .layout_cac9 p:last-child {
    margin-bottom: 0;
}

.accent_bright_af38 .layout_cac9 strong {
    color: var(--text-primary);
}

.accent_bright_af38 .stale-cee2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent_bright_af38 .stale-cee2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.surface_short_75b6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.surface_short_75b6 .out-db15 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.surface_short_75b6 .dim_abcf {
    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);
}

.surface_short_75b6 .dim_abcf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.surface_short_75b6 .dim_abcf p:last-child {
    margin-bottom: 0;
}

.surface_short_75b6 .dim_abcf strong {
    color: var(--text-primary);
}

.surface_short_75b6 .right_7824 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.surface_short_75b6 .right_7824 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.content_919a {
    background: #f8f9fa;
    color: #2c3e50;
}

.content_919a .border-over-a1b0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content_919a .text_current_60b1 {
    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);
}

.content_919a .text_current_60b1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content_919a .text_current_60b1 p:last-child {
    margin-bottom: 0;
}

.content_919a .text_current_60b1 strong {
    color: var(--text-primary);
}

.content_919a .feature_da1e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content_919a .feature_da1e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.notice_5399 {
    background: #f8f9fa;
    color: #2c3e50;
}

.notice_5399 .motion-78ce {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notice_5399 .fluid_0b4e {
    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);
}

.notice_5399 .fluid_0b4e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice_5399 .fluid_0b4e p:last-child {
    margin-bottom: 0;
}

.notice_5399 .fluid_0b4e strong {
    color: var(--text-primary);
}

.notice_5399 .pattern_pink_1fbc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notice_5399 .pattern_pink_1fbc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.surface_b83d {
    background: #f8f9fa;
    color: #2c3e50;
}

.surface_b83d .message-fast-0758 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.surface_b83d .pink-414f {
    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);
}

.surface_b83d .pink-414f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.surface_b83d .pink-414f p:last-child {
    margin-bottom: 0;
}

.surface_b83d .pink-414f strong {
    color: var(--text-primary);
}

.surface_b83d .preview_5bdb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.surface_b83d .preview_5bdb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern-f8b9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern-f8b9 .row-cf78 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern-f8b9 .thumbnail-hard-eca1 {
    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);
}

.pattern-f8b9 .thumbnail-hard-eca1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern-f8b9 .thumbnail-hard-eca1 p:last-child {
    margin-bottom: 0;
}

.pattern-f8b9 .thumbnail-hard-eca1 strong {
    color: var(--text-primary);
}

.pattern-f8b9 .huge-5cfd {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern-f8b9 .huge-5cfd li {
    margin-bottom: 0.65rem;
}

.pattern-f8b9 .huge-5cfd li:last-child {
    margin-bottom: 0;
}

.pattern-f8b9 .sidebar-d092 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern-f8b9 .sidebar-d092 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.out_25e5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.out_25e5 .widget_1165 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.out_25e5 .list_a49b {
    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);
}

.out_25e5 .list_a49b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.out_25e5 .list_a49b p:last-child {
    margin-bottom: 0;
}

.out_25e5 .list_a49b strong {
    color: var(--text-primary);
}

.out_25e5 .description_bd83 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.out_25e5 .description_bd83 li {
    margin-bottom: 0.65rem;
}

.out_25e5 .description_bd83 li:last-child {
    margin-bottom: 0;
}

.out_25e5 .column_7ea6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.out_25e5 .column_7ea6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper-advanced-3dc1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper-advanced-3dc1 .texture_first_bec3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper-advanced-3dc1 .background-e754 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.wrapper-advanced-3dc1 .background-e754 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper-advanced-3dc1 .background-e754 p:last-child {
    margin-bottom: 0;
}

.wrapper-advanced-3dc1 .background-e754 strong {
    color: var(--text-primary);
}

.wrapper-advanced-3dc1 .lite-bf6b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper-advanced-3dc1 .lite-bf6b li {
    margin-bottom: 0.65rem;
}

.wrapper-advanced-3dc1 .lite-bf6b li:last-child {
    margin-bottom: 0;
}

.wrapper-advanced-3dc1 .menu-liquid-3158 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper-advanced-3dc1 .menu-liquid-3158 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.logo-south-c7c2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.logo-south-c7c2 .logo-over-ee0e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.logo-south-c7c2 .full_8fd6 {
    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);
}

.logo-south-c7c2 .full_8fd6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.logo-south-c7c2 .full_8fd6 p:last-child {
    margin-bottom: 0;
}

.logo-south-c7c2 .full_8fd6 strong {
    color: var(--text-primary);
}

.logo-south-c7c2 .blue_954e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.logo-south-c7c2 .blue_954e li {
    margin-bottom: 0.65rem;
}

.logo-south-c7c2 .blue_954e li:last-child {
    margin-bottom: 0;
}

body.shade_8f22 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade_8f22 .tooltip-stale-923c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade_8f22 .slow-c120 {
    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);
}

.shade_8f22 .slow-c120 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade_8f22 .slow-c120 p:last-child {
    margin-bottom: 0;
}

.shade_8f22 .slow-c120 strong {
    color: var(--text-primary);
}

.shade_8f22 .element_d7d9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade_8f22 .element_d7d9 li {
    margin-bottom: 0.65rem;
}

.shade_8f22 .element_d7d9 li:last-child {
    margin-bottom: 0;
}

.shade_8f22 .label_iron_6ecc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade_8f22 .label_iron_6ecc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pro-1b1d {
    background: #f8f9fa;
    color: #2c3e50;
}

.pro-1b1d .surface_0afe {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pro-1b1d .avatar-aaf8 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.pro-1b1d .avatar-aaf8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro-1b1d .avatar-aaf8 p:last-child {
    margin-bottom: 0;
}

.pro-1b1d .avatar-aaf8 strong {
    color: var(--text-primary);
}

.pro-1b1d .simple-1ef2 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pro-1b1d .simple-1ef2 li {
    margin-bottom: 0.65rem;
}

.pro-1b1d .simple-1ef2 li:last-child {
    margin-bottom: 0;
}

.pro-1b1d .tooltip_3755 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pro-1b1d .tooltip_3755 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.text_88c7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.text_88c7 .old-8e48 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.text_88c7 .hard_ef1f {
    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);
}

.text_88c7 .hard_ef1f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_88c7 .hard_ef1f p:last-child {
    margin-bottom: 0;
}

.text_88c7 .hard_ef1f strong {
    color: var(--text-primary);
}

.text_88c7 .fluid-db45 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_88c7 .fluid-db45 li {
    margin-bottom: 0.65rem;
}

.text_88c7 .fluid-db45 li:last-child {
    margin-bottom: 0;
}

.text_88c7 .summary-fast-7c27 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.text_88c7 .summary-fast-7c27 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thumbnail_a4a5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_a4a5 .input-hard-9375 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_a4a5 .outline-out-8aeb {
    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);
}

.thumbnail_a4a5 .outline-out-8aeb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_a4a5 .outline-out-8aeb p:last-child {
    margin-bottom: 0;
}

.thumbnail_a4a5 .outline-out-8aeb strong {
    color: var(--text-primary);
}

.thumbnail_a4a5 .preview-7da6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_a4a5 .preview-7da6 li {
    margin-bottom: 0.65rem;
}

.thumbnail_a4a5 .preview-7da6 li:last-child {
    margin-bottom: 0;
}

.thumbnail_a4a5 .texture-fixed-b18c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thumbnail_a4a5 .texture-fixed-b18c 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: 506b */
.shadow-element-x2 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
