/* 
 * 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.upper-abc6) — fixed together on mobile */
.pattern-af5a {
    width: 100%;
}

.link-bronze-086a {
    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) {
    .pattern-af5a {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .link-bronze-086a {
        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.old_2fd0. Conta) stay reachable.
     */
    .plasma_ebf5 .hero_down_6bd8 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .pattern-af5a .plasma_ebf5 > .hero_down_6bd8 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .pattern-af5a:has(.hero_ccc1.fn-show-7752) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .pattern-af5a:has(.hero_ccc1.fn-show-7752) .link-bronze-086a {
        flex-shrink: 0;
    }

    .pattern-af5a:has(.hero_ccc1.fn-show-7752) .plasma_ebf5 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .pattern-af5a:has(.hero_ccc1.fn-show-7752) .plasma_ebf5 > .hero_down_6bd8 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .pattern-af5a:has(.hero_ccc1.fn-show-7752) .full-6f1c {
        flex-shrink: 0;
    }

    .pattern-af5a:has(.hero_ccc1.fn-show-7752) .hero_ccc1.fn-show-7752 {
        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 */
    .plasma_ebf5 .hero_ccc1 .accent_c151.fn-active-7752 .purple-7246 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .link-bronze-086a {
        position: sticky;
        top: 0;
    }
}

.pattern-af5a.accordion-c372,
.pattern-af5a.accordion-c372 .link-bronze-086a {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.sidebar_e1a2 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .sidebar_e1a2 {
        padding: 0.75rem 0;
    }
}

.south_e85d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.tall_8831 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .tall_8831 img {
        height: 35px;
    }
}

/* .plasma_ebf5 / .primary-short-f69e — inner pages (brown bar); index uses .nav-cold-3875 below */

.plasma_ebf5:not(.nav-cold-3875) .primary-short-f69e.fn-active-7752 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.breadcrumb_d265 {
    display: flex;
    gap: var(--spacing-md);
}

.preview_easy_1754,
.logo_9c00 {
    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) {
    .preview_easy_1754,
    .logo_9c00 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb_d265 {
        gap: 0.5rem;
    }
}

.preview_easy_1754 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.preview_easy_1754:hover {
    background: var(--primary-purple);
    color: white;
}

.logo_9c00 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.logo_9c00:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.nav_2500 {
    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%;
}

.nav_2500::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;
}

.nav_2500::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;
}

.mini_44da {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.table-317b {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.table-317b 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);
}

.nav_2500 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;
}

.hot_604f {
    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;
}

.hot_604f strong {
    font-weight: 700;
}

.breadcrumb_prev_4538 {
    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);
}

.under_d34c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.notice-stone-3a26 {
    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);
}

.notice-stone-3a26:hover {
    transform: translateY(-4px);
}

