/* 
 * 255bet Main Styles - Optimized for Google 2026 Algorithm
 * Focus: Core Web Vitals, Mobile-First, Accessibility
 */

/* ========================================
   1. CSS Reset & Base Styles
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    /* Color Palette - Modern & Accessible */
    --primary-purple: #667eea;
    --primary-purple-dark: #5568d3;
    --secondary-green: #10b981;
    --secondary-green-dark: #059669;
    --accent-gold: #fbbf24;
    --dark-bg: #1f2937;
    --dark-card: #2d3748;
    --light-bg: #f8f9fa;
    --light-card: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-light: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-system);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ========================================
   2. Accessibility
   ======================================== */

/* Focus Visible for Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

/* ========================================
   3. Header & Navigation
   ======================================== */

/* Top bar + brown nav (shared.avatar_pro_2bba) — fixed together on mobile */
.heading_inner_6feb {
    width: 100%;
}

.blue-9e1a {
    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) {
    .heading_inner_6feb {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .blue-9e1a {
        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.frame_cool_6982. Conta) stay reachable.
     */
    .summary_prev_fb67 .row_90ad {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .heading_inner_6feb .summary_prev_fb67 > .row_90ad {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .heading_inner_6feb:has(.grid_e805.fn-show-b687) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .heading_inner_6feb:has(.grid_e805.fn-show-b687) .blue-9e1a {
        flex-shrink: 0;
    }

    .heading_inner_6feb:has(.grid_e805.fn-show-b687) .summary_prev_fb67 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .heading_inner_6feb:has(.grid_e805.fn-show-b687) .summary_prev_fb67 > .row_90ad {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .heading_inner_6feb:has(.grid_e805.fn-show-b687) .link_tall_a28f {
        flex-shrink: 0;
    }

    .heading_inner_6feb:has(.grid_e805.fn-show-b687) .grid_e805.fn-show-b687 {
        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 */
    .summary_prev_fb67 .grid_e805 .container-middle-c4fc.fn-active-b687 .title-full-5b8d {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .blue-9e1a {
        position: sticky;
        top: 0;
    }
}

.heading_inner_6feb.tag-90c6,
.heading_inner_6feb.tag-90c6 .blue-9e1a {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.carousel_middle_d2e9 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .carousel_middle_d2e9 {
        padding: 0.75rem 0;
    }
}

.secondary_tiny_5644 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.header-cool-2faf img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .header-cool-2faf img {
        height: 35px;
    }
}

/* .summary_prev_fb67 / .east-0580 — inner pages (brown bar); index uses .text_b9e1 below */

.summary_prev_fb67:not(.text_b9e1) .east-0580.fn-active-b687 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.image-glass-a93f {
    display: flex;
    gap: var(--spacing-md);
}

.sort_1e26,
.title_1e8d {
    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) {
    .sort_1e26,
    .title_1e8d {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .image-glass-a93f {
        gap: 0.5rem;
    }
}

.sort_1e26 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.sort_1e26:hover {
    background: var(--primary-purple);
    color: white;
}

.title_1e8d {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.title_1e8d:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.hover-07ad {
    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%;
}

.hover-07ad::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;
}

.hover-07ad::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;
}

.lower_3bbb {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.chip_east_4945 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.chip_east_4945 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);
}

.hover-07ad 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;
}

.basic-4a01 {
    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;
}

.basic-4a01 strong {
    font-weight: 700;
}

.media_out_8eda {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mask-fresh-b575 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.search-e51e {
    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);
}

.search-e51e:hover {
    transform: translateY(-4px);
}

.small-627c {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.mask_white_b0c3 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.warm_9ffe {
    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;
}

.warm_9ffe:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.warm_9ffe.bronze_9369 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.feature_hard_4edc {
    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);
}

.feature_hard_4edc:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.card_7cf4 {
    padding: 3rem 1.25rem;
    background: white;
}

.modal-9825 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-solid-ee38 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.summary-solid-ee38:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.summary-solid-ee38 img {
    margin-bottom: 1rem;
}

.hard_ae7a {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.summary-solid-ee38 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.summary-solid-ee38 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 */
.basic-6400 {
    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);
}

.light_0e2f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.fixed-3399 {
    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);
}

.fixed-3399 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.fixed-3399 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.fixed-3399 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fixed_4eec {
    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
   ======================================== */

.action_6d10 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.widget_paper_4b5e {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.up_095b {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.primary_narrow_4590 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tabs_a759 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.tabs_a759:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.tabs_a759.light-3c94 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tabs_a759.light-3c94 h3,
.tabs_a759.light-3c94 p {
    color: white;
}

.wide_d997 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tabs_a759 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tabs_a759 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.video_3152 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.video_3152:hover {
    gap: 0.75rem;
}

.tabs_a759.light-3c94 .video_3152 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.center-a6a2 {
    padding: 4rem 1.25rem;
    background: white;
}

.photo_old_31e5 {
    text-align: center;
    margin-bottom: 3rem;
}

.table-3551 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.selected-e214 {
    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%;
}

.selected-e214:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.pagination-b072 {
    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);
}

.pagination_liquid_b959 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.current_cd46 {
    padding: 1.5rem;
}

.current_cd46 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.green_f05a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pressed-4631 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.card-e7a4,
.over-0592 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.card-e7a4 {
    background: #dcfce7;
    color: #166534;
}

.card-e7a4.aside-ca4b {
    background: #10b981;
    color: white;
}

.over-0592 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.over-0592.image-medium-7612 {
    background: #fee2e2;
    color: #991b1b;
}

.over-0592.header_fluid_c347 {
    background: #fef3c7;
    color: #92400e;
}

.over-0592.large_84c1 {
    background: #dcfce7;
    color: #166534;
}

.surface-focused-e23e {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.surface-focused-e23e strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.thick-46a9 {
    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);
}

.thick-46a9:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.chip-narrow-8344 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.link-49e5 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.notice-yellow-d2a4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .notice-yellow-d2a4 {
        grid-template-columns: 1fr 1fr;
    }
}

.media-4a9c img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.dim_b733 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.label-first-c0b7 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.container-dirty-73b4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.description-bf48 {
    font-size: 1rem;
    opacity: 0.9;
}

.dim_b733 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.active_dba9 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.active_dba9 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.active_dba9 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;
}

.active_dba9 li strong {
    color: var(--primary-purple);
}

.active_dba9 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.under-b446 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.narrow-68d0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.media-thick-f2b7 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.narrow-68d0 .mask_white_b0c3 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.popup-19d8 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.footer_simple_cae7 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer_simple_cae7 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.hero-center-21c0 {
    padding: 4rem 1.25rem;
    background: white;
}

.table-e131 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .table-e131 {
        grid-template-columns: 1fr 1fr;
    }
}

.container-de6a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.item_1deb {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.down-6b51 {
    margin-bottom: 1.5rem;
}

.preview-be19 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-gold-4a35 {
    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);
}

.notification_b282 {
    white-space: nowrap;
}

.link_complex_f035 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.disabled-tall-177c h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.table-71c1 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.table-71c1:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.wrapper-down-4dce {
    font-size: 2rem;
    flex-shrink: 0;
}

.component_d647 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.component_d647 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pink_7d3e {
    margin-top: 3rem;
}

.pink_7d3e h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.nav_cool_93cb {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nav_cool_93cb thead {
    background: var(--primary-purple);
    color: white;
}

.nav_cool_93cb th,
.nav_cool_93cb td {
    padding: 1rem;
    text-align: left;
}

.nav_cool_93cb th {
    font-weight: 700;
    font-size: 0.9rem;
}

.nav_cool_93cb tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.nav_cool_93cb tbody tr:last-child {
    border-bottom: none;
}

.nav_cool_93cb tbody tr:hover {
    background: var(--light-bg);
}

.tabs-outer-7c7d {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.stale_07a5 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.alert_wood_208c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.element_c05a {
    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);
}

.element_c05a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.element_c05a.purple-6ff1::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;
}

.input-black-fc45 {
    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;
}

.menu_west_1758 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.overlay-5368 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.card-purple-3641 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tabs_cool_9e75 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.tabs_cool_9e75 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.tabs_cool_9e75 p:last-child {
    margin-bottom: 0;
}

.tabs_cool_9e75 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.form_under_7f16 {
    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;
}

.form-a27d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info_2762 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.info_2762 .small-627c {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.info_2762 .mask_white_b0c3 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.top_f735 {
    padding: 4rem 1.25rem;
    background: white;
}

.summary-7af5 {
    max-width: 900px;
    margin: 0 auto;
}

.texture_west_c09d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.texture_west_c09d:hover {
    border-color: var(--primary-purple);
}

.texture_west_c09d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.texture_west_c09d 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;
}

.texture_west_c09d summary::-webkit-details-marker {
    display: none;
}

.texture_west_c09d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.texture_west_c09d[open] summary::after {
    transform: rotate(45deg);
}

.pagination_1855 {
    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);
    }
}

