/* 
 * 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.caption_34c2) — fixed together on mobile */
.paper-f000 {
    width: 100%;
}

.backdrop-bf90 {
    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) {
    .paper-f000 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .backdrop-bf90 {
        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.dirty-0771. Conta) stay reachable.
     */
    .box-next-594e .accent_7a6d {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .paper-f000 .box-next-594e > .accent_7a6d {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .paper-f000:has(.shadow-a241.fn-show-19ed) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .paper-f000:has(.shadow-a241.fn-show-19ed) .backdrop-bf90 {
        flex-shrink: 0;
    }

    .paper-f000:has(.shadow-a241.fn-show-19ed) .box-next-594e {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .paper-f000:has(.shadow-a241.fn-show-19ed) .box-next-594e > .accent_7a6d {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .paper-f000:has(.shadow-a241.fn-show-19ed) .logo-5b4c {
        flex-shrink: 0;
    }

    .paper-f000:has(.shadow-a241.fn-show-19ed) .shadow-a241.fn-show-19ed {
        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 */
    .box-next-594e .shadow-a241 .menu_medium_75ff.fn-active-19ed .wrapper_fluid_3962 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .backdrop-bf90 {
        position: sticky;
        top: 0;
    }
}

.paper-f000.thumbnail_429d,
.paper-f000.thumbnail_429d .backdrop-bf90 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.overlay-iron-5192 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .overlay-iron-5192 {
        padding: 0.75rem 0;
    }
}

.dark-9b9c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.pattern_1162 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .pattern_1162 img {
        height: 35px;
    }
}

/* .box-next-594e / .nav_advanced_9546 — inner pages (brown bar); index uses .backdrop_cd54 below */

.box-next-594e:not(.backdrop_cd54) .nav_advanced_9546.fn-active-19ed {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.soft_8683 {
    display: flex;
    gap: var(--spacing-md);
}

.chip-glass-892b,
.module-efc5 {
    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) {
    .chip-glass-892b,
    .module-efc5 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .soft_8683 {
        gap: 0.5rem;
    }
}

.chip-glass-892b {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.chip-glass-892b:hover {
    background: var(--primary-purple);
    color: white;
}

.module-efc5 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.module-efc5:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.article_small_26f7 {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 5rem 1.25rem 4rem;
    overflow: hidden;
    width: 100%;
}

.article_small_26f7::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40vw;
    max-width: 500px;
    height: 40vw;
    max-height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.article_small_26f7::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;
}

.under-bcb9 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.over_c0c4 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.over_c0c4 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 400px);
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.article_small_26f7 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;
}

.grid-hard-9932 {
    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;
}

.grid-hard-9932 strong {
    font-weight: 700;
}

.hidden_3296 {
    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);
}

.lite_b919 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.texture_narrow_5611 {
    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);
}

.texture_narrow_5611:hover {
    transform: translateY(-4px);
}

.panel_orange_7a86 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.module_12fa {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.carousel-white-6854 {
    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;
}

.carousel-white-6854:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.carousel-white-6854.tag_3642 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.current-8888 {
    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);
}

.current-8888:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.breadcrumb-720b {
    padding: 3rem 1.25rem;
    background: white;
}

.notice_light_4e47 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.backdrop_4707 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.backdrop_4707:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.backdrop_4707 img {
    margin-bottom: 1rem;
}

.dark-f2ff {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.backdrop_4707 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.backdrop_4707 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 */
.clean-ade9 {
    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);
}

.brown_3ffc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.status_pro_a1c5 {
    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);
}