.module_292a {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.upper-93bb {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.outer_1dc5 {
    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;
}

.outer_1dc5:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.outer_1dc5.panel-a3da {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.shade_c626 {
    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);
}

.shade_c626:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.fast_5e0f {
    padding: 3rem 1.25rem;
    background: white;
}

.message_e1aa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass_0378 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.glass_0378:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.glass_0378 img {
    margin-bottom: 1rem;
}

.red-2cfc {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.glass_0378 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.glass_0378 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 */
.hidden_0273 {
    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);
}

.tabs_east_8b3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.warm_ff91 {
    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);
}

.warm_ff91 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.warm_ff91 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.warm_ff91 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pattern-2c93 {
    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
   ======================================== */

.easy-98f0 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.east-a4a8 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.footer_a150 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.tiny-251e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cool_4c55 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.cool_4c55:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.cool_4c55.image_stone_fcd2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cool_4c55.image_stone_fcd2 h3,
.cool_4c55.image_stone_fcd2 p {
    color: white;
}

.row_eae4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cool_4c55 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cool_4c55 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.highlight-00d4 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.highlight-00d4:hover {
    gap: 0.75rem;
}

.cool_4c55.image_stone_fcd2 .highlight-00d4 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.table-green-0f61 {
    padding: 4rem 1.25rem;
    background: white;
}

.selected-1ee4 {
    text-align: center;
    margin-bottom: 3rem;
}

.surface_d828 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.image_green_033e {
    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%;
}

.image_green_033e:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.complex-8092 {
    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);
}

.border_9100 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.outer-8705 {
    padding: 1.5rem;
}

.outer-8705 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.pagination_46b2 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notice-5754 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tooltip-down-acdd,
.hidden-0600 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.tooltip-down-acdd {
    background: #dcfce7;
    color: #166534;
}

.tooltip-down-acdd.column-copper-c901 {
    background: #10b981;
    color: white;
}

.hidden-0600 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.hidden-0600.logo-ebe6 {
    background: #fee2e2;
    color: #991b1b;
}

.hidden-0600.wrapper_3c38 {
    background: #fef3c7;
    color: #92400e;
}

.hidden-0600.label-current-f7b9 {
    background: #dcfce7;
    color: #166534;
}

.highlight_e35b {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.highlight_e35b strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.accent-dynamic-4415 {
    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);
}

.accent-dynamic-4415:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.input-middle-6b02 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.over-9cd0 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-red-587f {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature-red-587f {
        grid-template-columns: 1fr 1fr;
    }
}

.surface-7be5 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.section_7137 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.progress-north-f1ca {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.picture_cool_709b {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.inner-8de9 {
    font-size: 1rem;
    opacity: 0.9;
}

.section_7137 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hot-322c {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.hot-322c li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.hot-322c 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;
}

.hot-322c li strong {
    color: var(--primary-purple);
}

.hot-322c li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.container-orange-97d3 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.column_42d1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.nav_256f {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.column_42d1 .upper-93bb {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.main-a313 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.fast-38f2 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.fast-38f2 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.under-d8af {
    padding: 4rem 1.25rem;
    background: white;
}

.old-8616 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .old-8616 {
        grid-template-columns: 1fr 1fr;
    }
}

.paragraph-3333 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.video_8429 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.sidebar-d92b {
    margin-bottom: 1.5rem;
}

.article-9797 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.banner-6495 {
    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);
}

.last-5d24 {
    white-space: nowrap;
}

.button_2dee {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.large-9d84 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content_fixed_f0e8 {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.content_fixed_f0e8:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.full-3b6e {
    font-size: 2rem;
    flex-shrink: 0;
}

.top-fdfd h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.top-fdfd p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.banner-dirty-76cc {
    margin-top: 3rem;
}

.banner-dirty-76cc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.bright_2d3f {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bright_2d3f thead {
    background: var(--primary-purple);
    color: white;
}

.bright_2d3f th,
.bright_2d3f td {
    padding: 1rem;
    text-align: left;
}

.bright_2d3f th {
    font-weight: 700;
    font-size: 0.9rem;
}

.bright_2d3f tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.bright_2d3f tbody tr:last-child {
    border-bottom: none;
}

.bright_2d3f tbody tr:hover {
    background: var(--light-bg);
}

.photo_glass_6251 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.banner_wide_7330 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.current_b757 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stale-825d {
    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);
}

.stale-825d:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.stale-825d.border-wood-eb70::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;
}

.modal-current-16a3 {
    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;
}

.accordion-selected-ebb3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.disabled_action_799e h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.left-6295 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.slider_bd9a {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.slider_bd9a p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.slider_bd9a p:last-child {
    margin-bottom: 0;
}

.slider_bd9a strong {
    color: var(--text-primary);
    font-weight: 600;
}

.frame-bf21 {
    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;
}

.copper-7769 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.main-cool-acf4 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.main-cool-acf4 .module_292a {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.main-cool-acf4 .upper-93bb {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.panel-3aa2 {
    padding: 4rem 1.25rem;
    background: white;
}

.container_cde4 {
    max-width: 900px;
    margin: 0 auto;
}

.thumbnail-a635 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.thumbnail-a635:hover {
    border-color: var(--primary-purple);
}

.thumbnail-a635[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.thumbnail-a635 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;
}

.thumbnail-a635 summary::-webkit-details-marker {
    display: none;
}

.thumbnail-a635 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.thumbnail-a635[open] summary::after {
    transform: rotate(45deg);
}

.feature-67a5 {
    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);
    }
}

.feature-67a5 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-67a5 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.feature-67a5 ul,
.feature-67a5 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.feature-67a5 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.feature-67a5 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.banner-green-951e {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.article-full-612d {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-full-612d th,
.article-full-612d td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.article-full-612d th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.yellow-f2bb {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.frame_5d8e {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.wide-fb2d {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .wide-fb2d {
        flex-direction: column;
        text-align: center;
    }
}

.wide-fb2d img {
    flex-shrink: 0;
}

.hero-fcf3 {
    font-size: 4rem;
    flex-shrink: 0;
}

.red_b342 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.red_b342 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.soft-e137 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.primary-dab6 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.black_5a97 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.black_5a97 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cool-7d6a {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.gallery-up-8de9 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.hovered-c07a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dim_5bb2 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dim_5bb2 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.filter-86e6 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rough_b5b1 {
    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);
}

.static-67fe {
    list-style: none;
}

.static-67fe li {
    margin-bottom: 0.75rem;
}

.static-67fe a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.static-67fe a:hover {
    color: white;
}

.notice_b277 {
    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;
}

.soft-41c7 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.soft-41c7 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.black_f87e {
    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);
}

.hero_center_a8f7 {
    text-align: right;
}

@media (max-width: 767px) {
    .hero_center_a8f7 {
        text-align: center;
        width: 100%;
    }
}

.hero_center_a8f7 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.action-9233 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.hero_down_6bd8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.fast_5e0f,
.hidden_0273,
.easy-98f0,
.table-green-0f61,
.over-9cd0,
.under-d8af,
.banner_wide_7330,
.panel-3aa2,
.frame_5d8e,
.primary-dab6 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .east-a4a8 {
        font-size: 1.75rem;
    }
    
    .footer_a150 {
        font-size: 1rem;
    }
    
    .container-orange-97d3 {
        flex-direction: column;
    }
    
    .old-8616 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .surface_d828 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image_green_033e {
        max-width: 100%;
    }
    
    .border_9100 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .hero_down_6bd8 {
        padding: 0 1rem;
    }
    
    .nav_2500 {
        padding: 4rem 1rem 3rem;
    }
    
    .nav_2500 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .outer_1dc5 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .under_d34c {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .bright_2d3f,
    .article-full-612d {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .message_e1aa {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .tiny-251e {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .current_b757 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav_2500 h1 {
        font-size: 1.5rem;
    }
    
    .under_d34c {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .notice-stone-3a26 {
        padding: 0.75rem;
    }
    
    .module_292a {
        font-size: 1.5rem;
    }
    
    .message_e1aa {
        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 */
.image_green_033e:hover,
.cool_4c55:hover,
.stale-825d:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .table-green-0f61,
    .banner_wide_7330,
    .panel-3aa2 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.upper-abc6)
   ======================================== */

.plasma_ebf5.nav-cold-3875 {
    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;
}

.plasma_ebf5.nav-cold-3875 .primary-short-f69e {
    color: #334155;
}

.plasma_ebf5.nav-cold-3875 .primary-short-f69e:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.plasma_ebf5.nav-cold-3875 .primary-short-f69e.fn-active-7752 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.plasma_ebf5.nav-cold-3875 .purple-7246 {
    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);
}

.plasma_ebf5.nav-cold-3875 .purple-7246::before {
    border-bottom-color: #ffffff;
}

.plasma_ebf5.nav-cold-3875 .image-static-8029 {
    color: #475569;
}

.plasma_ebf5.nav-cold-3875 .image-static-8029::before {
    background: #818cf8;
}

.plasma_ebf5.nav-cold-3875 .image-static-8029:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.plasma_ebf5.nav-cold-3875 .image-static-8029:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.plasma_ebf5.nav-cold-3875 .south-ef5f {
    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);
}

.plasma_ebf5.nav-cold-3875 .south-ef5f:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.plasma_ebf5.nav-cold-3875 .south-ef5f span {
    background: #475569;
    box-shadow: none;
}

.plasma_ebf5.nav-cold-3875 .south-ef5f.fn-active-7752 span:nth-child(1),
.plasma_ebf5.nav-cold-3875 .south-ef5f.fn-active-7752 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .plasma_ebf5.nav-cold-3875 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .plasma_ebf5.nav-cold-3875 .full-6f1c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .plasma_ebf5.nav-cold-3875 .full-6f1c span {
        color: #334155 !important;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 {
        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);
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .primary-short-f69e {
        color: #334155;
        text-shadow: none;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .primary-short-f69e:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .primary-short-f69e.input-paper-ad81::after {
        color: #64748b;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .purple-7246 {
        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) */
    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .accent_c151.fn-active-7752 .purple-7246 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .image-static-8029 {
        color: #475569;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .image-static-8029::before {
        color: #6366f1;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .image-static-8029:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .image-static-8029:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .plasma_ebf5.nav-cold-3875 .hero_ccc1 .image-static-8029:hover::before {
        color: #4f46e5;
    }
}

/* apk.primary-next-8335 — mesmo tema claro da home; blocos extras */
body.status-lite-bc9a {
    background: #f8f9fa;
    color: #2c3e50;
}

.status-lite-bc9a .panel-over-410d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.status-lite-bc9a .glass_cbd7 {
    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);
}

.status-lite-bc9a .glass_cbd7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-lite-bc9a .glass_cbd7 p:last-child {
    margin-bottom: 0;
}

.status-lite-bc9a .glass_cbd7 strong {
    color: var(--text-primary);
}

.status-lite-bc9a .sort-purple-3f44 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.status-lite-bc9a .sort-purple-3f44 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.primary_e2b2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.primary_e2b2 .gradient_0375 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.primary_e2b2 .gradient_focused_1150 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.primary_e2b2 .gradient_focused_1150 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.primary_e2b2 .gradient_focused_1150 p:last-child {
    margin-bottom: 0;
}

.primary_e2b2 .gradient_focused_1150 strong {
    color: var(--text-primary);
}

.primary_e2b2 .carousel-47c0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.primary_e2b2 .carousel-47c0 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-c84e {
    background: #f8f9fa;
    color: #2c3e50;
}

.carousel-c84e .header-new-04bf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.carousel-c84e .picture_smooth_06cf {
    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-c84e .picture_smooth_06cf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.carousel-c84e .picture_smooth_06cf p:last-child {
    margin-bottom: 0;
}

.carousel-c84e .picture_smooth_06cf strong {
    color: var(--text-primary);
}

.carousel-c84e .avatar_rough_b49d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.carousel-c84e .avatar_rough_b49d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.heading-abd0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.heading-abd0 .input_outer_05aa {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.heading-abd0 .liquid_975e {
    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);
}

.heading-abd0 .liquid_975e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.heading-abd0 .liquid_975e p:last-child {
    margin-bottom: 0;
}

.heading-abd0 .liquid_975e strong {
    color: var(--text-primary);
}

.heading-abd0 .green-9669 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.heading-abd0 .green-9669 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.status-huge-4d98 {
    background: #f8f9fa;
    color: #2c3e50;
}

.status-huge-4d98 .hovered-1699 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.status-huge-4d98 .outline_center_7447 {
    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);
}

.status-huge-4d98 .outline_center_7447 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-huge-4d98 .outline_center_7447 p:last-child {
    margin-bottom: 0;
}

.status-huge-4d98 .outline_center_7447 strong {
    color: var(--text-primary);
}

.status-huge-4d98 .current_64ac {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.status-huge-4d98 .current_64ac img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.west_fdef {
    background: #f8f9fa;
    color: #2c3e50;
}

.west_fdef .status_26b8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.west_fdef .background-4b5c {
    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);
}

.west_fdef .background-4b5c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.west_fdef .background-4b5c p:last-child {
    margin-bottom: 0;
}

.west_fdef .background-4b5c strong {
    color: var(--text-primary);
}

.west_fdef .up-c72d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.west_fdef .up-c72d img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.west_911d {
    background: #f8f9fa;
    color: #2c3e50;
}

.west_911d .shadow_orange_edd0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.west_911d .pagination_a056 {
    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);
}

.west_911d .pagination_a056 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.west_911d .pagination_a056 p:last-child {
    margin-bottom: 0;
}

.west_911d .pagination_a056 strong {
    color: var(--text-primary);
}

.west_911d .focused_5cbf {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.west_911d .focused_5cbf img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.preview_a093 {
    background: #f8f9fa;
    color: #2c3e50;
}

.preview_a093 .title-8c52 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.preview_a093 .slider-blue-a419 {
    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);
}

.preview_a093 .slider-blue-a419 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.preview_a093 .slider-blue-a419 p:last-child {
    margin-bottom: 0;
}

.preview_a093 .slider-blue-a419 strong {
    color: var(--text-primary);
}

.preview_a093 .hovered-f371 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.preview_a093 .hovered-f371 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.up-7890 {
    background: #f8f9fa;
    color: #2c3e50;
}

.up-7890 .caption-388f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.up-7890 .secondary_0c4f {
    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);
}

.up-7890 .secondary_0c4f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.up-7890 .secondary_0c4f p:last-child {
    margin-bottom: 0;
}

.up-7890 .secondary_0c4f strong {
    color: var(--text-primary);
}

.up-7890 .article_rough_e182 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.up-7890 .article_rough_e182 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tooltip_9a60 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tooltip_9a60 .out_e649 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tooltip_9a60 .liquid_25d4 {
    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);
}

.tooltip_9a60 .liquid_25d4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip_9a60 .liquid_25d4 p:last-child {
    margin-bottom: 0;
}

.tooltip_9a60 .liquid_25d4 strong {
    color: var(--text-primary);
}

.tooltip_9a60 .tertiary_aab5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tooltip_9a60 .tertiary_aab5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.huge_4726 {
    background: #f8f9fa;
    color: #2c3e50;
}

.huge_4726 .mask_9951 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.huge_4726 .element_center_172a {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.huge_4726 .element_center_172a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.huge_4726 .element_center_172a p:last-child {
    margin-bottom: 0;
}

.huge_4726 .element_center_172a strong {
    color: var(--text-primary);
}

.huge_4726 .content-9f83 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.huge_4726 .content-9f83 li {
    margin-bottom: 0.65rem;
}

.huge_4726 .content-9f83 li:last-child {
    margin-bottom: 0;
}

.huge_4726 .frame_pro_e6e2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.huge_4726 .frame_pro_e6e2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hot_1e84 {
    background: #f8f9fa;
    color: #2c3e50;
}

.hot_1e84 .center_e8ff {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hot_1e84 .large_e037 {
    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);
}

.hot_1e84 .large_e037 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hot_1e84 .large_e037 p:last-child {
    margin-bottom: 0;
}

.hot_1e84 .large_e037 strong {
    color: var(--text-primary);
}

.hot_1e84 .up_340b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hot_1e84 .up_340b li {
    margin-bottom: 0.65rem;
}

.hot_1e84 .up_340b li:last-child {
    margin-bottom: 0;
}

.hot_1e84 .mini_33e0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hot_1e84 .mini_33e0 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_a5f0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern_a5f0 .photo-lower-df02 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern_a5f0 .form_5554 {
    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_a5f0 .form_5554 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_a5f0 .form_5554 p:last-child {
    margin-bottom: 0;
}

.pattern_a5f0 .form_5554 strong {
    color: var(--text-primary);
}

.pattern_a5f0 .heading-f273 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_a5f0 .heading-f273 li {
    margin-bottom: 0.65rem;
}

.pattern_a5f0 .heading-f273 li:last-child {
    margin-bottom: 0;
}

.pattern_a5f0 .column_d019 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern_a5f0 .column_d019 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.notice-62eb {
    background: #f8f9fa;
    color: #2c3e50;
}

.notice-62eb .avatar_02fc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notice-62eb .left-adc6 {
    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);
}

.notice-62eb .left-adc6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice-62eb .left-adc6 p:last-child {
    margin-bottom: 0;
}

.notice-62eb .left-adc6 strong {
    color: var(--text-primary);
}

.notice-62eb .glass-f21c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice-62eb .glass-f21c li {
    margin-bottom: 0.65rem;
}

.notice-62eb .glass-f21c li:last-child {
    margin-bottom: 0;
}

body.text_old_05b1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.text_old_05b1 .alert_pro_b1af {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.text_old_05b1 .feature-4430 {
    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);
}

.text_old_05b1 .feature-4430 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_old_05b1 .feature-4430 p:last-child {
    margin-bottom: 0;
}

.text_old_05b1 .feature-4430 strong {
    color: var(--text-primary);
}

.text_old_05b1 .background-87fb {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.text_old_05b1 .background-87fb li {
    margin-bottom: 0.65rem;
}

.text_old_05b1 .background-87fb li:last-child {
    margin-bottom: 0;
}

.text_old_05b1 .panel-huge-b27a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.text_old_05b1 .panel-huge-b27a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gallery_fbb7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.gallery_fbb7 .row-b3ba {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gallery_fbb7 .south-fee8 {
    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);
}

.gallery_fbb7 .south-fee8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery_fbb7 .south-fee8 p:last-child {
    margin-bottom: 0;
}

.gallery_fbb7 .south-fee8 strong {
    color: var(--text-primary);
}

.gallery_fbb7 .button_paper_ebb8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery_fbb7 .button_paper_ebb8 li {
    margin-bottom: 0.65rem;
}

.gallery_fbb7 .button_paper_ebb8 li:last-child {
    margin-bottom: 0;
}

.gallery_fbb7 .texture_21ad {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gallery_fbb7 .texture_21ad img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.under-f6d4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.under-f6d4 .gold_75d7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.under-f6d4 .column-new-62d5 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.under-f6d4 .column-new-62d5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.under-f6d4 .column-new-62d5 p:last-child {
    margin-bottom: 0;
}

.under-f6d4 .column-new-62d5 strong {
    color: var(--text-primary);
}

.under-f6d4 .fast-45ba {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.under-f6d4 .fast-45ba li {
    margin-bottom: 0.65rem;
}

.under-f6d4 .fast-45ba li:last-child {
    margin-bottom: 0;
}

.under-f6d4 .tiny_ff74 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.under-f6d4 .tiny_ff74 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.notice_a522 {
    background: #f8f9fa;
    color: #2c3e50;
}

.notice_a522 .tooltip-f5dc {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notice_a522 .focus_red_df3a {
    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);
}

.notice_a522 .focus_red_df3a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice_a522 .focus_red_df3a p:last-child {
    margin-bottom: 0;
}

.notice_a522 .focus_red_df3a strong {
    color: var(--text-primary);
}

.notice_a522 .accordion-1154 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice_a522 .accordion-1154 li {
    margin-bottom: 0.65rem;
}

.notice_a522 .accordion-1154 li:last-child {
    margin-bottom: 0;
}

.notice_a522 .caption_focused_bc21 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notice_a522 .caption_focused_bc21 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: d891 */
.widget-item-y3 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