.pagination_1855 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pagination_1855 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.pagination_1855 ul,
.pagination_1855 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.pagination_1855 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pagination_1855 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.inner-7207 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.text_paper_4c88 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.text_paper_4c88 th,
.text_paper_4c88 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.text_paper_4c88 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.element-purple-d7c3 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.yellow-172b {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.tall-c65b {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .tall-c65b {
        flex-direction: column;
        text-align: center;
    }
}

.tall-c65b img {
    flex-shrink: 0;
}

.tag_9743 {
    font-size: 4rem;
    flex-shrink: 0;
}

.shadow_06bb h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.shadow_06bb p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.thumbnail-974e {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.dirty-1843 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.gold-e485 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.gold-e485 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-c0d9 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.gradient_b783 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.motion-f4f8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cold-6714 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cold-6714 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.banner-out-9a49 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.focused_7752 {
    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);
}

.notice_e985 {
    list-style: none;
}

.notice_e985 li {
    margin-bottom: 0.75rem;
}

.notice_e985 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.notice_e985 a:hover {
    color: white;
}

.pattern-03a7 {
    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;
}

.next-7555 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.next-7555 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.gold_aaaa {
    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);
}

.layout_d83c {
    text-align: right;
}

@media (max-width: 767px) {
    .layout_d83c {
        text-align: center;
        width: 100%;
    }
}