.status_pro_a1c5 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.status_pro_a1c5 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.status_pro_a1c5 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.iron-8a6f {
    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
   ======================================== */

.component-6c8c {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.fresh-ee7d {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.nav-21fa {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.paragraph_efb1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.column_narrow_3648 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.column_narrow_3648:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.column_narrow_3648.widget_98d8 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.column_narrow_3648.widget_98d8 h3,
.column_narrow_3648.widget_98d8 p {
    color: white;
}

.badge_7984 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.column_narrow_3648 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.column_narrow_3648 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.accent_focused_76eb {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.accent_focused_76eb:hover {
    gap: 0.75rem;
}

.column_narrow_3648.widget_98d8 .accent_focused_76eb {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.list_b2cd {
    padding: 4rem 1.25rem;
    background: white;
}

.aside-center-c959 {
    text-align: center;
    margin-bottom: 3rem;
}

.red-dcb9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.form_bc4f {
    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_bc4f:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.panel_next_78c5 {
    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);
}

.out-a145 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.pattern_cool_65e9 {
    padding: 1.5rem;
}

.pattern_cool_65e9 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.list-short-eaba {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pressed_aaba {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.steel_6c94,
.easy-ff27 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.steel_6c94 {
    background: #dcfce7;
    color: #166534;
}

.steel_6c94.dark_a6f0 {
    background: #10b981;
    color: white;
}

.easy-ff27 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.easy-ff27.element_51c4 {
    background: #fee2e2;
    color: #991b1b;
}

.easy-ff27.accent-42ee {
    background: #fef3c7;
    color: #92400e;
}

.easy-ff27.layout_f1f4 {
    background: #dcfce7;
    color: #166534;
}

.complex_deb1 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.complex_deb1 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.pattern_fast_5a2f {
    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);
}

.pattern_fast_5a2f:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.search-be44 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.picture-center-345a {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tall-a757 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tall-a757 {
        grid-template-columns: 1fr 1fr;
    }
}

.element-right-1e2b img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.row_8cf7 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.logo-steel-004b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.top_1a64 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.old-a676 {
    font-size: 1rem;
    opacity: 0.9;
}

.row_8cf7 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.chip_focused_9d1a {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.chip_focused_9d1a li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.chip_focused_9d1a 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;
}

.chip_focused_9d1a li strong {
    color: var(--primary-purple);
}

.chip_focused_9d1a li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.texture_first_e31b {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.primary_focused_9b03 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.prev_4ab1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.primary_focused_9b03 .module_12fa {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.bronze-32f8 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.tag-7758 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.tag-7758 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.header-a066 {
    padding: 4rem 1.25rem;
    background: white;
}

.link-840e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .link-840e {
        grid-template-columns: 1fr 1fr;
    }
}

.picture_dirty_096b h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.button-wide-a994 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.tiny-395a {
    margin-bottom: 1.5rem;
}

.steel-273f {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.outline-bc4c {
    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);
}

.warm_e3a6 {
    white-space: nowrap;
}

.module-hard-1c8d {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.new_8514 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.old-d5b7 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.old-d5b7:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.stone_5b0f {
    font-size: 2rem;
    flex-shrink: 0;
}

.static_fe3f h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.static_fe3f p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.paragraph_7647 {
    margin-top: 3rem;
}

.paragraph_7647 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.secondary_2250 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.secondary_2250 thead {
    background: var(--primary-purple);
    color: white;
}

.secondary_2250 th,
.secondary_2250 td {
    padding: 1rem;
    text-align: left;
}

.secondary_2250 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.secondary_2250 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.secondary_2250 tbody tr:last-child {
    border-bottom: none;
}

.secondary_2250 tbody tr:hover {
    background: var(--light-bg);
}

.hard-d0c5 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.gallery-8032 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tag-wood-330a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.icon-3725 {
    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);
}

.icon-3725:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.icon-3725.nav-2bb5::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;
}

.grid_liquid_be12 {
    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;
}

.input_90bc {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.grid-paper-ae57 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.modal_stale_7874 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.accent_8629 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.accent_8629 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.accent_8629 p:last-child {
    margin-bottom: 0;
}

.accent_8629 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.sidebar_d27b {
    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;
}

.dark-9db6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.caption-32bf {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.caption-32bf .panel_orange_7a86 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.caption-32bf .module_12fa {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.hidden-tiny-0dc7 {
    padding: 4rem 1.25rem;
    background: white;
}

.item_5017 {
    max-width: 900px;
    margin: 0 auto;
}

.block_3a29 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.block_3a29:hover {
    border-color: var(--primary-purple);
}

.block_3a29[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.block_3a29 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;
}

.block_3a29 summary::-webkit-details-marker {
    display: none;
}

.block_3a29 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.block_3a29[open] summary::after {
    transform: rotate(45deg);
}

.south_7fb7 {
    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);
    }
}

.south_7fb7 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.south_7fb7 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.south_7fb7 ul,
.south_7fb7 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.south_7fb7 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.south_7fb7 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.notice-5c90 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.outline_east_165e {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.outline_east_165e th,
.outline_east_165e td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.outline_east_165e th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-new-0e5d {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.overlay_bottom_396b {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.filter_33fe {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .filter_33fe {
        flex-direction: column;
        text-align: center;
    }
}

.filter_33fe img {
    flex-shrink: 0;
}

.card-tall-4ae9 {
    font-size: 4rem;
    flex-shrink: 0;
}

.east-6975 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.east-6975 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.box-top-1b22 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.light-149b {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.box_8968 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.box_8968 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.message_4aa8 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.background-87a0 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.mask-ae9f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.list_clean_1a49 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.list_clean_1a49 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.icon_advanced_b01d {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.shadow-wide-d568 {
    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);
}

.chip_complex_4788 {
    list-style: none;
}

.chip_complex_4788 li {
    margin-bottom: 0.75rem;
}

.chip_complex_4788 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.chip_complex_4788 a:hover {
    color: white;
}

.east-3303 {
    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;
}

.banner_37f1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner_37f1 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.pro-0c92 {
    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);
}

.caption_3b8a {
    text-align: right;
}

@media (max-width: 767px) {
    .caption_3b8a {
        text-align: center;
        width: 100%;
    }
}

.caption_3b8a p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.mask-7663 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.accent_7a6d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.breadcrumb-720b,
.clean-ade9,
.component-6c8c,
.list_b2cd,
.picture-center-345a,
.header-a066,
.gallery-8032,
.hidden-tiny-0dc7,
.overlay_bottom_396b,
.light-149b {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .fresh-ee7d {
        font-size: 1.75rem;
    }
    
    .nav-21fa {
        font-size: 1rem;
    }
    
    .texture_first_e31b {
        flex-direction: column;
    }
    
    .link-840e {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .red-dcb9 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form_bc4f {
        max-width: 100%;
    }
    
    .out-a145 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .accent_7a6d {
        padding: 0 1rem;
    }
    
    .article_small_26f7 {
        padding: 4rem 1rem 3rem;
    }
    
    .article_small_26f7 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .carousel-white-6854 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .lite_b919 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .secondary_2250,
    .outline_east_165e {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .notice_light_4e47 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .paragraph_efb1 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .tag-wood-330a {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .article_small_26f7 h1 {
        font-size: 1.5rem;
    }
    
    .lite_b919 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .texture_narrow_5611 {
        padding: 0.75rem;
    }
    
    .panel_orange_7a86 {
        font-size: 1.5rem;
    }
    
    .notice_light_4e47 {
        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_bc4f:hover,
.column_narrow_3648:hover,
.icon-3725:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .list_b2cd,
    .gallery-8032,
    .hidden-tiny-0dc7 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.caption_34c2)
   ======================================== */

.box-next-594e.backdrop_cd54 {
    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;
}

.box-next-594e.backdrop_cd54 .nav_advanced_9546 {
    color: #334155;
}

.box-next-594e.backdrop_cd54 .nav_advanced_9546:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.box-next-594e.backdrop_cd54 .nav_advanced_9546.fn-active-19ed {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.box-next-594e.backdrop_cd54 .wrapper_fluid_3962 {
    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);
}

.box-next-594e.backdrop_cd54 .wrapper_fluid_3962::before {
    border-bottom-color: #ffffff;
}

.box-next-594e.backdrop_cd54 .disabled_7639 {
    color: #475569;
}

.box-next-594e.backdrop_cd54 .disabled_7639::before {
    background: #818cf8;
}

.box-next-594e.backdrop_cd54 .disabled_7639:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.box-next-594e.backdrop_cd54 .disabled_7639:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.box-next-594e.backdrop_cd54 .motion_20d3 {
    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);
}

.box-next-594e.backdrop_cd54 .motion_20d3:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.box-next-594e.backdrop_cd54 .motion_20d3 span {
    background: #475569;
    box-shadow: none;
}

.box-next-594e.backdrop_cd54 .motion_20d3.fn-active-19ed span:nth-child(1),
.box-next-594e.backdrop_cd54 .motion_20d3.fn-active-19ed span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .box-next-594e.backdrop_cd54 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .box-next-594e.backdrop_cd54 .logo-5b4c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .box-next-594e.backdrop_cd54 .logo-5b4c span {
        color: #334155 !important;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 {
        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);
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .nav_advanced_9546 {
        color: #334155;
        text-shadow: none;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .nav_advanced_9546:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .nav_advanced_9546.sort_white_5fc1::after {
        color: #64748b;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .wrapper_fluid_3962 {
        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) */
    .box-next-594e.backdrop_cd54 .shadow-a241 .menu_medium_75ff.fn-active-19ed .wrapper_fluid_3962 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .disabled_7639 {
        color: #475569;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .disabled_7639::before {
        color: #6366f1;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .disabled_7639:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .disabled_7639:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .box-next-594e.backdrop_cd54 .shadow-a241 .disabled_7639:hover::before {
        color: #4f46e5;
    }
}

/* apk.text-f4e3 — mesmo tema claro da home; blocos extras */
body.hover_lite_54f0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hover_lite_54f0 .steel-de21 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hover_lite_54f0 .small_6bae {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.hover_lite_54f0 .small_6bae p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hover_lite_54f0 .small_6bae p:last-child {
    margin-bottom: 0;
}

.hover_lite_54f0 .small_6bae strong {
    color: var(--text-primary);
}

.hover_lite_54f0 .list-07a2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hover_lite_54f0 .list-07a2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.steel_62b1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.steel_62b1 .west-3fb5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.steel_62b1 .modal_outer_8793 {
    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);
}

.steel_62b1 .modal_outer_8793 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel_62b1 .modal_outer_8793 p:last-child {
    margin-bottom: 0;
}

.steel_62b1 .modal_outer_8793 strong {
    color: var(--text-primary);
}

.steel_62b1 .button-cool-5355 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.steel_62b1 .button-cool-5355 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dark-1505 {
    background: #f8f9fa;
    color: #2c3e50;
}

.dark-1505 .pro_63cc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dark-1505 .avatar-dark-7bee {
    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);
}

.dark-1505 .avatar-dark-7bee p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dark-1505 .avatar-dark-7bee p:last-child {
    margin-bottom: 0;
}

.dark-1505 .avatar-dark-7bee strong {
    color: var(--text-primary);
}

.dark-1505 .secondary-7ccd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dark-1505 .secondary-7ccd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.caption-south-4b0a {
    background: #f8f9fa;
    color: #2c3e50;
}

.caption-south-4b0a .wood_7018 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.caption-south-4b0a .next_687a {
    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);
}

.caption-south-4b0a .next_687a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption-south-4b0a .next_687a p:last-child {
    margin-bottom: 0;
}

.caption-south-4b0a .next_687a strong {
    color: var(--text-primary);
}

.caption-south-4b0a .element_small_82f6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.caption-south-4b0a .element_small_82f6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.icon-thick-a8b5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.icon-thick-a8b5 .badge_large_0554 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.icon-thick-a8b5 .accordion-middle-b52c {
    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);
}

.icon-thick-a8b5 .accordion-middle-b52c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.icon-thick-a8b5 .accordion-middle-b52c p:last-child {
    margin-bottom: 0;
}

.icon-thick-a8b5 .accordion-middle-b52c strong {
    color: var(--text-primary);
}

.icon-thick-a8b5 .preview_f3b6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.icon-thick-a8b5 .preview_f3b6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.video-556a {
    background: #f8f9fa;
    color: #2c3e50;
}

.video-556a .feature-5b2c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.video-556a .modal_motion_6a92 {
    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);
}

.video-556a .modal_motion_6a92 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.video-556a .modal_motion_6a92 p:last-child {
    margin-bottom: 0;
}

.video-556a .modal_motion_6a92 strong {
    color: var(--text-primary);
}

.video-556a .detail-top-850e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.video-556a .detail-top-850e 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-80cd {
    background: #f8f9fa;
    color: #2c3e50;
}

.blue-80cd .modal_east_ccde {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.blue-80cd .primary-37ef {
    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-80cd .primary-37ef p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue-80cd .primary-37ef p:last-child {
    margin-bottom: 0;
}

.blue-80cd .primary-37ef strong {
    color: var(--text-primary);
}

.blue-80cd .modal-e3c1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.blue-80cd .modal-e3c1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.huge-7147 {
    background: #f8f9fa;
    color: #2c3e50;
}

.huge-7147 .in-d285 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.huge-7147 .white-b7c7 {
    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);
}

.huge-7147 .white-b7c7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.huge-7147 .white-b7c7 p:last-child {
    margin-bottom: 0;
}

.huge-7147 .white-b7c7 strong {
    color: var(--text-primary);
}

.huge-7147 .feature_d0a2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.huge-7147 .feature_d0a2 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-c8c3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.in-c8c3 .notification-blue-eeb8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.in-c8c3 .shade-bottom-1190 {
    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-c8c3 .shade-bottom-1190 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.in-c8c3 .shade-bottom-1190 p:last-child {
    margin-bottom: 0;
}

.in-c8c3 .shade-bottom-1190 strong {
    color: var(--text-primary);
}

.in-c8c3 .media-ce1b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.in-c8c3 .media-ce1b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.red_9159 {
    background: #f8f9fa;
    color: #2c3e50;
}

.red_9159 .tertiary_rough_72ea {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.red_9159 .next-f53b {
    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);
}

.red_9159 .next-f53b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.red_9159 .next-f53b p:last-child {
    margin-bottom: 0;
}

.red_9159 .next-f53b strong {
    color: var(--text-primary);
}

.red_9159 .paragraph-green-1462 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.red_9159 .paragraph-green-1462 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.breadcrumb-36c5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb-36c5 .frame-f7f9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb-36c5 .label-e5a6 {
    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);
}

.breadcrumb-36c5 .label-e5a6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb-36c5 .label-e5a6 p:last-child {
    margin-bottom: 0;
}

.breadcrumb-36c5 .label-e5a6 strong {
    color: var(--text-primary);
}

.breadcrumb-36c5 .disabled-south-3a6a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb-36c5 .disabled-south-3a6a li {
    margin-bottom: 0.65rem;
}

.breadcrumb-36c5 .disabled-south-3a6a li:last-child {
    margin-bottom: 0;
}

.breadcrumb-36c5 .banner_small_8359 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.breadcrumb-36c5 .banner_small_8359 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focus-d417 {
    background: #f8f9fa;
    color: #2c3e50;
}

.focus-d417 .pagination-center-09a5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focus-d417 .summary_f9d2 {
    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);
}

.focus-d417 .summary_f9d2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-d417 .summary_f9d2 p:last-child {
    margin-bottom: 0;
}

.focus-d417 .summary_f9d2 strong {
    color: var(--text-primary);
}

.focus-d417 .warm_c6e5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-d417 .warm_c6e5 li {
    margin-bottom: 0.65rem;
}

.focus-d417 .warm_c6e5 li:last-child {
    margin-bottom: 0;
}

.focus-d417 .picture-rough-061b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focus-d417 .picture-rough-061b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.center_c863 {
    background: #f8f9fa;
    color: #2c3e50;
}

.center_c863 .video_34c2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.center_c863 .basic_cffc {
    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);
}

.center_c863 .basic_cffc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.center_c863 .basic_cffc p:last-child {
    margin-bottom: 0;
}

.center_c863 .basic_cffc strong {
    color: var(--text-primary);
}

.center_c863 .preview_6ced {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.center_c863 .preview_6ced li {
    margin-bottom: 0.65rem;
}

.center_c863 .preview_6ced li:last-child {
    margin-bottom: 0;
}

.center_c863 .breadcrumb-pro-8622 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.center_c863 .breadcrumb-pro-8622 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_gold_377b {
    background: #f8f9fa;
    color: #2c3e50;
}

.thumbnail_gold_377b .aside_ecdc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thumbnail_gold_377b .pink-84a5 {
    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_gold_377b .pink-84a5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_gold_377b .pink-84a5 p:last-child {
    margin-bottom: 0;
}

.thumbnail_gold_377b .pink-84a5 strong {
    color: var(--text-primary);
}

.thumbnail_gold_377b .notice-3ad5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thumbnail_gold_377b .notice-3ad5 li {
    margin-bottom: 0.65rem;
}

.thumbnail_gold_377b .notice-3ad5 li:last-child {
    margin-bottom: 0;
}

body.soft-b6fb {
    background: #f8f9fa;
    color: #2c3e50;
}

.soft-b6fb .sort-easy-9ebb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.soft-b6fb .gradient_full_8770 {
    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);
}

.soft-b6fb .gradient_full_8770 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft-b6fb .gradient_full_8770 p:last-child {
    margin-bottom: 0;
}

.soft-b6fb .gradient_full_8770 strong {
    color: var(--text-primary);
}

.soft-b6fb .wood_b03d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft-b6fb .wood_b03d li {
    margin-bottom: 0.65rem;
}

.soft-b6fb .wood_b03d li:last-child {
    margin-bottom: 0;
}

.soft-b6fb .message_416f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.soft-b6fb .message_416f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focus-gas-d910 {
    background: #f8f9fa;
    color: #2c3e50;
}

.focus-gas-d910 .heading-easy-c2f2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focus-gas-d910 .clean-89a5 {
    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);
}

.focus-gas-d910 .clean-89a5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-gas-d910 .clean-89a5 p:last-child {
    margin-bottom: 0;
}

.focus-gas-d910 .clean-89a5 strong {
    color: var(--text-primary);
}

.focus-gas-d910 .popup_39f4 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-gas-d910 .popup_39f4 li {
    margin-bottom: 0.65rem;
}

.focus-gas-d910 .popup_39f4 li:last-child {
    margin-bottom: 0;
}

.focus-gas-d910 .border-lite-36a4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focus-gas-d910 .border-lite-36a4 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_1c6d {
    background: #f8f9fa;
    color: #2c3e50;
}

.silver_1c6d .photo-c5ec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.silver_1c6d .section-black-bcf9 {
    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_1c6d .section-black-bcf9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver_1c6d .section-black-bcf9 p:last-child {
    margin-bottom: 0;
}

.silver_1c6d .section-black-bcf9 strong {
    color: var(--text-primary);
}

.silver_1c6d .shade-last-507b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver_1c6d .shade-last-507b li {
    margin-bottom: 0.65rem;
}

.silver_1c6d .shade-last-507b li:last-child {
    margin-bottom: 0;
}

.silver_1c6d .tall-1a8a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.silver_1c6d .tall-1a8a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.layout-5cb9 {
    background: #f8f9fa;
    color: #2c3e50;
}

.layout-5cb9 .progress-c42b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.layout-5cb9 .bottom_efa6 {
    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);
}

.layout-5cb9 .bottom_efa6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout-5cb9 .bottom_efa6 p:last-child {
    margin-bottom: 0;
}

.layout-5cb9 .bottom_efa6 strong {
    color: var(--text-primary);
}

.layout-5cb9 .dropdown_south_bf96 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout-5cb9 .dropdown_south_bf96 li {
    margin-bottom: 0.65rem;
}

.layout-5cb9 .dropdown_south_bf96 li:last-child {
    margin-bottom: 0;
}

.layout-5cb9 .blue-82f2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.layout-5cb9 .blue-82f2 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: 652e */
.phantom-card-t7 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
