/* 
 * 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.short-5ef3) — fixed together on mobile */
.popup-cbbd {
    width: 100%;
}

.in-6768 {
    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) {
    .popup-cbbd {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .in-6768 {
        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.notice-iron-180e. Conta) stay reachable.
     */
    .pink-80de .fixed-039c {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .popup-cbbd .pink-80de > .fixed-039c {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .popup-cbbd:has(.row_e175.fn-show-3787) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .popup-cbbd:has(.row_e175.fn-show-3787) .in-6768 {
        flex-shrink: 0;
    }

    .popup-cbbd:has(.row_e175.fn-show-3787) .pink-80de {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .popup-cbbd:has(.row_e175.fn-show-3787) .pink-80de > .fixed-039c {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .popup-cbbd:has(.row_e175.fn-show-3787) .stone_4485 {
        flex-shrink: 0;
    }

    .popup-cbbd:has(.row_e175.fn-show-3787) .row_e175.fn-show-3787 {
        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 */
    .pink-80de .row_e175 .table_east_cfaa.fn-active-3787 .texture-9a12 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .in-6768 {
        position: sticky;
        top: 0;
    }
}

.popup-cbbd.container_ec81,
.popup-cbbd.container_ec81 .in-6768 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-0cb1 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .card-0cb1 {
        padding: 0.75rem 0;
    }
}

.info-d4a4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.frame_9f24 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .frame_9f24 img {
        height: 35px;
    }
}

/* .pink-80de / .module-1dc2 — inner pages (brown bar); index uses .bronze_6860 below */

.pink-80de:not(.bronze_6860) .module-1dc2.fn-active-3787 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.right-8db7 {
    display: flex;
    gap: var(--spacing-md);
}

.wrapper_7aa2,
.badge-0a89 {
    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) {
    .wrapper_7aa2,
    .badge-0a89 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .right-8db7 {
        gap: 0.5rem;
    }
}

.wrapper_7aa2 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.wrapper_7aa2:hover {
    background: var(--primary-purple);
    color: white;
}

.badge-0a89 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.badge-0a89:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.picture-836e {
    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%;
}

.picture-836e::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;
}

.picture-836e::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;
}

.pagination_7942 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.card-orange-d7db {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.card-orange-d7db 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);
}

.picture-836e 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;
}

.widget_complex_21ee {
    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;
}

.widget_complex_21ee strong {
    font-weight: 700;
}

.sidebar_outer_874e {
    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);
}

.popup_1159 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.pagination_dark_ea36 {
    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);
}

.pagination_dark_ea36:hover {
    transform: translateY(-4px);
}

.hidden-hot-80bb {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.frame-6b34 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.feature_inner_871e {
    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;
}

.feature_inner_871e:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.feature_inner_871e.focused_5805 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.heading-04cc {
    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);
}

.heading-04cc:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.short-f123 {
    padding: 3rem 1.25rem;
    background: white;
}

.section-62bf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.short_2573 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.short_2573:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.short_2573 img {
    margin-bottom: 1rem;
}

.thick_6791 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.short_2573 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.short_2573 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 */
.medium_2da1 {
    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);
}

.card-19a5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.panel_over_4267 {
    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);
}