.layout_d83c p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.cold_e6a2 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.row_90ad {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.card_7cf4,
.basic-6400,
.action_6d10,
.center-a6a2,
.link-49e5,
.hero-center-21c0,
.stale_07a5,
.top_f735,
.yellow-172b,
.dirty-1843 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .widget_paper_4b5e {
        font-size: 1.75rem;
    }
    
    .up_095b {
        font-size: 1rem;
    }
    
    .under-b446 {
        flex-direction: column;
    }
    
    .table-e131 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .table-3551 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .selected-e214 {
        max-width: 100%;
    }
    
    .pagination_liquid_b959 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .row_90ad {
        padding: 0 1rem;
    }
    
    .hover-07ad {
        padding: 4rem 1rem 3rem;
    }
    
    .hover-07ad h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .warm_9ffe {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .mask-fresh-b575 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .nav_cool_93cb,
    .text_paper_4c88 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .modal-9825 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .primary_narrow_4590 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .alert_wood_208c {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hover-07ad h1 {
        font-size: 1.5rem;
    }
    
    .mask-fresh-b575 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .search-e51e {
        padding: 0.75rem;
    }
    
    .small-627c {
        font-size: 1.5rem;
    }
    
    .modal-9825 {
        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 */
.selected-e214:hover,
.tabs_a759:hover,
.element_c05a:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .center-a6a2,
    .stale_07a5,
    .top_f735 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.avatar_pro_2bba)
   ======================================== */

.summary_prev_fb67.text_b9e1 {
    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;
}

.summary_prev_fb67.text_b9e1 .east-0580 {
    color: #334155;
}

.summary_prev_fb67.text_b9e1 .east-0580:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.summary_prev_fb67.text_b9e1 .east-0580.fn-active-b687 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.summary_prev_fb67.text_b9e1 .title-full-5b8d {
    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);
}

.summary_prev_fb67.text_b9e1 .title-full-5b8d::before {
    border-bottom-color: #ffffff;
}

.summary_prev_fb67.text_b9e1 .outline-aa47 {
    color: #475569;
}

.summary_prev_fb67.text_b9e1 .outline-aa47::before {
    background: #818cf8;
}

.summary_prev_fb67.text_b9e1 .outline-aa47:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.summary_prev_fb67.text_b9e1 .outline-aa47:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.summary_prev_fb67.text_b9e1 .gradient-3fc3 {
    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);
}

.summary_prev_fb67.text_b9e1 .gradient-3fc3:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.summary_prev_fb67.text_b9e1 .gradient-3fc3 span {
    background: #475569;
    box-shadow: none;
}

.summary_prev_fb67.text_b9e1 .gradient-3fc3.fn-active-b687 span:nth-child(1),
.summary_prev_fb67.text_b9e1 .gradient-3fc3.fn-active-b687 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .summary_prev_fb67.text_b9e1 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .summary_prev_fb67.text_b9e1 .link_tall_a28f {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .summary_prev_fb67.text_b9e1 .link_tall_a28f span {
        color: #334155 !important;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 {
        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);
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .east-0580 {
        color: #334155;
        text-shadow: none;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .east-0580:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .east-0580.modal-hard-bcf9::after {
        color: #64748b;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .title-full-5b8d {
        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) */
    .summary_prev_fb67.text_b9e1 .grid_e805 .container-middle-c4fc.fn-active-b687 .title-full-5b8d {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .outline-aa47 {
        color: #475569;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .outline-aa47::before {
        color: #6366f1;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .outline-aa47:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .outline-aa47:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .summary_prev_fb67.text_b9e1 .grid_e805 .outline-aa47:hover::before {
        color: #4f46e5;
    }
}

/* apk.pressed_a926 — mesmo tema claro da home; blocos extras */
body.component-red-869a {
    background: #f8f9fa;
    color: #2c3e50;
}

.component-red-869a .simple-431b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.component-red-869a .preview_41a2 {
    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);
}

.component-red-869a .preview_41a2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.component-red-869a .preview_41a2 p:last-child {
    margin-bottom: 0;
}

.component-red-869a .preview_41a2 strong {
    color: var(--text-primary);
}

.component-red-869a .pattern-dim-8e44 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.component-red-869a .pattern-dim-8e44 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent-gold-12f5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent-gold-12f5 .overlay_1033 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent-gold-12f5 .summary_9443 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.accent-gold-12f5 .summary_9443 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent-gold-12f5 .summary_9443 p:last-child {
    margin-bottom: 0;
}

.accent-gold-12f5 .summary_9443 strong {
    color: var(--text-primary);
}

.accent-gold-12f5 .wide_6bac {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent-gold-12f5 .wide_6bac img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.summary_fresh_c554 {
    background: #f8f9fa;
    color: #2c3e50;
}

.summary_fresh_c554 .thumbnail_caec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.summary_fresh_c554 .tertiary_57db {
    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);
}

.summary_fresh_c554 .tertiary_57db p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.summary_fresh_c554 .tertiary_57db p:last-child {
    margin-bottom: 0;
}

.summary_fresh_c554 .tertiary_57db strong {
    color: var(--text-primary);
}

.summary_fresh_c554 .cool_dfed {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.summary_fresh_c554 .cool_dfed img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.nav_dirty_1984 {
    background: #f8f9fa;
    color: #2c3e50;
}

.nav_dirty_1984 .outer_62a3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.nav_dirty_1984 .main-middle-7bd2 {
    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);
}

.nav_dirty_1984 .main-middle-7bd2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.nav_dirty_1984 .main-middle-7bd2 p:last-child {
    margin-bottom: 0;
}

.nav_dirty_1984 .main-middle-7bd2 strong {
    color: var(--text-primary);
}

.nav_dirty_1984 .info-medium-bafc {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.nav_dirty_1984 .info-medium-bafc img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.paragraph-eb07 {
    background: #f8f9fa;
    color: #2c3e50;
}

.paragraph-eb07 .inner_0dd9 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.paragraph-eb07 .motion-aa3c {
    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);
}

.paragraph-eb07 .motion-aa3c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.paragraph-eb07 .motion-aa3c p:last-child {
    margin-bottom: 0;
}

.paragraph-eb07 .motion-aa3c strong {
    color: var(--text-primary);
}

.paragraph-eb07 .active-da9f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.paragraph-eb07 .active-da9f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.white-f285 {
    background: #f8f9fa;
    color: #2c3e50;
}

.white-f285 .shade-82ae {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.white-f285 .hard_c6f2 {
    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);
}

.white-f285 .hard_c6f2 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.white-f285 .hard_c6f2 p:last-child {
    margin-bottom: 0;
}

.white-f285 .hard_c6f2 strong {
    color: var(--text-primary);
}

.white-f285 .element_a555 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.white-f285 .element_a555 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.link_selected_46ed {
    background: #f8f9fa;
    color: #2c3e50;
}

.link_selected_46ed .input-f733 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.link_selected_46ed .texture_4d0a {
    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);
}

.link_selected_46ed .texture_4d0a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link_selected_46ed .texture_4d0a p:last-child {
    margin-bottom: 0;
}

.link_selected_46ed .texture_4d0a strong {
    color: var(--text-primary);
}

.link_selected_46ed .description-772a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.link_selected_46ed .description-772a 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_5ee0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.lower_5ee0 .picture_7b1d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.lower_5ee0 .box-slow-4827 {
    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_5ee0 .box-slow-4827 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lower_5ee0 .box-slow-4827 p:last-child {
    margin-bottom: 0;
}

.lower_5ee0 .box-slow-4827 strong {
    color: var(--text-primary);
}

.lower_5ee0 .logo_1906 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.lower_5ee0 .logo_1906 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.search_pink_65f5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.search_pink_65f5 .tertiary-fresh-d666 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.search_pink_65f5 .picture-simple-8b53 {
    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);
}

.search_pink_65f5 .picture-simple-8b53 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.search_pink_65f5 .picture-simple-8b53 p:last-child {
    margin-bottom: 0;
}

.search_pink_65f5 .picture-simple-8b53 strong {
    color: var(--text-primary);
}

.search_pink_65f5 .media-f274 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.search_pink_65f5 .media-f274 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper_6907 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper_6907 .focus-fa7e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper_6907 .notification_current_1527 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.wrapper_6907 .notification_current_1527 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_6907 .notification_current_1527 p:last-child {
    margin-bottom: 0;
}

.wrapper_6907 .notification_current_1527 strong {
    color: var(--text-primary);
}

.wrapper_6907 .left-9376 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper_6907 .left-9376 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.lite-2a00 {
    background: #f8f9fa;
    color: #2c3e50;
}

.lite-2a00 .green_5a5c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.lite-2a00 .video-d224 {
    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);
}

