/* 
 * 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.avatar_52a1) — fixed together on mobile */
.footer_0da9 {
    width: 100%;
}

.complex-334b {
    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) {
    .footer_0da9 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .complex-334b {
        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.tall-1165. Conta) stay reachable.
     */
    .lite-fb53 .video_active_bb68 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .footer_0da9 .lite-fb53 > .video_active_bb68 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .footer_0da9:has(.main-0e11.fn-show-0191) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .footer_0da9:has(.main-0e11.fn-show-0191) .complex-334b {
        flex-shrink: 0;
    }

    .footer_0da9:has(.main-0e11.fn-show-0191) .lite-fb53 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .footer_0da9:has(.main-0e11.fn-show-0191) .lite-fb53 > .video_active_bb68 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .footer_0da9:has(.main-0e11.fn-show-0191) .box_f9d3 {
        flex-shrink: 0;
    }

    .footer_0da9:has(.main-0e11.fn-show-0191) .main-0e11.fn-show-0191 {
        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 */
    .lite-fb53 .main-0e11 .section_focused_a1ff.fn-active-0191 .surface_in_6aba {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .complex-334b {
        position: sticky;
        top: 0;
    }
}

.footer_0da9.cold-7590,
.footer_0da9.cold-7590 .complex-334b {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.avatar_liquid_0867 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .avatar_liquid_0867 {
        padding: 0.75rem 0;
    }
}

.dark_6b83 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.west-bd22 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .west-bd22 img {
        height: 35px;
    }
}

/* .lite-fb53 / .hover_hovered_764a — inner pages (brown bar); index uses .white_8f2a below */

.lite-fb53:not(.white_8f2a) .hover_hovered_764a.fn-active-0191 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.feature-steel-7608 {
    display: flex;
    gap: var(--spacing-md);
}

.avatar_first_2923,
.tag_wide_c2bd {
    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) {
    .avatar_first_2923,
    .tag_wide_c2bd {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .feature-steel-7608 {
        gap: 0.5rem;
    }
}

.avatar_first_2923 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.avatar_first_2923:hover {
    background: var(--primary-purple);
    color: white;
}

.tag_wide_c2bd {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.tag_wide_c2bd:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.tertiary_basic_7e27 {
    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%;
}

.tertiary_basic_7e27::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;
}

.tertiary_basic_7e27::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;
}

.text-dynamic-ce62 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.section-first-4722 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.section-first-4722 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);
}

.tertiary_basic_7e27 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;
}

.image-66c9 {
    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;
}

.image-66c9 strong {
    font-weight: 700;
}

.active_f40c {
    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);
}

.mask_ae99 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.red-7cc9 {
    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);
}

.red-7cc9:hover {
    transform: translateY(-4px);
}

.component_166c {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.filter_blue_31b4 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.tertiary_basic_d62f {
    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;
}

.tertiary_basic_d62f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.tertiary_basic_d62f.status-150b {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.stale_e7ca {
    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);
}

.stale_e7ca:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.article_5fc4 {
    padding: 3rem 1.25rem;
    background: white;
}

.highlight-purple-879f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.caption-de6d {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.caption-de6d:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.caption-de6d img {
    margin-bottom: 1rem;
}

.out_0833 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.caption-de6d h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.caption-de6d 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 */
.grid_clean_0814 {
    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);
}

.list_steel_e590 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.sort_green_c0b9 {
    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);
}

