/* 
 * 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.mask-white-69b2) — fixed together on mobile */
.down-5dc3 {
    width: 100%;
}

.copper_89bd {
    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) {
    .down-5dc3 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .copper_89bd {
        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.layout-hot-7154. Conta) stay reachable.
     */
    .description_b906 .dropdown-huge-e0e0 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .down-5dc3 .description_b906 > .dropdown-huge-e0e0 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .down-5dc3:has(.sort-1de0.fn-show-3080) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .down-5dc3:has(.sort-1de0.fn-show-3080) .copper_89bd {
        flex-shrink: 0;
    }

    .down-5dc3:has(.sort-1de0.fn-show-3080) .description_b906 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .down-5dc3:has(.sort-1de0.fn-show-3080) .description_b906 > .dropdown-huge-e0e0 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .down-5dc3:has(.sort-1de0.fn-show-3080) .active_2a70 {
        flex-shrink: 0;
    }

    .down-5dc3:has(.sort-1de0.fn-show-3080) .sort-1de0.fn-show-3080 {
        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 */
    .description_b906 .sort-1de0 .next_9be0.fn-active-3080 .panel-4e95 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .copper_89bd {
        position: sticky;
        top: 0;
    }
}

.down-5dc3.nav_5e87,
.down-5dc3.nav_5e87 .copper_89bd {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.component_5eb7 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .component_5eb7 {
        padding: 0.75rem 0;
    }
}

.nav_b662 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.aside_5ef3 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .aside_5ef3 img {
        height: 35px;
    }
}

/* .description_b906 / .south_0313 — inner pages (brown bar); index uses .short_3c26 below */

.description_b906:not(.short_3c26) .south_0313.fn-active-3080 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.panel_yellow_e1ec {
    display: flex;
    gap: var(--spacing-md);
}

.paragraph_ea4d,
.paragraph_first_44a3 {
    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) {
    .paragraph_ea4d,
    .paragraph_first_44a3 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .panel_yellow_e1ec {
        gap: 0.5rem;
    }
}

.paragraph_ea4d {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.paragraph_ea4d:hover {
    background: var(--primary-purple);
    color: white;
}

.paragraph_first_44a3 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.paragraph_first_44a3:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.clean_50f2 {
    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%;
}

.clean_50f2::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;
}

.clean_50f2::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;
}

.fixed-7920 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.over-c3b7 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.over-c3b7 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);
}

.clean_50f2 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;
}

.shade-medium-a0a1 {
    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;
}

.shade-medium-a0a1 strong {
    font-weight: 700;
}

.element-north-cad6 {
    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);
}

.title-4113 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.footer-17cf {
    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);
}

.footer-17cf:hover {
    transform: translateY(-4px);
}

.center_f55e {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.wrapper_8e0a {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.image-east-350c {
    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;
}

.image-east-350c:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.image-east-350c.background-d3b0 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.status-motion-56a1 {
    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);
}

.status-motion-56a1:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.medium_8d1d {
    padding: 3rem 1.25rem;
    background: white;
}

.photo_pressed_1170 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar_b4b6 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.sidebar_b4b6:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sidebar_b4b6 img {
    margin-bottom: 1rem;
}

.cold-d961 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.sidebar_b4b6 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sidebar_b4b6 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 */
.sort_62d4 {
    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);
}

.message-west-5d7b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.border-92a3 {
    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);
}