.lite-2a00 .video-d224 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lite-2a00 .video-d224 p:last-child {
    margin-bottom: 0;
}

.lite-2a00 .video-d224 strong {
    color: var(--text-primary);
}

.lite-2a00 .action_4fd7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.lite-2a00 .action_4fd7 li {
    margin-bottom: 0.65rem;
}

.lite-2a00 .action_4fd7 li:last-child {
    margin-bottom: 0;
}

.lite-2a00 .right_2314 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.lite-2a00 .right_2314 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.carousel_2cae {
    background: #f8f9fa;
    color: #2c3e50;
}

.carousel_2cae .picture_89c6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.carousel_2cae .east-b96a {
    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);
}

.carousel_2cae .east-b96a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel_2cae .east-b96a p:last-child {
    margin-bottom: 0;
}

.carousel_2cae .east-b96a strong {
    color: var(--text-primary);
}

.carousel_2cae .west_41d4 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel_2cae .west_41d4 li {
    margin-bottom: 0.65rem;
}

.carousel_2cae .west_41d4 li:last-child {
    margin-bottom: 0;
}

.carousel_2cae .footer-up-ce3c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.carousel_2cae .footer-up-ce3c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.south-302f {
    background: #f8f9fa;
    color: #2c3e50;
}

.south-302f .banner-glass-61e8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.south-302f .alert-center-7a79 {
    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);
}

