/* 
 * 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.hero-2d96) — fixed together on mobile */
.over_a299 {
    width: 100%;
}

.pink-8b3a {
    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) {
    .over_a299 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .pink-8b3a {
        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.summary-0711. Conta) stay reachable.
     */
    .alert_dirty_2143 .widget_6cbf {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .over_a299 .alert_dirty_2143 > .widget_6cbf {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .over_a299:has(.panel_dc87.fn-show-e3d1) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .over_a299:has(.panel_dc87.fn-show-e3d1) .pink-8b3a {
        flex-shrink: 0;
    }

    .over_a299:has(.panel_dc87.fn-show-e3d1) .alert_dirty_2143 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .over_a299:has(.panel_dc87.fn-show-e3d1) .alert_dirty_2143 > .widget_6cbf {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .over_a299:has(.panel_dc87.fn-show-e3d1) .hero_small_891c {
        flex-shrink: 0;
    }

    .over_a299:has(.panel_dc87.fn-show-e3d1) .panel_dc87.fn-show-e3d1 {
        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 */
    .alert_dirty_2143 .panel_dc87 .photo-action-4505.fn-active-e3d1 .up-1fba {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .pink-8b3a {
        position: sticky;
        top: 0;
    }
}

.over_a299.nav-46b7,
.over_a299.nav-46b7 .pink-8b3a {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pro_915c {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .pro_915c {
        padding: 0.75rem 0;
    }
}

.avatar-ace8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.hero-f940 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .hero-f940 img {
        height: 35px;
    }
}

/* .alert_dirty_2143 / .huge-c0e2 — inner pages (brown bar); index uses .logo_simple_f944 below */

.alert_dirty_2143:not(.logo_simple_f944) .huge-c0e2.fn-active-e3d1 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.white-23d6 {
    display: flex;
    gap: var(--spacing-md);
}

.white-09c8,
.status-6b29 {
    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) {
    .white-09c8,
    .status-6b29 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .white-23d6 {
        gap: 0.5rem;
    }
}

.white-09c8 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.white-09c8:hover {
    background: var(--primary-purple);
    color: white;
}

.status-6b29 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.status-6b29:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.banner_f491 {
    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%;
}

.banner_f491::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;
}

.banner_f491::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;
}

.form_b297 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.notice_c004 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.notice_c004 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);
}

.banner_f491 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;
}

.layout_af33 {
    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;
}

.layout_af33 strong {
    font-weight: 700;
}

.row-17dc {
    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);
}

.active-hovered-4fd6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.sidebar_down_c585 {
    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);
}

.sidebar_down_c585:hover {
    transform: translateY(-4px);
}

.filter_80ba {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.element_simple_60a6 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.background_warm_268a {
    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;
}

.background_warm_268a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.background_warm_268a.box-be6a {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.grid_under_7b90 {
    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);
}

.grid_under_7b90:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.media_763a {
    padding: 3rem 1.25rem;
    background: white;
}

.blue_4cf2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pagination_690d {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.pagination_690d:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pagination_690d img {
    margin-bottom: 1rem;
}

.element-3c08 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pagination_690d h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pagination_690d 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 */
.breadcrumb-prev-bc6d {
    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);
}

.module_huge_3e20 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.iron_b592 {
    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);
}