.sort_green_c0b9 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.sort_green_c0b9 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.sort_green_c0b9 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.inner-487c {
    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
   ======================================== */

.light_d705 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.iron_f95a {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.feature_8df9 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.gas_7761 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.plasma-b1dc {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.plasma-b1dc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.plasma-b1dc.active-9e5f {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.plasma-b1dc.active-9e5f h3,
.plasma-b1dc.active-9e5f p {
    color: white;
}

.complex_8ef5 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.plasma-b1dc h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.plasma-b1dc p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.badge-full-804b {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.badge-full-804b:hover {
    gap: 0.75rem;
}

.plasma-b1dc.active-9e5f .badge-full-804b {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.huge_33d3 {
    padding: 4rem 1.25rem;
    background: white;
}

.button_f5ed {
    text-align: center;
    margin-bottom: 3rem;
}

.stone_803f {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.background_short_dea0 {
    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%;
}

.background_short_dea0:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.widget-mini-9e06 {
    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);
}

.list-8f7d {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.east-4ec7 {
    padding: 1.5rem;
}

.east-4ec7 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.glass_41e8 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.dirty-b596 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.detail-cold-657e,
.banner_hot_68db {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-cold-657e {
    background: #dcfce7;
    color: #166534;
}

.detail-cold-657e.grid_ea3d {
    background: #10b981;
    color: white;
}

.banner_hot_68db {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.banner_hot_68db.dropdown-liquid-16a0 {
    background: #fee2e2;
    color: #991b1b;
}

.banner_hot_68db.mini-dfa1 {
    background: #fef3c7;
    color: #92400e;
}

.banner_hot_68db.primary-simple-9f88 {
    background: #dcfce7;
    color: #166534;
}

.modal_lite_79e8 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.modal_lite_79e8 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.complex_3b84 {
    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);
}

.complex_3b84:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.footer_0fe3 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.over_b21c {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.active_silver_da8e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .active_silver_da8e {
        grid-template-columns: 1fr 1fr;
    }
}

.purple-00b6 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.purple_782f h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.fresh_d41a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.progress-20c2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.caption-mini-c465 {
    font-size: 1rem;
    opacity: 0.9;
}

.purple_782f h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.overlay_a0a4 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.overlay_a0a4 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.overlay_a0a4 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;
}

.overlay_a0a4 li strong {
    color: var(--primary-purple);
}

.overlay_a0a4 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.footer-84fb {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.in_238b {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.main-7c7d {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.in_238b .filter_blue_31b4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.background_92a3 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.content_f6c6 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.content_f6c6 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.progress_0d0b {
    padding: 4rem 1.25rem;
    background: white;
}

.image-copper-0710 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .image-copper-0710 {
        grid-template-columns: 1fr 1fr;
    }
}

.wrapper_44d9 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-b96f {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.description_medium_e12b {
    margin-bottom: 1.5rem;
}

.green_2f36 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-small-3677 {
    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);
}

.accent-top-c803 {
    white-space: nowrap;
}

.progress-3a9a {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.advanced_ba80 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.preview-hard-0281 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.preview-hard-0281:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.old_c659 {
    font-size: 2rem;
    flex-shrink: 0;
}

.thumbnail-b229 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.thumbnail-b229 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.fresh_5159 {
    margin-top: 3rem;
}

.fresh_5159 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.panel-hard-afc0 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.panel-hard-afc0 thead {
    background: var(--primary-purple);
    color: white;
}

.panel-hard-afc0 th,
.panel-hard-afc0 td {
    padding: 1rem;
    text-align: left;
}

.panel-hard-afc0 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.panel-hard-afc0 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.panel-hard-afc0 tbody tr:last-child {
    border-bottom: none;
}

.panel-hard-afc0 tbody tr:hover {
    background: var(--light-bg);
}

.last_18d0 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.top-602e {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.accordion-bronze-3bb6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.modal_04df {
    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);
}

.modal_04df:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.modal_04df.card-11c1::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;
}

.feature_wood_ac61 {
    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;
}

.hard_c3ea {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.banner-1ba1 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gradient-lower-3688 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notification_a479 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.notification_a479 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.notification_a479 p:last-child {
    margin-bottom: 0;
}

.notification_a479 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.gallery-dim-e007 {
    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;
}

.layout_yellow_a5e2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.notification-5405 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.notification-5405 .component_166c {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.notification-5405 .filter_blue_31b4 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.disabled_iron_5560 {
    padding: 4rem 1.25rem;
    background: white;
}

.footer-6d23 {
    max-width: 900px;
    margin: 0 auto;
}

.column-brown-1cf5 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.column-brown-1cf5:hover {
    border-color: var(--primary-purple);
}

.column-brown-1cf5[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.column-brown-1cf5 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;
}

.column-brown-1cf5 summary::-webkit-details-marker {
    display: none;
}

.column-brown-1cf5 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.column-brown-1cf5[open] summary::after {
    transform: rotate(45deg);
}

.texture-glass-4d0a {
    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);
    }
}

.texture-glass-4d0a p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.texture-glass-4d0a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.texture-glass-4d0a ul,
.texture-glass-4d0a ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.texture-glass-4d0a li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.texture-glass-4d0a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.image_86e2 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.last-3080 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.last-3080 th,
.last-3080 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.last-3080 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.focus-a583 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.feature_outer_a611 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.mini-ce4c {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .mini-ce4c {
        flex-direction: column;
        text-align: center;
    }
}

.mini-ce4c img {
    flex-shrink: 0;
}

.over_084e {
    font-size: 4rem;
    flex-shrink: 0;
}

.container-6d65 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.container-6d65 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.paragraph-iron-434a {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.banner-eeda {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.full_a725 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.full_a725 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tiny_edef {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.frame-pink-540f {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.picture_67af {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rough-7770 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rough-7770 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.main_79a4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-stone-2114 {
    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);
}

.backdrop-bda8 {
    list-style: none;
}

.backdrop-bda8 li {
    margin-bottom: 0.75rem;
}

.backdrop-bda8 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.backdrop-bda8 a:hover {
    color: white;
}

.table_short_a65f {
    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;
}

.hero-911c {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-911c span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.gallery_a2c1 {
    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);
}

.heading_action_9a04 {
    text-align: right;
}

@media (max-width: 767px) {
    .heading_action_9a04 {
        text-align: center;
        width: 100%;
    }
}

.heading_action_9a04 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.left-862d {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.video_active_bb68 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.article_5fc4,
.grid_clean_0814,
.light_d705,
.huge_33d3,
.over_b21c,
.progress_0d0b,
.top-602e,
.disabled_iron_5560,
.feature_outer_a611,
.banner-eeda {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .iron_f95a {
        font-size: 1.75rem;
    }
    
    .feature_8df9 {
        font-size: 1rem;
    }
    
    .footer-84fb {
        flex-direction: column;
    }
    
    .image-copper-0710 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .stone_803f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .background_short_dea0 {
        max-width: 100%;
    }
    
    .list-8f7d {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .video_active_bb68 {
        padding: 0 1rem;
    }
    
    .tertiary_basic_7e27 {
        padding: 4rem 1rem 3rem;
    }
    
    .tertiary_basic_7e27 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .tertiary_basic_d62f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .mask_ae99 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .panel-hard-afc0,
    .last-3080 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .highlight-purple-879f {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .gas_7761 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .accordion-bronze-3bb6 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .tertiary_basic_7e27 h1 {
        font-size: 1.5rem;
    }
    
    .mask_ae99 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .red-7cc9 {
        padding: 0.75rem;
    }
    
    .component_166c {
        font-size: 1.5rem;
    }
    
    .highlight-purple-879f {
        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 */
.background_short_dea0:hover,
.plasma-b1dc:hover,
.modal_04df:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .huge_33d3,
    .top-602e,
    .disabled_iron_5560 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.avatar_52a1)
   ======================================== */

.lite-fb53.white_8f2a {
    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;
}

.lite-fb53.white_8f2a .hover_hovered_764a {
    color: #334155;
}

.lite-fb53.white_8f2a .hover_hovered_764a:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.lite-fb53.white_8f2a .hover_hovered_764a.fn-active-0191 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.lite-fb53.white_8f2a .surface_in_6aba {
    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);
}

.lite-fb53.white_8f2a .surface_in_6aba::before {
    border-bottom-color: #ffffff;
}

.lite-fb53.white_8f2a .notification_center_334a {
    color: #475569;
}

.lite-fb53.white_8f2a .notification_center_334a::before {
    background: #818cf8;
}

.lite-fb53.white_8f2a .notification_center_334a:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.lite-fb53.white_8f2a .notification_center_334a:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.lite-fb53.white_8f2a .green-6d71 {
    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);
}

.lite-fb53.white_8f2a .green-6d71:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.lite-fb53.white_8f2a .green-6d71 span {
    background: #475569;
    box-shadow: none;
}

.lite-fb53.white_8f2a .green-6d71.fn-active-0191 span:nth-child(1),
.lite-fb53.white_8f2a .green-6d71.fn-active-0191 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .lite-fb53.white_8f2a {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .lite-fb53.white_8f2a .box_f9d3 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .lite-fb53.white_8f2a .box_f9d3 span {
        color: #334155 !important;
    }

    .lite-fb53.white_8f2a .main-0e11 {
        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);
    }

    .lite-fb53.white_8f2a .main-0e11 .hover_hovered_764a {
        color: #334155;
        text-shadow: none;
    }

    .lite-fb53.white_8f2a .main-0e11 .hover_hovered_764a:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .lite-fb53.white_8f2a .main-0e11 .hover_hovered_764a.info_plasma_b2c5::after {
        color: #64748b;
    }

    .lite-fb53.white_8f2a .main-0e11 .surface_in_6aba {
        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) */
    .lite-fb53.white_8f2a .main-0e11 .section_focused_a1ff.fn-active-0191 .surface_in_6aba {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .lite-fb53.white_8f2a .main-0e11 .notification_center_334a {
        color: #475569;
    }

    .lite-fb53.white_8f2a .main-0e11 .notification_center_334a::before {
        color: #6366f1;
    }

    .lite-fb53.white_8f2a .main-0e11 .notification_center_334a:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .lite-fb53.white_8f2a .main-0e11 .notification_center_334a:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .lite-fb53.white_8f2a .main-0e11 .notification_center_334a:hover::before {
        color: #4f46e5;
    }
}

/* apk.tiny_7852 — mesmo tema claro da home; blocos extras */
body.grid-839b {
    background: #f8f9fa;
    color: #2c3e50;
}

.grid-839b .orange_6e2a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.grid-839b .mini_5c2c {
    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);
}

.grid-839b .mini_5c2c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.grid-839b .mini_5c2c p:last-child {
    margin-bottom: 0;
}

.grid-839b .mini_5c2c strong {
    color: var(--text-primary);
}

.grid-839b .title-f6c5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.grid-839b .title-f6c5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.frame-c389 {
    background: #f8f9fa;
    color: #2c3e50;
}

.frame-c389 .gallery-f7a3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.frame-c389 .message_new_5647 {
    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);
}

.frame-c389 .message_new_5647 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame-c389 .message_new_5647 p:last-child {
    margin-bottom: 0;
}

.frame-c389 .message_new_5647 strong {
    color: var(--text-primary);
}

.frame-c389 .widget_2d60 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.frame-c389 .widget_2d60 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_3d95 {
    background: #f8f9fa;
    color: #2c3e50;
}

.in_3d95 .pagination_hovered_f08e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.in_3d95 .border-02f8 {
    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_3d95 .border-02f8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.in_3d95 .border-02f8 p:last-child {
    margin-bottom: 0;
}

.in_3d95 .border-02f8 strong {
    color: var(--text-primary);
}

.in_3d95 .dark_b643 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.in_3d95 .dark_b643 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-active-dd2b {
    background: #f8f9fa;
    color: #2c3e50;
}

.caption-active-dd2b .card_59a8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.caption-active-dd2b .carousel-7301 {
    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-active-dd2b .carousel-7301 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption-active-dd2b .carousel-7301 p:last-child {
    margin-bottom: 0;
}

.caption-active-dd2b .carousel-7301 strong {
    color: var(--text-primary);
}

.caption-active-dd2b .prev_4faf {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.caption-active-dd2b .prev_4faf img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.list_glass_68aa {
    background: #f8f9fa;
    color: #2c3e50;
}

.list_glass_68aa .tabs_dd3e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list_glass_68aa .element-ed25 {
    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);
}

.list_glass_68aa .element-ed25 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list_glass_68aa .element-ed25 p:last-child {
    margin-bottom: 0;
}

.list_glass_68aa .element-ed25 strong {
    color: var(--text-primary);
}

.list_glass_68aa .nav_1f40 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list_glass_68aa .nav_1f40 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.under-4f52 {
    background: #f8f9fa;
    color: #2c3e50;
}

.under-4f52 .sort-a8a2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.under-4f52 .west_9d48 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.under-4f52 .west_9d48 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.under-4f52 .west_9d48 p:last-child {
    margin-bottom: 0;
}

.under-4f52 .west_9d48 strong {
    color: var(--text-primary);
}

.under-4f52 .tiny_59f8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.under-4f52 .tiny_59f8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tag-fast-f246 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag-fast-f246 .smooth_5f43 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag-fast-f246 .layout_tall_8b09 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.tag-fast-f246 .layout_tall_8b09 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-fast-f246 .layout_tall_8b09 p:last-child {
    margin-bottom: 0;
}

.tag-fast-f246 .layout_tall_8b09 strong {
    color: var(--text-primary);
}

.tag-fast-f246 .grid_3561 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tag-fast-f246 .grid_3561 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.row-a8a6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.row-a8a6 .surface-advanced-ab15 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.row-a8a6 .liquid-ec0b {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.row-a8a6 .liquid-ec0b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.row-a8a6 .liquid-ec0b p:last-child {
    margin-bottom: 0;
}

.row-a8a6 .liquid-ec0b strong {
    color: var(--text-primary);
}

.row-a8a6 .middle_d5fa {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.row-a8a6 .middle_d5fa img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.item_easy_45bc {
    background: #f8f9fa;
    color: #2c3e50;
}

.item_easy_45bc .frame_9a35 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.item_easy_45bc .smooth-2724 {
    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);
}

.item_easy_45bc .smooth-2724 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item_easy_45bc .smooth-2724 p:last-child {
    margin-bottom: 0;
}

.item_easy_45bc .smooth-2724 strong {
    color: var(--text-primary);
}

.item_easy_45bc .input-wide-fed4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.item_easy_45bc .input-wide-fed4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.slider_first_7b13 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slider_first_7b13 .iron_021a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slider_first_7b13 .backdrop-east-9d0c {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.slider_first_7b13 .backdrop-east-9d0c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slider_first_7b13 .backdrop-east-9d0c p:last-child {
    margin-bottom: 0;
}

.slider_first_7b13 .backdrop-east-9d0c strong {
    color: var(--text-primary);
}

.slider_first_7b13 .stone_c46f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slider_first_7b13 .stone_c46f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.input-focused-69e5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.input-focused-69e5 .progress-e274 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input-focused-69e5 .info-106e {
    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);
}

.input-focused-69e5 .info-106e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-focused-69e5 .info-106e p:last-child {
    margin-bottom: 0;
}

.input-focused-69e5 .info-106e strong {
    color: var(--text-primary);
}

.input-focused-69e5 .breadcrumb_dec3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input-focused-69e5 .breadcrumb_dec3 li {
    margin-bottom: 0.65rem;
}

.input-focused-69e5 .breadcrumb_dec3 li:last-child {
    margin-bottom: 0;
}

.input-focused-69e5 .first-5a1e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input-focused-69e5 .first-5a1e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hero-soft-cc13 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hero-soft-cc13 .container-bf85 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hero-soft-cc13 .sidebar-e099 {
    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);
}

.hero-soft-cc13 .sidebar-e099 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hero-soft-cc13 .sidebar-e099 p:last-child {
    margin-bottom: 0;
}

.hero-soft-cc13 .sidebar-e099 strong {
    color: var(--text-primary);
}

.hero-soft-cc13 .silver-45b7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hero-soft-cc13 .silver-45b7 li {
    margin-bottom: 0.65rem;
}

.hero-soft-cc13 .silver-45b7 li:last-child {
    margin-bottom: 0;
}

.hero-soft-cc13 .thumbnail-fast-f870 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hero-soft-cc13 .thumbnail-fast-f870 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.detail_prev_cacd {
    background: #f8f9fa;
    color: #2c3e50;
}

.detail_prev_cacd .description-first-f9b5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.detail_prev_cacd .new_003a {
    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);
}

.detail_prev_cacd .new_003a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail_prev_cacd .new_003a p:last-child {
    margin-bottom: 0;
}

.detail_prev_cacd .new_003a strong {
    color: var(--text-primary);
}

.detail_prev_cacd .large_3bbf {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.detail_prev_cacd .large_3bbf li {
    margin-bottom: 0.65rem;
}

.detail_prev_cacd .large_3bbf li:last-child {
    margin-bottom: 0;
}

.detail_prev_cacd .active_75fe {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.detail_prev_cacd .active_75fe 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-aaee {
    background: #f8f9fa;
    color: #2c3e50;
}

.steel-aaee .frame_motion_eea6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.steel-aaee .block_41d9 {
    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-aaee .block_41d9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel-aaee .block_41d9 p:last-child {
    margin-bottom: 0;
}

.steel-aaee .block_41d9 strong {
    color: var(--text-primary);
}

.steel-aaee .article-9b6f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel-aaee .article-9b6f li {
    margin-bottom: 0.65rem;
}

.steel-aaee .article-9b6f li:last-child {
    margin-bottom: 0;
}

body.media_liquid_9895 {
    background: #f8f9fa;
    color: #2c3e50;
}

.media_liquid_9895 .mask-1348 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media_liquid_9895 .picture-fixed-2d6f {
    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);
}

.media_liquid_9895 .picture-fixed-2d6f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media_liquid_9895 .picture-fixed-2d6f p:last-child {
    margin-bottom: 0;
}

.media_liquid_9895 .picture-fixed-2d6f strong {
    color: var(--text-primary);
}

.media_liquid_9895 .slow_761e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media_liquid_9895 .slow_761e li {
    margin-bottom: 0.65rem;
}

.media_liquid_9895 .slow_761e li:last-child {
    margin-bottom: 0;
}

.media_liquid_9895 .simple-09b9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media_liquid_9895 .simple-09b9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.table_fixed_7dda {
    background: #f8f9fa;
    color: #2c3e50;
}

.table_fixed_7dda .image-dark-f95b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.table_fixed_7dda .highlight-blue-0275 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.table_fixed_7dda .highlight-blue-0275 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table_fixed_7dda .highlight-blue-0275 p:last-child {
    margin-bottom: 0;
}

.table_fixed_7dda .highlight-blue-0275 strong {
    color: var(--text-primary);
}

.table_fixed_7dda .notice_f647 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.table_fixed_7dda .notice_f647 li {
    margin-bottom: 0.65rem;
}

.table_fixed_7dda .notice_f647 li:last-child {
    margin-bottom: 0;
}

.table_fixed_7dda .notice_selected_2d40 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.table_fixed_7dda .notice_selected_2d40 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.message_black_f35a {
    background: #f8f9fa;
    color: #2c3e50;
}

.message_black_f35a .hovered-af5c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message_black_f35a .green-e726 {
    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);
}

.message_black_f35a .green-e726 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message_black_f35a .green-e726 p:last-child {
    margin-bottom: 0;
}

.message_black_f35a .green-e726 strong {
    color: var(--text-primary);
}

.message_black_f35a .slider_simple_ec42 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message_black_f35a .slider_simple_ec42 li {
    margin-bottom: 0.65rem;
}

.message_black_f35a .slider_simple_ec42 li:last-child {
    margin-bottom: 0;
}

.message_black_f35a .widget_f2f7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message_black_f35a .widget_f2f7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tertiary-4ff2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tertiary-4ff2 .thumbnail-east-3f1a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tertiary-4ff2 .bottom_80b3 {
    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);
}

.tertiary-4ff2 .bottom_80b3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary-4ff2 .bottom_80b3 p:last-child {
    margin-bottom: 0;
}

.tertiary-4ff2 .bottom_80b3 strong {
    color: var(--text-primary);
}

.tertiary-4ff2 .pink-b3f4 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary-4ff2 .pink-b3f4 li {
    margin-bottom: 0.65rem;
}

.tertiary-4ff2 .pink-b3f4 li:last-child {
    margin-bottom: 0;
}

.tertiary-4ff2 .alert_f4fb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tertiary-4ff2 .alert_f4fb 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: e6a1 */
.phantom-card-v0 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