.south-302f .alert-center-7a79 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south-302f .alert-center-7a79 p:last-child {
    margin-bottom: 0;
}

.south-302f .alert-center-7a79 strong {
    color: var(--text-primary);
}

.south-302f .selected-419a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south-302f .selected-419a li {
    margin-bottom: 0.65rem;
}

.south-302f .selected-419a li:last-child {
    margin-bottom: 0;
}

.south-302f .logo-active-a6b2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.south-302f .logo-active-a6b2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.small_1ce0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.small_1ce0 .media-dirty-cbe1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.small_1ce0 .pro-0ffa {
    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);
}

.small_1ce0 .pro-0ffa p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.small_1ce0 .pro-0ffa p:last-child {
    margin-bottom: 0;
}

.small_1ce0 .pro-0ffa strong {
    color: var(--text-primary);
}

.small_1ce0 .backdrop-ea6e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.small_1ce0 .backdrop-ea6e li {
    margin-bottom: 0.65rem;
}

.small_1ce0 .backdrop-ea6e li:last-child {
    margin-bottom: 0;
}

body.shade_e4d5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.shade_e4d5 .list-bottom-a231 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.shade_e4d5 .pagination_light_34f0 {
    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_e4d5 .pagination_light_34f0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade_e4d5 .pagination_light_34f0 p:last-child {
    margin-bottom: 0;
}

.shade_e4d5 .pagination_light_34f0 strong {
    color: var(--text-primary);
}

.shade_e4d5 .slow-d58e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.shade_e4d5 .slow-d58e li {
    margin-bottom: 0.65rem;
}

.shade_e4d5 .slow-d58e li:last-child {
    margin-bottom: 0;
}

.shade_e4d5 .north-4742 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.shade_e4d5 .north-4742 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.widget_inner_f9c5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.widget_inner_f9c5 .badge-plasma-6949 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.widget_inner_f9c5 .aside-prev-927a {
    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);
}