.iron_b592 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.iron_b592 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.iron_b592 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.secondary-056b {
    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
   ======================================== */

.card_cc19 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.carousel_dim_3327 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.purple_4cc1 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.center-d948 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-fbf6 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.image-fbf6:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.image-fbf6.mask-lower-1a52 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.image-fbf6.mask-lower-1a52 h3,
.image-fbf6.mask-lower-1a52 p {
    color: white;
}

.purple-5f01 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.image-fbf6 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.image-fbf6 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.image-soft-2d66 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.image-soft-2d66:hover {
    gap: 0.75rem;
}

.image-fbf6.mask-lower-1a52 .image-soft-2d66 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.old-cf7d {
    padding: 4rem 1.25rem;
    background: white;
}

.surface-silver-b694 {
    text-align: center;
    margin-bottom: 3rem;
}

.popup_top_006f {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.carousel-down-b140 {
    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%;
}

.carousel-down-b140:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.notice_plasma_97db {
    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);
}

.tabs-8d40 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.short_4f87 {
    padding: 1.5rem;
}

.short_4f87 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.gradient-b60d {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.smooth-b0d7 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.nav_complex_796e,
.lite-2da4 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav_complex_796e {
    background: #dcfce7;
    color: #166534;
}

.nav_complex_796e.panel_static_2796 {
    background: #10b981;
    color: white;
}

.lite-2da4 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.lite-2da4.smooth_7885 {
    background: #fee2e2;
    color: #991b1b;
}

.lite-2da4.texture-fluid-2d65 {
    background: #fef3c7;
    color: #92400e;
}

.lite-2da4.basic_fb6d {
    background: #dcfce7;
    color: #166534;
}

.menu_right_40b2 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.menu_right_40b2 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.west-b0d4 {
    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);
}

.west-b0d4:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.gradient-gold-7537 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.advanced_8e78 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.info-66a4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .info-66a4 {
        grid-template-columns: 1fr 1fr;
    }
}

.accent-thick-a4f1 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.detail_pro_807f h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.status_rough_eede {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.solid_48d5 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.message_f7e8 {
    font-size: 1rem;
    opacity: 0.9;
}

.detail_pro_807f h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.element-glass-9a21 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.element-glass-9a21 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.element-glass-9a21 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;
}

.element-glass-9a21 li strong {
    color: var(--primary-purple);
}

.element-glass-9a21 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.shade_30c4 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.module_east_183e {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.article-green-9064 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.module_east_183e .element_simple_60a6 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.sort_66b2 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.carousel-baf4 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.carousel-baf4 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.fast-ab32 {
    padding: 4rem 1.25rem;
    background: white;
}

.layout-a1e0 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .layout-a1e0 {
        grid-template-columns: 1fr 1fr;
    }
}

.bronze-d6bf h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.layout-4773 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.hidden-center-11be {
    margin-bottom: 1.5rem;
}

.prev_2675 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.table-white-5dc4 {
    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);
}

.caption-down-60ac {
    white-space: nowrap;
}