.border-92a3 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.border-92a3 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.border-92a3 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.progress-last-99be {
    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
   ======================================== */

.last_5d9b {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.description-tiny-a48a {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.smooth_9136 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.full_5669 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.light-a3ce {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.light-a3ce:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.light-a3ce.header-short-0668 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.light-a3ce.header-short-0668 h3,
.light-a3ce.header-short-0668 p {
    color: white;
}

.popup_clean_785d {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.light-a3ce h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.light-a3ce p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content_dynamic_318b {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.content_dynamic_318b:hover {
    gap: 0.75rem;
}

.light-a3ce.header-short-0668 .content_dynamic_318b {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.info-paper-1870 {
    padding: 4rem 1.25rem;
    background: white;
}

.detail-middle-9442 {
    text-align: center;
    margin-bottom: 3rem;
}

.overlay-prev-9340 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.overlay-tall-3aff {
    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%;
}

.overlay-tall-3aff:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.pro_c9d6 {
    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);
}

.wood-13e3 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.shadow_light_f3e7 {
    padding: 1.5rem;
}

.shadow_light_f3e7 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tooltip_1050 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pattern-c57a {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.element-1c49,
.nav-tiny-cfa6 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.element-1c49 {
    background: #dcfce7;
    color: #166534;
}

.element-1c49.card_next_1e1d {
    background: #10b981;
    color: white;
}

.nav-tiny-cfa6 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.nav-tiny-cfa6.media_1909 {
    background: #fee2e2;
    color: #991b1b;
}

.nav-tiny-cfa6.background_smooth_eaaa {
    background: #fef3c7;
    color: #92400e;
}

.nav-tiny-cfa6.slider_8e41 {
    background: #dcfce7;
    color: #166534;
}

.notice-3007 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notice-3007 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.selected_ca12 {
    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);
}

.selected_ca12:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.shade-2cb4 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.under-9c1d {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.purple_c436 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .purple_c436 {
        grid-template-columns: 1fr 1fr;
    }
}

.table_f98d img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.over-c510 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.border-2a4f {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.first_3124 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.notification-dirty-4064 {
    font-size: 1rem;
    opacity: 0.9;
}

.over-c510 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.wide_0ecf {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.wide_0ecf li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.wide_0ecf 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;
}

.wide_0ecf li strong {
    color: var(--primary-purple);
}

.wide_0ecf li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wide_e3df {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.media_rough_4081 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.notice-a5c7 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.media_rough_4081 .wrapper_8e0a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.photo_9709 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.wide_1ae8 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.wide_1ae8 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.module_upper_1cb4 {
    padding: 4rem 1.25rem;
    background: white;
}

.dropdown_pro_6c6c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dropdown_pro_6c6c {
        grid-template-columns: 1fr 1fr;
    }
}

.selected-06cf h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.shadow-f108 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.outer-85b4 {
    margin-bottom: 1.5rem;
}

.box_68f4 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.paper_adab {
    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);
}

.content_clean_2a12 {
    white-space: nowrap;
}

.footer-hot-fde1 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.slow_277a h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pattern-mini-7f5c {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.pattern-mini-7f5c:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.module_active_284b {
    font-size: 2rem;
    flex-shrink: 0;
}

.green_635e h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.green_635e p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.mask-narrow-b8d1 {
    margin-top: 3rem;
}

.mask-narrow-b8d1 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.old-3677 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.old-3677 thead {
    background: var(--primary-purple);
    color: white;
}

.old-3677 th,
.old-3677 td {
    padding: 1rem;
    text-align: left;
}

.old-3677 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.old-3677 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.old-3677 tbody tr:last-child {
    border-bottom: none;
}

.old-3677 tbody tr:hover {
    background: var(--light-bg);
}

.widget_abc2 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.accordion_b0e3 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.out-c151 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-1bad {
    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);
}

.section-1bad:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.section-1bad.focused_b5f7::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;
}

.popup_hard_c77c {
    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;
}

.description-copper-7f70 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.form-dark-195b h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.accordion-3f2d {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.red-ed28 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.red-ed28 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.red-ed28 p:last-child {
    margin-bottom: 0;
}

.red-ed28 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.steel-ecb8 {
    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;
}

.static-4251 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.message-bb51 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.message-bb51 .center_f55e {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.message-bb51 .wrapper_8e0a {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.table-clean-2e38 {
    padding: 4rem 1.25rem;
    background: white;
}

.avatar_8c2a {
    max-width: 900px;
    margin: 0 auto;
}

.easy-4a8b {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.easy-4a8b:hover {
    border-color: var(--primary-purple);
}

.easy-4a8b[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.easy-4a8b 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;
}

.easy-4a8b summary::-webkit-details-marker {
    display: none;
}

.easy-4a8b summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.easy-4a8b[open] summary::after {
    transform: rotate(45deg);
}

.focused_26e5 {
    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);
    }
}

.focused_26e5 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.focused_26e5 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.focused_26e5 ul,
.focused_26e5 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.focused_26e5 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.focused_26e5 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.last_63d8 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.card-068f {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.card-068f th,
.card-068f td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.card-068f th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.container-22b3 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.out_b3be {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.input-2b38 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .input-2b38 {
        flex-direction: column;
        text-align: center;
    }
}

.input-2b38 img {
    flex-shrink: 0;
}

.column_6beb {
    font-size: 4rem;
    flex-shrink: 0;
}

.dropdown_6c36 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.dropdown_6c36 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.plasma-a4cc {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.next-63fa {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.paragraph-dim-1eab h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.paragraph-dim-1eab > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.steel-9cb1 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.list-7cbf {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.last_30b3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid_hot_10fe h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.grid_hot_10fe p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.modal_wide_8c90 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.aside-static-158d {
    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);
}

.link_medium_ce8c {
    list-style: none;
}

.link_medium_ce8c li {
    margin-bottom: 0.75rem;
}

.link_medium_ce8c a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.link_medium_ce8c a:hover {
    color: white;
}

.highlight-inner-a5ce {
    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;
}

.mini-0a2e {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mini-0a2e span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.middle-3716 {
    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);
}

.module-focused-7b06 {
    text-align: right;
}

@media (max-width: 767px) {
    .module-focused-7b06 {
        text-align: center;
        width: 100%;
    }
}

.module-focused-7b06 p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.out_2b5d {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.dropdown-huge-e0e0 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.medium_8d1d,
.sort_62d4,
.last_5d9b,
.info-paper-1870,
.under-9c1d,
.module_upper_1cb4,
.accordion_b0e3,
.table-clean-2e38,
.out_b3be,
.next-63fa {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .description-tiny-a48a {
        font-size: 1.75rem;
    }
    
    .smooth_9136 {
        font-size: 1rem;
    }
    
    .wide_e3df {
        flex-direction: column;
    }
    
    .dropdown_pro_6c6c {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .overlay-prev-9340 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overlay-tall-3aff {
        max-width: 100%;
    }
    
    .wood-13e3 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .dropdown-huge-e0e0 {
        padding: 0 1rem;
    }
    
    .clean_50f2 {
        padding: 4rem 1rem 3rem;
    }
    
    .clean_50f2 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .image-east-350c {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .title-4113 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .old-3677,
    .card-068f {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .photo_pressed_1170 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .full_5669 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .out-c151 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .clean_50f2 h1 {
        font-size: 1.5rem;
    }
    
    .title-4113 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .footer-17cf {
        padding: 0.75rem;
    }
    
    .center_f55e {
        font-size: 1.5rem;
    }
    
    .photo_pressed_1170 {
        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 */
.overlay-tall-3aff:hover,
.light-a3ce:hover,
.section-1bad:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .info-paper-1870,
    .accordion_b0e3,
    .table-clean-2e38 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.mask-white-69b2)
   ======================================== */

.description_b906.short_3c26 {
    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;
}

.description_b906.short_3c26 .south_0313 {
    color: #334155;
}

.description_b906.short_3c26 .south_0313:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.description_b906.short_3c26 .south_0313.fn-active-3080 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.description_b906.short_3c26 .panel-4e95 {
    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);
}

.description_b906.short_3c26 .panel-4e95::before {
    border-bottom-color: #ffffff;
}

.description_b906.short_3c26 .input-cold-9288 {
    color: #475569;
}

.description_b906.short_3c26 .input-cold-9288::before {
    background: #818cf8;
}

.description_b906.short_3c26 .input-cold-9288:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.description_b906.short_3c26 .input-cold-9288:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.description_b906.short_3c26 .layout_smooth_2284 {
    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);
}

.description_b906.short_3c26 .layout_smooth_2284:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.description_b906.short_3c26 .layout_smooth_2284 span {
    background: #475569;
    box-shadow: none;
}

.description_b906.short_3c26 .layout_smooth_2284.fn-active-3080 span:nth-child(1),
.description_b906.short_3c26 .layout_smooth_2284.fn-active-3080 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .description_b906.short_3c26 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .description_b906.short_3c26 .active_2a70 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .description_b906.short_3c26 .active_2a70 span {
        color: #334155 !important;
    }

    .description_b906.short_3c26 .sort-1de0 {
        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);
    }

    .description_b906.short_3c26 .sort-1de0 .south_0313 {
        color: #334155;
        text-shadow: none;
    }

    .description_b906.short_3c26 .sort-1de0 .south_0313:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .description_b906.short_3c26 .sort-1de0 .south_0313.full_8503::after {
        color: #64748b;
    }

    .description_b906.short_3c26 .sort-1de0 .panel-4e95 {
        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) */
    .description_b906.short_3c26 .sort-1de0 .next_9be0.fn-active-3080 .panel-4e95 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .description_b906.short_3c26 .sort-1de0 .input-cold-9288 {
        color: #475569;
    }

    .description_b906.short_3c26 .sort-1de0 .input-cold-9288::before {
        color: #6366f1;
    }

    .description_b906.short_3c26 .sort-1de0 .input-cold-9288:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .description_b906.short_3c26 .sort-1de0 .input-cold-9288:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .description_b906.short_3c26 .sort-1de0 .input-cold-9288:hover::before {
        color: #4f46e5;
    }
}

/* apk.widget-6ff6 — mesmo tema claro da home; blocos extras */
body.button-17ba {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-17ba .video-ad1f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-17ba .container_pressed_5df4 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.button-17ba .container_pressed_5df4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-17ba .container_pressed_5df4 p:last-child {
    margin-bottom: 0;
}

.button-17ba .container_pressed_5df4 strong {
    color: var(--text-primary);
}

.button-17ba .component_upper_16e4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-17ba .component_upper_16e4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.label-a0d8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.label-a0d8 .yellow_fc2d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.label-a0d8 .aside-b6b6 {
    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);
}

.label-a0d8 .aside-b6b6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.label-a0d8 .aside-b6b6 p:last-child {
    margin-bottom: 0;
}

.label-a0d8 .aside-b6b6 strong {
    color: var(--text-primary);
}

.label-a0d8 .tiny-b727 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.label-a0d8 .tiny-b727 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.title-solid-ff8a {
    background: #f8f9fa;
    color: #2c3e50;
}

.title-solid-ff8a .secondary-854a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.title-solid-ff8a .outline-thick-5c64 {
    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);
}

.title-solid-ff8a .outline-thick-5c64 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.title-solid-ff8a .outline-thick-5c64 p:last-child {
    margin-bottom: 0;
}

.title-solid-ff8a .outline-thick-5c64 strong {
    color: var(--text-primary);
}

.title-solid-ff8a .huge-8763 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.title-solid-ff8a .huge-8763 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.button-fluid-ef4a {
    background: #f8f9fa;
    color: #2c3e50;
}

.button-fluid-ef4a .tag-right-138d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.button-fluid-ef4a .caption-c798 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.button-fluid-ef4a .caption-c798 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.button-fluid-ef4a .caption-c798 p:last-child {
    margin-bottom: 0;
}

.button-fluid-ef4a .caption-c798 strong {
    color: var(--text-primary);
}

.button-fluid-ef4a .disabled-f568 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.button-fluid-ef4a .disabled-f568 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.blue-c29e {
    background: #f8f9fa;
    color: #2c3e50;
}

.blue-c29e .column-f4ba {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.blue-c29e .filter-under-eb12 {
    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);
}

.blue-c29e .filter-under-eb12 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.blue-c29e .filter-under-eb12 p:last-child {
    margin-bottom: 0;
}

.blue-c29e .filter-under-eb12 strong {
    color: var(--text-primary);
}

.blue-c29e .pressed-da0b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.blue-c29e .pressed-da0b 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_glass_f0cd {
    background: #f8f9fa;
    color: #2c3e50;
}

.pattern_glass_f0cd .out_7055 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.pattern_glass_f0cd .image-green-66c6 {
    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_glass_f0cd .image-green-66c6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pattern_glass_f0cd .image-green-66c6 p:last-child {
    margin-bottom: 0;
}

.pattern_glass_f0cd .image-green-66c6 strong {
    color: var(--text-primary);
}

.pattern_glass_f0cd .aside_liquid_e546 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.pattern_glass_f0cd .aside_liquid_e546 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.soft-c2e3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.soft-c2e3 .description_ec5b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.soft-c2e3 .header_fluid_b89d {
    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);
}

.soft-c2e3 .header_fluid_b89d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.soft-c2e3 .header_fluid_b89d p:last-child {
    margin-bottom: 0;
}

.soft-c2e3 .header_fluid_b89d strong {
    color: var(--text-primary);
}

.soft-c2e3 .border_fast_b477 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.soft-c2e3 .border_fast_b477 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.aside_7fc5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside_7fc5 .badge_ad1d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside_7fc5 .center_248f {
    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);
}

.aside_7fc5 .center_248f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside_7fc5 .center_248f p:last-child {
    margin-bottom: 0;
}

.aside_7fc5 .center_248f strong {
    color: var(--text-primary);
}

.aside_7fc5 .menu-5610 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.aside_7fc5 .menu-5610 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_2761 {
    background: #f8f9fa;
    color: #2c3e50;
}

.layout_2761 .pagination_015a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.layout_2761 .down_a0cb {
    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_2761 .down_a0cb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout_2761 .down_a0cb p:last-child {
    margin-bottom: 0;
}

.layout_2761 .down_a0cb strong {
    color: var(--text-primary);
}

.layout_2761 .next-a4d3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.layout_2761 .next-a4d3 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_warm_3ec1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.notice_warm_3ec1 .widget_5d32 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notice_warm_3ec1 .border_d3fb {
    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_warm_3ec1 .border_d3fb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notice_warm_3ec1 .border_d3fb p:last-child {
    margin-bottom: 0;
}

.notice_warm_3ec1 .border_d3fb strong {
    color: var(--text-primary);
}

.notice_warm_3ec1 .grid_fcad {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notice_warm_3ec1 .grid_fcad img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.middle_c5e0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.middle_c5e0 .column_pink_eda8 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.middle_c5e0 .under-6beb {
    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);
}

.middle_c5e0 .under-6beb p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle_c5e0 .under-6beb p:last-child {
    margin-bottom: 0;
}

.middle_c5e0 .under-6beb strong {
    color: var(--text-primary);
}

.middle_c5e0 .basic-42ba {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.middle_c5e0 .basic-42ba li {
    margin-bottom: 0.65rem;
}

.middle_c5e0 .basic-42ba li:last-child {
    margin-bottom: 0;
}

.middle_c5e0 .white-941e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.middle_c5e0 .white-941e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.progress_liquid_7ed7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.progress_liquid_7ed7 .shade_23c4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.progress_liquid_7ed7 .dynamic-b76a {
    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);
}

.progress_liquid_7ed7 .dynamic-b76a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.progress_liquid_7ed7 .dynamic-b76a p:last-child {
    margin-bottom: 0;
}

.progress_liquid_7ed7 .dynamic-b76a strong {
    color: var(--text-primary);
}

.progress_liquid_7ed7 .sidebar-lite-a5b4 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.progress_liquid_7ed7 .sidebar-lite-a5b4 li {
    margin-bottom: 0.65rem;
}

.progress_liquid_7ed7 .sidebar-lite-a5b4 li:last-child {
    margin-bottom: 0;
}

.progress_liquid_7ed7 .menu-east-7811 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.progress_liquid_7ed7 .menu-east-7811 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.content_white_f967 {
    background: #f8f9fa;
    color: #2c3e50;
}

.content_white_f967 .static_2acb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content_white_f967 .old_c345 {
    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);
}

.content_white_f967 .old_c345 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content_white_f967 .old_c345 p:last-child {
    margin-bottom: 0;
}

.content_white_f967 .old_c345 strong {
    color: var(--text-primary);
}

.content_white_f967 .surface-hard-5ee7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content_white_f967 .surface-hard-5ee7 li {
    margin-bottom: 0.65rem;
}

.content_white_f967 .surface-hard-5ee7 li:last-child {
    margin-bottom: 0;
}

.content_white_f967 .alert_bc95 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content_white_f967 .alert_bc95 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.active-stale-3dbe {
    background: #f8f9fa;
    color: #2c3e50;
}

.active-stale-3dbe .small-9fe1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active-stale-3dbe .carousel_upper_84dc {
    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);
}

.active-stale-3dbe .carousel_upper_84dc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-stale-3dbe .carousel_upper_84dc p:last-child {
    margin-bottom: 0;
}

.active-stale-3dbe .carousel_upper_84dc strong {
    color: var(--text-primary);
}

.active-stale-3dbe .dark_57da {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-stale-3dbe .dark_57da li {
    margin-bottom: 0.65rem;
}

.active-stale-3dbe .dark_57da li:last-child {
    margin-bottom: 0;
}

body.tooltip_ffe1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tooltip_ffe1 .background_8ff6 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tooltip_ffe1 .mask_5832 {
    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_ffe1 .mask_5832 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip_ffe1 .mask_5832 p:last-child {
    margin-bottom: 0;
}

.tooltip_ffe1 .mask_5832 strong {
    color: var(--text-primary);
}

.tooltip_ffe1 .grid_blue_aae9 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tooltip_ffe1 .grid_blue_aae9 li {
    margin-bottom: 0.65rem;
}

.tooltip_ffe1 .grid_blue_aae9 li:last-child {
    margin-bottom: 0;
}

.tooltip_ffe1 .south_fe5b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tooltip_ffe1 .south_fe5b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.description_629d {
    background: #f8f9fa;
    color: #2c3e50;
}

.description_629d .lite-10e1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description_629d .preview_huge_1357 {
    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);
}

.description_629d .preview_huge_1357 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description_629d .preview_huge_1357 p:last-child {
    margin-bottom: 0;
}

.description_629d .preview_huge_1357 strong {
    color: var(--text-primary);
}

.description_629d .column_876f {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description_629d .column_876f li {
    margin-bottom: 0.65rem;
}

.description_629d .column_876f li:last-child {
    margin-bottom: 0;
}

.description_629d .main-a3a1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.description_629d .main-a3a1 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wood_e94f {
    background: #f8f9fa;
    color: #2c3e50;
}

.wood_e94f .active-6294 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wood_e94f .form-cold-a358 {
    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);
}

.wood_e94f .form-cold-a358 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wood_e94f .form-cold-a358 p:last-child {
    margin-bottom: 0;
}

.wood_e94f .form-cold-a358 strong {
    color: var(--text-primary);
}

.wood_e94f .row_e65c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wood_e94f .row_e65c li {
    margin-bottom: 0.65rem;
}

.wood_e94f .row_e65c li:last-child {
    margin-bottom: 0;
}

.wood_e94f .tooltip_2a2b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wood_e94f .tooltip_2a2b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.frame-938e {
    background: #f8f9fa;
    color: #2c3e50;
}

.frame-938e .carousel_8f5f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.frame-938e .disabled_lite_5a10 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.frame-938e .disabled_lite_5a10 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame-938e .disabled_lite_5a10 p:last-child {
    margin-bottom: 0;
}

.frame-938e .disabled_lite_5a10 strong {
    color: var(--text-primary);
}

.frame-938e .container-4b38 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame-938e .container-4b38 li {
    margin-bottom: 0.65rem;
}

.frame-938e .container-4b38 li:last-child {
    margin-bottom: 0;
}

.frame-938e .upper-3fe1 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.frame-938e .upper-3fe1 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: 1472 */
.phantom-card-b5 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