.widget_inner_f9c5 .aside-prev-927a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget_inner_f9c5 .aside-prev-927a p:last-child {
    margin-bottom: 0;
}

.widget_inner_f9c5 .aside-prev-927a strong {
    color: var(--text-primary);
}

.widget_inner_f9c5 .sidebar_lite_df65 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget_inner_f9c5 .sidebar_lite_df65 li {
    margin-bottom: 0.65rem;
}

.widget_inner_f9c5 .sidebar_lite_df65 li:last-child {
    margin-bottom: 0;
}

.widget_inner_f9c5 .logo_20f9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.widget_inner_f9c5 .logo_20f9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.header-center-8270 {
    background: #f8f9fa;
    color: #2c3e50;
}

.header-center-8270 .warm_a624 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.header-center-8270 .carousel_fixed_c66b {
    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);
}

.header-center-8270 .carousel_fixed_c66b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.header-center-8270 .carousel_fixed_c66b p:last-child {
    margin-bottom: 0;
}

.header-center-8270 .carousel_fixed_c66b strong {
    color: var(--text-primary);
}

.header-center-8270 .static_38dc {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.header-center-8270 .static_38dc li {
    margin-bottom: 0.65rem;
}

.header-center-8270 .static_38dc li:last-child {
    margin-bottom: 0;
}

.header-center-8270 .static_97b7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.header-center-8270 .static_97b7 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.layout-large-451a {
    background: #f8f9fa;
    color: #2c3e50;
}

.layout-large-451a .paragraph-9b6c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.layout-large-451a .footer_83fe {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.layout-large-451a .footer_83fe p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout-large-451a .footer_83fe p:last-child {
    margin-bottom: 0;
}

.layout-large-451a .footer_83fe strong {
    color: var(--text-primary);
}

.layout-large-451a .item_f036 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout-large-451a .item_f036 li {
    margin-bottom: 0.65rem;
}

.layout-large-451a .item_f036 li:last-child {
    margin-bottom: 0;
}

.layout-large-451a .selected_b0e5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.layout-large-451a .selected_b0e5 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: ab6b */
.shadow-element-k5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