.panel_over_4267 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.panel_over_4267 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.panel_over_4267 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lite_6778 {
    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
   ======================================== */

.progress-3ea2 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.item-7487 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.new-a8bc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.new_881c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.component_06ca {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.component_06ca:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.component_06ca.media-lite-d787 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.component_06ca.media-lite-d787 h3,
.component_06ca.media-lite-d787 p {
    color: white;
}

.paper_57da {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.component_06ca h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.component_06ca p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gas-3406 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.gas-3406:hover {
    gap: 0.75rem;
}

.component_06ca.media-lite-d787 .gas-3406 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.basic_848e {
    padding: 4rem 1.25rem;
    background: white;
}

.upper-2045 {
    text-align: center;
    margin-bottom: 3rem;
}

.fixed_e078 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.fresh-1f09 {
    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%;
}

.fresh-1f09:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.banner-a614 {
    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);
}

.fixed_9107 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.tall_52be {
    padding: 1.5rem;
}

.tall_52be h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.widget_blue_3bd9 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.active-beb4 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.focused_0c49,
.green_171a {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.focused_0c49 {
    background: #dcfce7;
    color: #166534;
}

.focused_0c49.photo-38b3 {
    background: #10b981;
    color: white;
}

.green_171a {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.green_171a.accordion_46fb {
    background: #fee2e2;
    color: #991b1b;
}

.green_171a.link-09e8 {
    background: #fef3c7;
    color: #92400e;
}

.green_171a.tooltip_b16f {
    background: #dcfce7;
    color: #166534;
}

.paragraph_tall_d36b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.paragraph_tall_d36b strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.tag-ee58 {
    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);
}

.tag-ee58:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.simple-7b7c {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.simple_9338 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.complex_d5fe {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .complex_d5fe {
        grid-template-columns: 1fr 1fr;
    }
}

.outer-062d img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.current_17c1 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.full_8b6b {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.under_31ad {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.texture-paper-f3cf {
    font-size: 1rem;
    opacity: 0.9;
}

.current_17c1 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.main_a9a8 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.main_a9a8 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.main_a9a8 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;
}

.main_a9a8 li strong {
    color: var(--primary-purple);
}

.main_a9a8 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.info_3d28 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.heading-6067 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.east_f9f6 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.heading-6067 .frame-6b34 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.summary-wide-12fa p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.list-red-0b97 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.list-red-0b97 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.outline-huge-c5b8 {
    padding: 4rem 1.25rem;
    background: white;
}

.status_1653 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .status_1653 {
        grid-template-columns: 1fr 1fr;
    }
}

.image_a0ac h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.container-a941 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.complex-85ee {
    margin-bottom: 1.5rem;
}

.hidden_cool_1e63 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.down-d4df {
    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);
}

.hard-dffd {
    white-space: nowrap;
}

.title_rough_ae8d {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.tertiary-f8e4 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.media-tall-746c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.media-tall-746c:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.badge-b174 {
    font-size: 2rem;
    flex-shrink: 0;
}

.secondary_hard_6391 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.secondary_hard_6391 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.wrapper-9bb7 {
    margin-top: 3rem;
}

.wrapper-9bb7 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.paper-d9d5 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.paper-d9d5 thead {
    background: var(--primary-purple);
    color: white;
}

.paper-d9d5 th,
.paper-d9d5 td {
    padding: 1rem;
    text-align: left;
}

.paper-d9d5 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.paper-d9d5 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.paper-d9d5 tbody tr:last-child {
    border-bottom: none;
}

.paper-d9d5 tbody tr:hover {
    background: var(--light-bg);
}

.accordion_ed17 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.grid_42e3 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tertiary_81c4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.alert_62da {
    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);
}

.alert_62da:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.alert_62da.hidden-0610::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;
}

.hero_tall_4b29 {
    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_d744 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.paper_9070 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.outline_7e51 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.summary_25c8 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.summary_25c8 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.summary_25c8 p:last-child {
    margin-bottom: 0;
}

.summary_25c8 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blue-c9c3 {
    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;
}

.tooltip-dffe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.paragraph-7087 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.paragraph-7087 .hidden-hot-80bb {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.paragraph-7087 .frame-6b34 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.blue_6b4b {
    padding: 4rem 1.25rem;
    background: white;
}

.accordion_gas_6bfd {
    max-width: 900px;
    margin: 0 auto;
}

.notification_c3d7 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.notification_c3d7:hover {
    border-color: var(--primary-purple);
}

.notification_c3d7[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.notification_c3d7 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;
}

.notification_c3d7 summary::-webkit-details-marker {
    display: none;
}

.notification_c3d7 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.notification_c3d7[open] summary::after {
    transform: rotate(45deg);
}

.new-ed70 {
    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);
    }
}

.new-ed70 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.new-ed70 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.new-ed70 ul,
.new-ed70 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.new-ed70 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.new-ed70 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.solid-1015 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.tiny_f72b {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tiny_f72b th,
.tiny_f72b td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.tiny_f72b th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.button_rough_299f {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.full-762d {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.main_ca2f {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .main_ca2f {
        flex-direction: column;
        text-align: center;
    }
}

.main_ca2f img {
    flex-shrink: 0;
}

.soft_1121 {
    font-size: 4rem;
    flex-shrink: 0;
}

.disabled-047d h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.disabled-047d p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.orange-a124 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.button_55e8 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cold-1ae4 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cold-1ae4 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.border-9310 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.column_c4df {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.widget_f30e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.chip-inner-c3f2 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chip-inner-c3f2 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.sidebar_5490 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.large-3444 {
    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);
}

.selected_66db {
    list-style: none;
}

.selected_66db li {
    margin-bottom: 0.75rem;
}

.selected_66db a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.selected_66db a:hover {
    color: white;
}

.widget-2499 {
    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;
}

.outline-1cf0 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.outline-1cf0 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.layout-pro-9957 {
    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);
}

.bright_3e03 {
    text-align: right;
}

@media (max-width: 767px) {
    .bright_3e03 {
        text-align: center;
        width: 100%;
    }
}

.bright_3e03 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.tag-2822 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.fixed-039c {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.short-f123,
.medium_2da1,
.progress-3ea2,
.basic_848e,
.simple_9338,
.outline-huge-c5b8,
.grid_42e3,
.blue_6b4b,
.full-762d,
.button_55e8 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .item-7487 {
        font-size: 1.75rem;
    }
    
    .new-a8bc {
        font-size: 1rem;
    }
    
    .info_3d28 {
        flex-direction: column;
    }
    
    .status_1653 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .fixed_e078 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fresh-1f09 {
        max-width: 100%;
    }
    
    .fixed_9107 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .fixed-039c {
        padding: 0 1rem;
    }
    
    .picture-836e {
        padding: 4rem 1rem 3rem;
    }
    
    .picture-836e h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .feature_inner_871e {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .popup_1159 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .paper-d9d5,
    .tiny_f72b {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .section-62bf {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .new_881c {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .tertiary_81c4 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .picture-836e h1 {
        font-size: 1.5rem;
    }
    
    .popup_1159 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .pagination_dark_ea36 {
        padding: 0.75rem;
    }
    
    .hidden-hot-80bb {
        font-size: 1.5rem;
    }
    
    .section-62bf {
        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 */
.fresh-1f09:hover,
.component_06ca:hover,
.alert_62da:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .basic_848e,
    .grid_42e3,
    .blue_6b4b {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.short-5ef3)
   ======================================== */

.pink-80de.bronze_6860 {
    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;
}

.pink-80de.bronze_6860 .module-1dc2 {
    color: #334155;
}

.pink-80de.bronze_6860 .module-1dc2:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.pink-80de.bronze_6860 .module-1dc2.fn-active-3787 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.pink-80de.bronze_6860 .texture-9a12 {
    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);
}

.pink-80de.bronze_6860 .texture-9a12::before {
    border-bottom-color: #ffffff;
}

.pink-80de.bronze_6860 .pagination-7124 {
    color: #475569;
}

.pink-80de.bronze_6860 .pagination-7124::before {
    background: #818cf8;
}

.pink-80de.bronze_6860 .pagination-7124:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.pink-80de.bronze_6860 .pagination-7124:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.pink-80de.bronze_6860 .north_82cc {
    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);
}

.pink-80de.bronze_6860 .north_82cc:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.pink-80de.bronze_6860 .north_82cc span {
    background: #475569;
    box-shadow: none;
}

.pink-80de.bronze_6860 .north_82cc.fn-active-3787 span:nth-child(1),
.pink-80de.bronze_6860 .north_82cc.fn-active-3787 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .pink-80de.bronze_6860 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .pink-80de.bronze_6860 .stone_4485 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .pink-80de.bronze_6860 .stone_4485 span {
        color: #334155 !important;
    }

    .pink-80de.bronze_6860 .row_e175 {
        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);
    }

    .pink-80de.bronze_6860 .row_e175 .module-1dc2 {
        color: #334155;
        text-shadow: none;
    }

    .pink-80de.bronze_6860 .row_e175 .module-1dc2:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .pink-80de.bronze_6860 .row_e175 .module-1dc2.media-78b9::after {
        color: #64748b;
    }

    .pink-80de.bronze_6860 .row_e175 .texture-9a12 {
        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) */
    .pink-80de.bronze_6860 .row_e175 .table_east_cfaa.fn-active-3787 .texture-9a12 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .pink-80de.bronze_6860 .row_e175 .pagination-7124 {
        color: #475569;
    }

    .pink-80de.bronze_6860 .row_e175 .pagination-7124::before {
        color: #6366f1;
    }

    .pink-80de.bronze_6860 .row_e175 .pagination-7124:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .pink-80de.bronze_6860 .row_e175 .pagination-7124:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .pink-80de.bronze_6860 .row_e175 .pagination-7124:hover::before {
        color: #4f46e5;
    }
}

/* apk.video-d8a6 — mesmo tema claro da home; blocos extras */
body.module-2b8a {
    background: #f8f9fa;
    color: #2c3e50;
}

.module-2b8a .soft_cd65 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.module-2b8a .label-b4c0 {
    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);
}

.module-2b8a .label-b4c0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module-2b8a .label-b4c0 p:last-child {
    margin-bottom: 0;
}

.module-2b8a .label-b4c0 strong {
    color: var(--text-primary);
}

.module-2b8a .tiny-c102 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.module-2b8a .tiny-c102 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_lower_e31d {
    background: #f8f9fa;
    color: #2c3e50;
}

.input_lower_e31d .shadow_blue_516f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.input_lower_e31d .under_fd35 {
    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_lower_e31d .under_fd35 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.input_lower_e31d .under_fd35 p:last-child {
    margin-bottom: 0;
}

.input_lower_e31d .under_fd35 strong {
    color: var(--text-primary);
}

.input_lower_e31d .top_5295 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.input_lower_e31d .top_5295 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.silver_5150 {
    background: #f8f9fa;
    color: #2c3e50;
}

.silver_5150 .module_d7ba {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.silver_5150 .disabled_ac5b {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.silver_5150 .disabled_ac5b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.silver_5150 .disabled_ac5b p:last-child {
    margin-bottom: 0;
}

.silver_5150 .disabled_ac5b strong {
    color: var(--text-primary);
}

.silver_5150 .thumbnail_f6d2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.silver_5150 .thumbnail_f6d2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.avatar_7f4d {
    background: #f8f9fa;
    color: #2c3e50;
}

.avatar_7f4d .media-bronze-63fc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.avatar_7f4d .dropdown-dcec {
    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);
}

.avatar_7f4d .dropdown-dcec p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.avatar_7f4d .dropdown-dcec p:last-child {
    margin-bottom: 0;
}

.avatar_7f4d .dropdown-dcec strong {
    color: var(--text-primary);
}

.avatar_7f4d .advanced-6be4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.avatar_7f4d .advanced-6be4 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_dbc2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.steel_dbc2 .sort_pink_0233 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.steel_dbc2 .label-711e {
    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_dbc2 .label-711e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel_dbc2 .label-711e p:last-child {
    margin-bottom: 0;
}

.steel_dbc2 .label-711e strong {
    color: var(--text-primary);
}

.steel_dbc2 .basic-5df8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.steel_dbc2 .basic-5df8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.menu_333a {
    background: #f8f9fa;
    color: #2c3e50;
}

.menu_333a .glass_0299 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.menu_333a .avatar_selected_2ba5 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.menu_333a .avatar_selected_2ba5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.menu_333a .avatar_selected_2ba5 p:last-child {
    margin-bottom: 0;
}

.menu_333a .avatar_selected_2ba5 strong {
    color: var(--text-primary);
}

.menu_333a .header-active-a42f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.menu_333a .header-active-a42f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.shade-static-1d97 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade-static-1d97 .steel_1250 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade-static-1d97 .button-north-e7f9 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.shade-static-1d97 .button-north-e7f9 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade-static-1d97 .button-north-e7f9 p:last-child {
    margin-bottom: 0;
}

.shade-static-1d97 .button-north-e7f9 strong {
    color: var(--text-primary);
}

.shade-static-1d97 .secondary_55ef {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade-static-1d97 .secondary_55ef img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.lower_314b {
    background: #f8f9fa;
    color: #2c3e50;
}

.lower_314b .chip_64e4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.lower_314b .block-north-4a7a {
    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);
}

.lower_314b .block-north-4a7a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower_314b .block-north-4a7a p:last-child {
    margin-bottom: 0;
}

.lower_314b .block-north-4a7a strong {
    color: var(--text-primary);
}

.lower_314b .disabled-up-31df {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.lower_314b .disabled-up-31df 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-7c80 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tag-7c80 .caption-cold-0dbc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tag-7c80 .last-024a {
    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-7c80 .last-024a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tag-7c80 .last-024a p:last-child {
    margin-bottom: 0;
}

.tag-7c80 .last-024a strong {
    color: var(--text-primary);
}

.tag-7c80 .primary-139e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tag-7c80 .primary-139e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.focus-8691 {
    background: #f8f9fa;
    color: #2c3e50;
}

.focus-8691 .box_paper_7795 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.focus-8691 .status-471e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.focus-8691 .status-471e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.focus-8691 .status-471e p:last-child {
    margin-bottom: 0;
}

.focus-8691 .status-471e strong {
    color: var(--text-primary);
}

.focus-8691 .over_0465 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.focus-8691 .over_0465 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.narrow-063e {
    background: #f8f9fa;
    color: #2c3e50;
}

.narrow-063e .grid_black_8fb5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.narrow-063e .dropdown-5406 {
    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);
}

.narrow-063e .dropdown-5406 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.narrow-063e .dropdown-5406 p:last-child {
    margin-bottom: 0;
}

.narrow-063e .dropdown-5406 strong {
    color: var(--text-primary);
}

.narrow-063e .aside_over_1e33 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.narrow-063e .aside_over_1e33 li {
    margin-bottom: 0.65rem;
}

.narrow-063e .aside_over_1e33 li:last-child {
    margin-bottom: 0;
}

.narrow-063e .glass_6687 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.narrow-063e .glass_6687 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pink-b2cf {
    background: #f8f9fa;
    color: #2c3e50;
}

.pink-b2cf .disabled-yellow-70bd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pink-b2cf .basic_e53c {
    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);
}

.pink-b2cf .basic_e53c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pink-b2cf .basic_e53c p:last-child {
    margin-bottom: 0;
}

.pink-b2cf .basic_e53c strong {
    color: var(--text-primary);
}

.pink-b2cf .sort-soft-f45e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pink-b2cf .sort-soft-f45e li {
    margin-bottom: 0.65rem;
}

.pink-b2cf .sort-soft-f45e li:last-child {
    margin-bottom: 0;
}

.pink-b2cf .detail_f70d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pink-b2cf .detail_f70d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.module-3a0c {
    background: #f8f9fa;
    color: #2c3e50;
}

.module-3a0c .element-dim-861f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.module-3a0c .title_8866 {
    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);
}

.module-3a0c .title_8866 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module-3a0c .title_8866 p:last-child {
    margin-bottom: 0;
}

.module-3a0c .title_8866 strong {
    color: var(--text-primary);
}

.module-3a0c .fast-8afb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module-3a0c .fast-8afb li {
    margin-bottom: 0.65rem;
}

.module-3a0c .fast-8afb li:last-child {
    margin-bottom: 0;
}

.module-3a0c .prev_a746 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.module-3a0c .prev_a746 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.pattern-basic-e346 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern-basic-e346 .list_complex_745b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern-basic-e346 .accent-445e {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.pattern-basic-e346 .accent-445e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern-basic-e346 .accent-445e p:last-child {
    margin-bottom: 0;
}

.pattern-basic-e346 .accent-445e strong {
    color: var(--text-primary);
}

.pattern-basic-e346 .hot_5039 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern-basic-e346 .hot_5039 li {
    margin-bottom: 0.65rem;
}

.pattern-basic-e346 .hot_5039 li:last-child {
    margin-bottom: 0;
}

body.breadcrumb-thick-6a69 {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb-thick-6a69 .chip_motion_131c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb-thick-6a69 .notice_def5 {
    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-thick-6a69 .notice_def5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb-thick-6a69 .notice_def5 p:last-child {
    margin-bottom: 0;
}

.breadcrumb-thick-6a69 .notice_def5 strong {
    color: var(--text-primary);
}

.breadcrumb-thick-6a69 .content-348f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb-thick-6a69 .content-348f li {
    margin-bottom: 0.65rem;
}

.breadcrumb-thick-6a69 .content-348f li:last-child {
    margin-bottom: 0;
}

.breadcrumb-thick-6a69 .hidden-brown-03e7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.breadcrumb-thick-6a69 .hidden-brown-03e7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.lower_9816 {
    background: #f8f9fa;
    color: #2c3e50;
}

.lower_9816 .image-center-5955 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.lower_9816 .center-0d4d {
    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);
}

.lower_9816 .center-0d4d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower_9816 .center-0d4d p:last-child {
    margin-bottom: 0;
}

.lower_9816 .center-0d4d strong {
    color: var(--text-primary);
}

.lower_9816 .paragraph-0caf {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower_9816 .paragraph-0caf li {
    margin-bottom: 0.65rem;
}

.lower_9816 .paragraph-0caf li:last-child {
    margin-bottom: 0;
}

.lower_9816 .backdrop-purple-16c0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.lower_9816 .backdrop-purple-16c0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.east_db95 {
    background: #f8f9fa;
    color: #2c3e50;
}

.east_db95 .link-pressed-feb3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.east_db95 .lite-858b {
    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);
}

.east_db95 .lite-858b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.east_db95 .lite-858b p:last-child {
    margin-bottom: 0;
}

.east_db95 .lite-858b strong {
    color: var(--text-primary);
}

.east_db95 .widget_east_69d5 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.east_db95 .widget_east_69d5 li {
    margin-bottom: 0.65rem;
}

.east_db95 .widget_east_69d5 li:last-child {
    margin-bottom: 0;
}

.east_db95 .border-8274 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.east_db95 .border-8274 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.first_1465 {
    background: #f8f9fa;
    color: #2c3e50;
}

.first_1465 .video-white-803b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.first_1465 .last_640c {
    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);
}

.first_1465 .last_640c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.first_1465 .last_640c p:last-child {
    margin-bottom: 0;
}

.first_1465 .last_640c strong {
    color: var(--text-primary);
}

.first_1465 .status_770e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.first_1465 .status_770e li {
    margin-bottom: 0.65rem;
}

.first_1465 .status_770e li:last-child {
    margin-bottom: 0;
}

.first_1465 .pink_5f64 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.first_1465 .pink_5f64 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: c91d */
.promo-block-m1 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