.breadcrumb-54af {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.chip_mini_628a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.block-east-653f {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.block-east-653f:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.hovered_6ed7 {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-7219 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.status-7219 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.banner-c105 {
    margin-top: 3rem;
}

.banner-c105 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form_62d7 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.form_62d7 thead {
    background: var(--primary-purple);
    color: white;
}

.form_62d7 th,
.form_62d7 td {
    padding: 1rem;
    text-align: left;
}

.form_62d7 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.form_62d7 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.form_62d7 tbody tr:last-child {
    border-bottom: none;
}

.form_62d7 tbody tr:hover {
    background: var(--light-bg);
}

.smooth_1dcb {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.block-focused-1e9a {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.component_764e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.aside_0f44 {
    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);
}

.aside_0f44:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.aside_0f44.in-2629::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;
}

.aside-0b66 {
    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;
}

.pink_71e7 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.search_large_0dcc h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.frame_b2b9 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.layout_249a {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.layout_249a p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.layout_249a p:last-child {
    margin-bottom: 0;
}

.layout_249a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hover-slow-3cc4 {
    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;
}

.mask-63ca {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.search_719c {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.search_719c .filter_80ba {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.search_719c .element_simple_60a6 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.section-6b6a {
    padding: 4rem 1.25rem;
    background: white;
}

.dark_3089 {
    max-width: 900px;
    margin: 0 auto;
}

.pattern-febe {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.pattern-febe:hover {
    border-color: var(--primary-purple);
}

.pattern-febe[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.pattern-febe 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;
}

.pattern-febe summary::-webkit-details-marker {
    display: none;
}

.pattern-febe summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.pattern-febe[open] summary::after {
    transform: rotate(45deg);
}

.tabs-gold-88e3 {
    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);
    }
}

.tabs-gold-88e3 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.tabs-gold-88e3 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.tabs-gold-88e3 ul,
.tabs-gold-88e3 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tabs-gold-88e3 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tabs-gold-88e3 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pattern-medium-59cf {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.layout_rough_d4a1 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.layout_rough_d4a1 th,
.layout_rough_d4a1 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.layout_rough_d4a1 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.pattern-ecbe {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.shadow-active-af0f {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.detail_1b3c {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .detail_1b3c {
        flex-direction: column;
        text-align: center;
    }
}

.detail_1b3c img {
    flex-shrink: 0;
}

.breadcrumb-smooth-187a {
    font-size: 4rem;
    flex-shrink: 0;
}

.lite-b7ba h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.lite-b7ba p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.menu_fa65 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.feature_e7fb {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.small-82c6 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.small-82c6 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.outline_focused_d6ac {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.link_231c {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.tag-blue-eb50 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.old-7d2c h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.old-7d2c p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.red-6cca {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.accent_d4ba {
    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);
}

.hovered_381f {
    list-style: none;
}

.hovered_381f li {
    margin-bottom: 0.75rem;
}

.hovered_381f a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.hovered_381f a:hover {
    color: white;
}

.notification-093b {
    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;
}

.breadcrumb-complex-84d4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumb-complex-84d4 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.caption_6720 {
    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);
}

.text-first-4281 {
    text-align: right;
}

@media (max-width: 767px) {
    .text-first-4281 {
        text-align: center;
        width: 100%;
    }
}

.text-first-4281 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.down_0668 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.widget_6cbf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.media_763a,
.breadcrumb-prev-bc6d,
.card_cc19,
.old-cf7d,
.advanced_8e78,
.fast-ab32,
.block-focused-1e9a,
.section-6b6a,
.shadow-active-af0f,
.feature_e7fb {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .carousel_dim_3327 {
        font-size: 1.75rem;
    }
    
    .purple_4cc1 {
        font-size: 1rem;
    }
    
    .shade_30c4 {
        flex-direction: column;
    }
    
    .layout-a1e0 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .popup_top_006f {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carousel-down-b140 {
        max-width: 100%;
    }
    
    .tabs-8d40 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .widget_6cbf {
        padding: 0 1rem;
    }
    
    .banner_f491 {
        padding: 4rem 1rem 3rem;
    }
    
    .banner_f491 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .background_warm_268a {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .active-hovered-4fd6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .form_62d7,
    .layout_rough_d4a1 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .blue_4cf2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .center-d948 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .component_764e {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .banner_f491 h1 {
        font-size: 1.5rem;
    }
    
    .active-hovered-4fd6 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .sidebar_down_c585 {
        padding: 0.75rem;
    }
    
    .filter_80ba {
        font-size: 1.5rem;
    }
    
    .blue_4cf2 {
        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 */
.carousel-down-b140:hover,
.image-fbf6:hover,
.aside_0f44:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .old-cf7d,
    .block-focused-1e9a,
    .section-6b6a {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.hero-2d96)
   ======================================== */

.alert_dirty_2143.logo_simple_f944 {
    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;
}

.alert_dirty_2143.logo_simple_f944 .huge-c0e2 {
    color: #334155;
}

.alert_dirty_2143.logo_simple_f944 .huge-c0e2:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.alert_dirty_2143.logo_simple_f944 .huge-c0e2.fn-active-e3d1 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.alert_dirty_2143.logo_simple_f944 .up-1fba {
    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);
}

.alert_dirty_2143.logo_simple_f944 .up-1fba::before {
    border-bottom-color: #ffffff;
}

.alert_dirty_2143.logo_simple_f944 .steel_9fdb {
    color: #475569;
}

.alert_dirty_2143.logo_simple_f944 .steel_9fdb::before {
    background: #818cf8;
}

.alert_dirty_2143.logo_simple_f944 .steel_9fdb:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.alert_dirty_2143.logo_simple_f944 .steel_9fdb:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.alert_dirty_2143.logo_simple_f944 .accent_bottom_bb86 {
    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);
}

.alert_dirty_2143.logo_simple_f944 .accent_bottom_bb86:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.alert_dirty_2143.logo_simple_f944 .accent_bottom_bb86 span {
    background: #475569;
    box-shadow: none;
}

.alert_dirty_2143.logo_simple_f944 .accent_bottom_bb86.fn-active-e3d1 span:nth-child(1),
.alert_dirty_2143.logo_simple_f944 .accent_bottom_bb86.fn-active-e3d1 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .alert_dirty_2143.logo_simple_f944 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .alert_dirty_2143.logo_simple_f944 .hero_small_891c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .alert_dirty_2143.logo_simple_f944 .hero_small_891c span {
        color: #334155 !important;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 {
        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);
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .huge-c0e2 {
        color: #334155;
        text-shadow: none;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .huge-c0e2:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .huge-c0e2.paragraph-fc28::after {
        color: #64748b;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .up-1fba {
        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) */
    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .photo-action-4505.fn-active-e3d1 .up-1fba {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .steel_9fdb {
        color: #475569;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .steel_9fdb::before {
        color: #6366f1;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .steel_9fdb:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .steel_9fdb:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .alert_dirty_2143.logo_simple_f944 .panel_dc87 .steel_9fdb:hover::before {
        color: #4f46e5;
    }
}

/* apk.fast-6af2 — mesmo tema claro da home; blocos extras */
body.shadow-clean-6815 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shadow-clean-6815 .content-24e4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shadow-clean-6815 .input_stone_8f64 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.shadow-clean-6815 .input_stone_8f64 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shadow-clean-6815 .input_stone_8f64 p:last-child {
    margin-bottom: 0;
}

.shadow-clean-6815 .input_stone_8f64 strong {
    color: var(--text-primary);
}

.shadow-clean-6815 .secondary-current-4280 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shadow-clean-6815 .secondary-current-4280 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-left-1a83 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tertiary-left-1a83 .media_pro_18fc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tertiary-left-1a83 .hover_over_0fd2 {
    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-left-1a83 .hover_over_0fd2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary-left-1a83 .hover_over_0fd2 p:last-child {
    margin-bottom: 0;
}

.tertiary-left-1a83 .hover_over_0fd2 strong {
    color: var(--text-primary);
}

.tertiary-left-1a83 .active_new_67d6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tertiary-left-1a83 .active_new_67d6 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_pro_f6e3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.input_pro_f6e3 .popup_9a03 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input_pro_f6e3 .background_6e6a {
    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_pro_f6e3 .background_6e6a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input_pro_f6e3 .background_6e6a p:last-child {
    margin-bottom: 0;
}

.input_pro_f6e3 .background_6e6a strong {
    color: var(--text-primary);
}

.input_pro_f6e3 .item_afcb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input_pro_f6e3 .item_afcb img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.button-7374 {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-7374 .tiny-afa3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-7374 .yellow_47b6 {
    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);
}

.button-7374 .yellow_47b6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-7374 .yellow_47b6 p:last-child {
    margin-bottom: 0;
}

.button-7374 .yellow_47b6 strong {
    color: var(--text-primary);
}

.button-7374 .aside-lite-ef06 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-7374 .aside-lite-ef06 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.green_0ac3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.green_0ac3 .message-2fce {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.green_0ac3 .logo_0fda {
    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);
}

.green_0ac3 .logo_0fda p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.green_0ac3 .logo_0fda p:last-child {
    margin-bottom: 0;
}

.green_0ac3 .logo_0fda strong {
    color: var(--text-primary);
}

.green_0ac3 .red_d693 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.green_0ac3 .red_d693 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.cool-6191 {
    background: #f8f9fa;
    color: #2c3e50;
}

.cool-6191 .primary-medium-795e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.cool-6191 .hover_selected_dafa {
    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);
}

.cool-6191 .hover_selected_dafa p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.cool-6191 .hover_selected_dafa p:last-child {
    margin-bottom: 0;
}

.cool-6191 .hover_selected_dafa strong {
    color: var(--text-primary);
}

.cool-6191 .slider_large_d1d9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.cool-6191 .slider_large_d1d9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.backdrop-easy-8f87 {
    background: #f8f9fa;
    color: #2c3e50;
}

.backdrop-easy-8f87 .carousel_thick_da0c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.backdrop-easy-8f87 .backdrop_bea5 {
    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);
}

.backdrop-easy-8f87 .backdrop_bea5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.backdrop-easy-8f87 .backdrop_bea5 p:last-child {
    margin-bottom: 0;
}

.backdrop-easy-8f87 .backdrop_bea5 strong {
    color: var(--text-primary);
}

.backdrop-easy-8f87 .overlay_light_db46 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.backdrop-easy-8f87 .overlay_light_db46 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.motion_2a77 {
    background: #f8f9fa;
    color: #2c3e50;
}

.motion_2a77 .frame-9341 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.motion_2a77 .icon_7e04 {
    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);
}

.motion_2a77 .icon_7e04 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.motion_2a77 .icon_7e04 p:last-child {
    margin-bottom: 0;
}

.motion_2a77 .icon_7e04 strong {
    color: var(--text-primary);
}

.motion_2a77 .heading-12b2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.motion_2a77 .heading-12b2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.outline_prev_ee78 {
    background: #f8f9fa;
    color: #2c3e50;
}

.outline_prev_ee78 .chip_easy_606b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.outline_prev_ee78 .container_26b0 {
    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);
}

.outline_prev_ee78 .container_26b0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.outline_prev_ee78 .container_26b0 p:last-child {
    margin-bottom: 0;
}

.outline_prev_ee78 .container_26b0 strong {
    color: var(--text-primary);
}

.outline_prev_ee78 .item_668e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.outline_prev_ee78 .item_668e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.mini_4458 {
    background: #f8f9fa;
    color: #2c3e50;
}

.mini_4458 .footer_basic_24b5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.mini_4458 .west_fe18 {
    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);
}

.mini_4458 .west_fe18 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mini_4458 .west_fe18 p:last-child {
    margin-bottom: 0;
}

.mini_4458 .west_fe18 strong {
    color: var(--text-primary);
}

.mini_4458 .input_2dfd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.mini_4458 .input_2dfd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.left-08a3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.left-08a3 .info-green-5a2e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.left-08a3 .copper_8680 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.left-08a3 .copper_8680 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.left-08a3 .copper_8680 p:last-child {
    margin-bottom: 0;
}

.left-08a3 .copper_8680 strong {
    color: var(--text-primary);
}

.left-08a3 .in_dc1c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.left-08a3 .in_dc1c li {
    margin-bottom: 0.65rem;
}

.left-08a3 .in_dc1c li:last-child {
    margin-bottom: 0;
}

.left-08a3 .tertiary-copper-64c7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.left-08a3 .tertiary-copper-64c7 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-dc2e {
    background: #f8f9fa;
    color: #2c3e50;
}

.dark-dc2e .stale-2bef {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dark-dc2e .top-f0d3 {
    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-dc2e .top-f0d3 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dark-dc2e .top-f0d3 p:last-child {
    margin-bottom: 0;
}

.dark-dc2e .top-f0d3 strong {
    color: var(--text-primary);
}

.dark-dc2e .lower-e787 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dark-dc2e .lower-e787 li {
    margin-bottom: 0.65rem;
}

.dark-dc2e .lower-e787 li:last-child {
    margin-bottom: 0;
}

.dark-dc2e .element_in_277e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dark-dc2e .element_in_277e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.primary-17b1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.primary-17b1 .row-bottom-8df7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.primary-17b1 .prev-a5ae {
    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);
}

.primary-17b1 .prev-a5ae p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.primary-17b1 .prev-a5ae p:last-child {
    margin-bottom: 0;
}

.primary-17b1 .prev-a5ae strong {
    color: var(--text-primary);
}

.primary-17b1 .sort-easy-9a10 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.primary-17b1 .sort-easy-9a10 li {
    margin-bottom: 0.65rem;
}

.primary-17b1 .sort-easy-9a10 li:last-child {
    margin-bottom: 0;
}

.primary-17b1 .last-1fac {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.primary-17b1 .last-1fac 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_3049 {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb_3049 .search-dim-0a96 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb_3049 .focus_white_85d2 {
    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_3049 .focus_white_85d2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_3049 .focus_white_85d2 p:last-child {
    margin-bottom: 0;
}

.breadcrumb_3049 .focus_white_85d2 strong {
    color: var(--text-primary);
}

.breadcrumb_3049 .paragraph-slow-2ecf {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_3049 .paragraph-slow-2ecf li {
    margin-bottom: 0.65rem;
}

.breadcrumb_3049 .paragraph-slow-2ecf li:last-child {
    margin-bottom: 0;
}

body.column-south-9743 {
    background: #f8f9fa;
    color: #2c3e50;
}

.column-south-9743 .copper-d841 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.column-south-9743 .cold-25d0 {
    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);
}

.column-south-9743 .cold-25d0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.column-south-9743 .cold-25d0 p:last-child {
    margin-bottom: 0;
}

.column-south-9743 .cold-25d0 strong {
    color: var(--text-primary);
}

.column-south-9743 .picture-d939 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.column-south-9743 .picture-d939 li {
    margin-bottom: 0.65rem;
}

.column-south-9743 .picture-d939 li:last-child {
    margin-bottom: 0;
}

.column-south-9743 .gold-4cef {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.column-south-9743 .gold-4cef 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_dim_5d3d {
    background: #f8f9fa;
    color: #2c3e50;
}

.caption_dim_5d3d .highlight_white_bc59 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.caption_dim_5d3d .alert-down-2b9c {
    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_dim_5d3d .alert-down-2b9c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption_dim_5d3d .alert-down-2b9c p:last-child {
    margin-bottom: 0;
}

.caption_dim_5d3d .alert-down-2b9c strong {
    color: var(--text-primary);
}

.caption_dim_5d3d .middle_2d2f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.caption_dim_5d3d .middle_2d2f li {
    margin-bottom: 0.65rem;
}

.caption_dim_5d3d .middle_2d2f li:last-child {
    margin-bottom: 0;
}

.caption_dim_5d3d .backdrop_basic_8eb7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.caption_dim_5d3d .backdrop_basic_8eb7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.card_015c {
    background: #f8f9fa;
    color: #2c3e50;
}

.card_015c .list-smooth-bd55 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.card_015c .motion-68e6 {
    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);
}

.card_015c .motion-68e6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card_015c .motion-68e6 p:last-child {
    margin-bottom: 0;
}

.card_015c .motion-68e6 strong {
    color: var(--text-primary);
}

.card_015c .footer-a912 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.card_015c .footer-a912 li {
    margin-bottom: 0.65rem;
}

.card_015c .footer-a912 li:last-child {
    margin-bottom: 0;
}

.card_015c .tag_orange_e0c6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.card_015c .tag_orange_e0c6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.north-d276 {
    background: #f8f9fa;
    color: #2c3e50;
}

.north-d276 .hero_e584 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.north-d276 .dirty_7925 {
    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);
}

.north-d276 .dirty_7925 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north-d276 .dirty_7925 p:last-child {
    margin-bottom: 0;
}

.north-d276 .dirty_7925 strong {
    color: var(--text-primary);
}

.north-d276 .chip-right-1de7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.north-d276 .chip-right-1de7 li {
    margin-bottom: 0.65rem;
}

.north-d276 .chip-right-1de7 li:last-child {
    margin-bottom: 0;
}

.north-d276 .small_f3bb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.north-d276 .small_f3bb 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: e9f3 */
.shadow-element-i0 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
