/* 
 * 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.iron-4370) — fixed together on mobile */
.tooltip-middle-8a99 {
    width: 100%;
}

.gold-cf7e {
    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) {
    .tooltip-middle-8a99 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .gold-cf7e {
        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.list_dd5a. Conta) stay reachable.
     */
    .full_9505 .filter_1af7 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .tooltip-middle-8a99 .full_9505 > .filter_1af7 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .tooltip-middle-8a99:has(.hover-6727.fn-show-fd26) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .tooltip-middle-8a99:has(.hover-6727.fn-show-fd26) .gold-cf7e {
        flex-shrink: 0;
    }

    .tooltip-middle-8a99:has(.hover-6727.fn-show-fd26) .full_9505 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .tooltip-middle-8a99:has(.hover-6727.fn-show-fd26) .full_9505 > .filter_1af7 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .tooltip-middle-8a99:has(.hover-6727.fn-show-fd26) .short-85b2 {
        flex-shrink: 0;
    }

    .tooltip-middle-8a99:has(.hover-6727.fn-show-fd26) .hover-6727.fn-show-fd26 {
        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 */
    .full_9505 .hover-6727 .footer_aab5.fn-active-fd26 .blue-76aa {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .gold-cf7e {
        position: sticky;
        top: 0;
    }
}

.tooltip-middle-8a99.notice_fresh_2f16,
.tooltip-middle-8a99.notice_fresh_2f16 .gold-cf7e {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.sort_953f {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .sort_953f {
        padding: 0.75rem 0;
    }
}

.selected_3e04 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.article-0f4c img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .article-0f4c img {
        height: 35px;
    }
}

/* .full_9505 / .south-0bbb — inner pages (brown bar); index uses .table_3dfb below */

.full_9505:not(.table_3dfb) .south-0bbb.fn-active-fd26 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.secondary_5c17 {
    display: flex;
    gap: var(--spacing-md);
}

.nav_07e7,
.hero-current-961f {
    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) {
    .nav_07e7,
    .hero-current-961f {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .secondary_5c17 {
        gap: 0.5rem;
    }
}

.nav_07e7 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.nav_07e7:hover {
    background: var(--primary-purple);
    color: white;
}

.hero-current-961f {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.hero-current-961f:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.south-19ec {
    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%;
}

.south-19ec::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;
}

.south-19ec::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;
}

.frame-8536 {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.footer_dynamic_31a2 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.footer_dynamic_31a2 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);
}

.south-19ec 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;
}

.menu_copper_c991 {
    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;
}

.menu_copper_c991 strong {
    font-weight: 700;
}

.fast_18da {
    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);
}

.liquid-ab14 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.dark_be33 {
    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);
}

.dark_be33:hover {
    transform: translateY(-4px);
}

.wide-2539 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.background-35a1 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.frame-be93 {
    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;
}

.frame-be93:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.frame-be93.background_3e97 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.smooth-8637 {
    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);
}

.smooth-8637:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.tooltip_pressed_e423 {
    padding: 3rem 1.25rem;
    background: white;
}

.image-clean-fdbc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pressed_8328 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.pressed_8328:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pressed_8328 img {
    margin-bottom: 1rem;
}

.overlay_pro_b470 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pressed_8328 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pressed_8328 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 */
.carousel-white-56d3 {
    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_copper_82a8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video_c1eb {
    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);
}

.video_c1eb h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.video_c1eb p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.video_c1eb a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.focused-71d8 {
    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
   ======================================== */

.old-dfe2 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.popup-upper-7154 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.item-yellow-9604 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-liquid-881d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wrapper_solid_8331 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.wrapper_solid_8331:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.wrapper_solid_8331.alert_8495 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.wrapper_solid_8331.alert_8495 h3,
.wrapper_solid_8331.alert_8495 p {
    color: white;
}

.hover-hovered-822c {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wrapper_solid_8331 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.wrapper_solid_8331 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.image-down-e940 {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.image-down-e940:hover {
    gap: 0.75rem;
}

.wrapper_solid_8331.alert_8495 .image-down-e940 {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.tall-1bb1 {
    padding: 4rem 1.25rem;
    background: white;
}

.glass_de43 {
    text-align: center;
    margin-bottom: 3rem;
}

.soft_2af2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.plasma-5ca3 {
    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%;
}

.plasma-5ca3:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.orange_469b {
    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);
}

.gas_14d8 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.slow_ca3e {
    padding: 1.5rem;
}

.slow_ca3e h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.filter-liquid-2183 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.up-6800 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tabs_steel_76b1,
.dark_9e31 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.tabs_steel_76b1 {
    background: #dcfce7;
    color: #166534;
}

.tabs_steel_76b1.old_2b81 {
    background: #10b981;
    color: white;
}

.dark_9e31 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.dark_9e31.gradient_fixed_c09d {
    background: #fee2e2;
    color: #991b1b;
}

.dark_9e31.slider_huge_16c9 {
    background: #fef3c7;
    color: #92400e;
}

.dark_9e31.slider_2575 {
    background: #dcfce7;
    color: #166534;
}

.gradient-easy-2ae0 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.gradient-easy-2ae0 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.gradient_08d2 {
    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);
}

.gradient_08d2:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.lower-29d4 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.out-0a79 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.black-b97d {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .black-b97d {
        grid-template-columns: 1fr 1fr;
    }
}

.primary-24d2 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.aside_0ea7 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.label-blue-a698 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.background-hot-ee84 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.button_bronze_eac7 {
    font-size: 1rem;
    opacity: 0.9;
}

.aside_0ea7 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hover-yellow-eeae {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.hover-yellow-eeae li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.hover-yellow-eeae 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;
}

.hover-yellow-eeae li strong {
    color: var(--primary-purple);
}

.hover-yellow-eeae li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.light_91a4 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.lite-ee7d {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.basic-440f {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.lite-ee7d .background-35a1 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.popup-b7de p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.plasma-8004 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.plasma-8004 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.tiny-5d66 {
    padding: 4rem 1.25rem;
    background: white;
}

.pattern_3016 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pattern_3016 {
        grid-template-columns: 1fr 1fr;
    }
}

.old_6695 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-red-3b3b {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.detail-pink-1057 {
    margin-bottom: 1.5rem;
}

.active_left_427e {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.complex-3fd0 {
    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);
}

.over-abff {
    white-space: nowrap;
}

.text_pink_971b {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.short-bc76 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.red_576e {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.red_576e:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.filter-fixed-4fd8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification_5ec9 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.notification_5ec9 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.button_lower_9b3b {
    margin-top: 3rem;
}

.button_lower_9b3b h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.large_13ca {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.large_13ca thead {
    background: var(--primary-purple);
    color: white;
}

.large_13ca th,
.large_13ca td {
    padding: 1rem;
    text-align: left;
}

.large_13ca th {
    font-weight: 700;
    font-size: 0.9rem;
}

.large_13ca tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.large_13ca tbody tr:last-child {
    border-bottom: none;
}

.large_13ca tbody tr:hover {
    background: var(--light-bg);
}

.fast-32bf {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.wood_8489 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.feature_silver_6015 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mask-small-9326 {
    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);
}

.mask-small-9326:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.mask-small-9326.fresh-47eb::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;
}

.cool-7cfb {
    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;
}

.bottom-786c {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.carousel-330d h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.message-easy-6ca4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.overlay_next_c257 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.overlay_next_c257 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.overlay_next_c257 p:last-child {
    margin-bottom: 0;
}

.overlay_next_c257 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.inner_ba3f {
    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;
}

.new-8397 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.hovered-13f3 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.hovered-13f3 .wide-2539 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.hovered-13f3 .background-35a1 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.up_2bc3 {
    padding: 4rem 1.25rem;
    background: white;
}

.modal-wood-10fd {
    max-width: 900px;
    margin: 0 auto;
}

.shadow-ad7a {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.shadow-ad7a:hover {
    border-color: var(--primary-purple);
}

.shadow-ad7a[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.shadow-ad7a 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;
}

.shadow-ad7a summary::-webkit-details-marker {
    display: none;
}

.shadow-ad7a summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.shadow-ad7a[open] summary::after {
    transform: rotate(45deg);
}

.section_158d {
    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);
    }
}

.section_158d p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.section_158d h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.section_158d ul,
.section_158d ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section_158d li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.section_158d strong {
    color: var(--text-primary);
    font-weight: 600;
}

.medium-0983 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.photo-7929 {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.photo-7929 th,
.photo-7929 td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.photo-7929 th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.tertiary-gold-a041 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.mask-a7e2 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.pagination-selected-92cf {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .pagination-selected-92cf {
        flex-direction: column;
        text-align: center;
    }
}

.pagination-selected-92cf img {
    flex-shrink: 0;
}

.alert-c049 {
    font-size: 4rem;
    flex-shrink: 0;
}

.lite_7a81 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.lite_7a81 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tabs-29ae {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.header_bronze_a855 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.logo_blue_5911 h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.logo_blue_5911 > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.dropdown-4c9f {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.active_0100 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.title-solid-a6c3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.slider-first-0eb3 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slider-first-0eb3 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.input-a700 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.heading_hovered_67a9 {
    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);
}

.light-41a8 {
    list-style: none;
}

.light-41a8 li {
    margin-bottom: 0.75rem;
}

.light-41a8 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.light-41a8 a:hover {
    color: white;
}

.link-dirty-b9f1 {
    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;
}

.cool-c64a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cool-c64a span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.border-e40f {
    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);
}

.highlight-dbae {
    text-align: right;
}

@media (max-width: 767px) {
    .highlight-dbae {
        text-align: center;
        width: 100%;
    }
}

.highlight-dbae p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.easy-a694 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.filter_1af7 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.tooltip_pressed_e423,
.carousel-white-56d3,
.old-dfe2,
.tall-1bb1,
.out-0a79,
.tiny-5d66,
.wood_8489,
.up_2bc3,
.mask-a7e2,
.header_bronze_a855 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .popup-upper-7154 {
        font-size: 1.75rem;
    }
    
    .item-yellow-9604 {
        font-size: 1rem;
    }
    
    .light_91a4 {
        flex-direction: column;
    }
    
    .pattern_3016 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .soft_2af2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plasma-5ca3 {
        max-width: 100%;
    }
    
    .gas_14d8 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .filter_1af7 {
        padding: 0 1rem;
    }
    
    .south-19ec {
        padding: 4rem 1rem 3rem;
    }
    
    .south-19ec h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .frame-be93 {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .liquid-ab14 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .large_13ca,
    .photo-7929 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .image-clean-fdbc {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .info-liquid-881d {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .feature_silver_6015 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .south-19ec h1 {
        font-size: 1.5rem;
    }
    
    .liquid-ab14 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .dark_be33 {
        padding: 0.75rem;
    }
    
    .wide-2539 {
        font-size: 1.5rem;
    }
    
    .image-clean-fdbc {
        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 */
.plasma-5ca3:hover,
.wrapper_solid_8331:hover,
.mask-small-9326:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .tall-1bb1,
    .wood_8489,
    .up_2bc3 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.iron-4370)
   ======================================== */

.full_9505.table_3dfb {
    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;
}

.full_9505.table_3dfb .south-0bbb {
    color: #334155;
}

.full_9505.table_3dfb .south-0bbb:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.full_9505.table_3dfb .south-0bbb.fn-active-fd26 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.full_9505.table_3dfb .blue-76aa {
    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);
}

.full_9505.table_3dfb .blue-76aa::before {
    border-bottom-color: #ffffff;
}

.full_9505.table_3dfb .banner-west-cc3a {
    color: #475569;
}

.full_9505.table_3dfb .banner-west-cc3a::before {
    background: #818cf8;
}

.full_9505.table_3dfb .banner-west-cc3a:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.full_9505.table_3dfb .banner-west-cc3a:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.full_9505.table_3dfb .highlight-85be {
    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);
}

.full_9505.table_3dfb .highlight-85be:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.full_9505.table_3dfb .highlight-85be span {
    background: #475569;
    box-shadow: none;
}

.full_9505.table_3dfb .highlight-85be.fn-active-fd26 span:nth-child(1),
.full_9505.table_3dfb .highlight-85be.fn-active-fd26 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .full_9505.table_3dfb {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .full_9505.table_3dfb .short-85b2 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .full_9505.table_3dfb .short-85b2 span {
        color: #334155 !important;
    }

    .full_9505.table_3dfb .hover-6727 {
        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);
    }

    .full_9505.table_3dfb .hover-6727 .south-0bbb {
        color: #334155;
        text-shadow: none;
    }

    .full_9505.table_3dfb .hover-6727 .south-0bbb:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .full_9505.table_3dfb .hover-6727 .south-0bbb.solid-8eee::after {
        color: #64748b;
    }

    .full_9505.table_3dfb .hover-6727 .blue-76aa {
        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) */
    .full_9505.table_3dfb .hover-6727 .footer_aab5.fn-active-fd26 .blue-76aa {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .full_9505.table_3dfb .hover-6727 .banner-west-cc3a {
        color: #475569;
    }

    .full_9505.table_3dfb .hover-6727 .banner-west-cc3a::before {
        color: #6366f1;
    }

    .full_9505.table_3dfb .hover-6727 .banner-west-cc3a:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .full_9505.table_3dfb .hover-6727 .banner-west-cc3a:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .full_9505.table_3dfb .hover-6727 .banner-west-cc3a:hover::before {
        color: #4f46e5;
    }
}

/* apk.frame-hot-83cc — mesmo tema claro da home; blocos extras */
body.description_5f76 {
    background: #f8f9fa;
    color: #2c3e50;
}

.description_5f76 .iron-bdbf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description_5f76 .badge-bronze-6c83 {
    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_5f76 .badge-bronze-6c83 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description_5f76 .badge-bronze-6c83 p:last-child {
    margin-bottom: 0;
}

.description_5f76 .badge-bronze-6c83 strong {
    color: var(--text-primary);
}

.description_5f76 .main-2ab7 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.description_5f76 .main-2ab7 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-rough-de00 {
    background: #f8f9fa;
    color: #2c3e50;
}

.status-rough-de00 .panel-large-b216 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.status-rough-de00 .iron-9e08 {
    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-rough-de00 .iron-9e08 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-rough-de00 .iron-9e08 p:last-child {
    margin-bottom: 0;
}

.status-rough-de00 .iron-9e08 strong {
    color: var(--text-primary);
}

.status-rough-de00 .right-152b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.status-rough-de00 .right-152b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.highlight-4971 {
    background: #f8f9fa;
    color: #2c3e50;
}

.highlight-4971 .rough_18b2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.highlight-4971 .short_b2b5 {
    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);
}

.highlight-4971 .short_b2b5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.highlight-4971 .short_b2b5 p:last-child {
    margin-bottom: 0;
}

.highlight-4971 .short_b2b5 strong {
    color: var(--text-primary);
}

.highlight-4971 .center-fb41 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.highlight-4971 .center-fb41 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.border_bottom_1786 {
    background: #f8f9fa;
    color: #2c3e50;
}

.border_bottom_1786 .main-d49b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.border_bottom_1786 .aside-green-7116 {
    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);
}

.border_bottom_1786 .aside-green-7116 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.border_bottom_1786 .aside-green-7116 p:last-child {
    margin-bottom: 0;
}

.border_bottom_1786 .aside-green-7116 strong {
    color: var(--text-primary);
}

.border_bottom_1786 .caption_gas_8f61 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.border_bottom_1786 .caption_gas_8f61 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.media_left_b3ae {
    background: #f8f9fa;
    color: #2c3e50;
}

.media_left_b3ae .blue-518c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.media_left_b3ae .modal-2941 {
    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);
}

.media_left_b3ae .modal-2941 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.media_left_b3ae .modal-2941 p:last-child {
    margin-bottom: 0;
}

.media_left_b3ae .modal-2941 strong {
    color: var(--text-primary);
}

.media_left_b3ae .search-df54 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.media_left_b3ae .search-df54 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.notification_steel_6604 {
    background: #f8f9fa;
    color: #2c3e50;
}

.notification_steel_6604 .article-small-67b3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notification_steel_6604 .upper_4e88 {
    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);
}

.notification_steel_6604 .upper_4e88 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notification_steel_6604 .upper_4e88 p:last-child {
    margin-bottom: 0;
}

.notification_steel_6604 .upper_4e88 strong {
    color: var(--text-primary);
}

.notification_steel_6604 .simple-7000 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notification_steel_6604 .simple-7000 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent_advanced_2441 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent_advanced_2441 .form_brown_133c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent_advanced_2441 .fast_64b1 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.accent_advanced_2441 .fast_64b1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_advanced_2441 .fast_64b1 p:last-child {
    margin-bottom: 0;
}

.accent_advanced_2441 .fast_64b1 strong {
    color: var(--text-primary);
}

.accent_advanced_2441 .old_3e5a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent_advanced_2441 .old_3e5a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.list-light-ceed {
    background: #f8f9fa;
    color: #2c3e50;
}

.list-light-ceed .aside_selected_9de2 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list-light-ceed .heading_e46b {
    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);
}

.list-light-ceed .heading_e46b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list-light-ceed .heading_e46b p:last-child {
    margin-bottom: 0;
}

.list-light-ceed .heading_e46b strong {
    color: var(--text-primary);
}

.list-light-ceed .card_dec0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list-light-ceed .card_dec0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.copper-c345 {
    background: #f8f9fa;
    color: #2c3e50;
}

.copper-c345 .slow_e4ce {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.copper-c345 .paper-5c4f {
    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);
}

.copper-c345 .paper-5c4f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.copper-c345 .paper-5c4f p:last-child {
    margin-bottom: 0;
}

.copper-c345 .paper-5c4f strong {
    color: var(--text-primary);
}

.copper-c345 .easy_dbff {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.copper-c345 .easy_dbff img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hero-dynamic-2fce {
    background: #f8f9fa;
    color: #2c3e50;
}

.hero-dynamic-2fce .next_172b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hero-dynamic-2fce .lite-2f05 {
    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);
}

.hero-dynamic-2fce .lite-2f05 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hero-dynamic-2fce .lite-2f05 p:last-child {
    margin-bottom: 0;
}

.hero-dynamic-2fce .lite-2f05 strong {
    color: var(--text-primary);
}

.hero-dynamic-2fce .feature_1f51 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hero-dynamic-2fce .feature_1f51 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.action_b198 {
    background: #f8f9fa;
    color: #2c3e50;
}

.action_b198 .header_f308 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.action_b198 .highlight_warm_cc21 {
    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);
}

.action_b198 .highlight_warm_cc21 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.action_b198 .highlight_warm_cc21 p:last-child {
    margin-bottom: 0;
}

.action_b198 .highlight_warm_cc21 strong {
    color: var(--text-primary);
}

.action_b198 .texture-medium-ac34 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.action_b198 .texture-medium-ac34 li {
    margin-bottom: 0.65rem;
}

.action_b198 .texture-medium-ac34 li:last-child {
    margin-bottom: 0;
}

.action_b198 .article_liquid_a965 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.action_b198 .article_liquid_a965 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-slow-92fd {
    background: #f8f9fa;
    color: #2c3e50;
}

.active-slow-92fd .item-ca41 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active-slow-92fd .focused_0b21 {
    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-slow-92fd .focused_0b21 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-slow-92fd .focused_0b21 p:last-child {
    margin-bottom: 0;
}

.active-slow-92fd .focused_0b21 strong {
    color: var(--text-primary);
}

.active-slow-92fd .item-e3ec {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-slow-92fd .item-e3ec li {
    margin-bottom: 0.65rem;
}

.active-slow-92fd .item-e3ec li:last-child {
    margin-bottom: 0;
}

.active-slow-92fd .carousel_fluid_27cd {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active-slow-92fd .carousel_fluid_27cd img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.footer-light-6dc1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer-light-6dc1 .middle-4fba {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer-light-6dc1 .tiny_f0cf {
    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);
}

.footer-light-6dc1 .tiny_f0cf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-light-6dc1 .tiny_f0cf p:last-child {
    margin-bottom: 0;
}

.footer-light-6dc1 .tiny_f0cf strong {
    color: var(--text-primary);
}

.footer-light-6dc1 .stale_5712 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-light-6dc1 .stale_5712 li {
    margin-bottom: 0.65rem;
}

.footer-light-6dc1 .stale_5712 li:last-child {
    margin-bottom: 0;
}

.footer-light-6dc1 .title_f478 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer-light-6dc1 .title_f478 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.feature-7c45 {
    background: #f8f9fa;
    color: #2c3e50;
}

.feature-7c45 .info-pro-1014 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.feature-7c45 .item_tall_eacd {
    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);
}

.feature-7c45 .item_tall_eacd p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-7c45 .item_tall_eacd p:last-child {
    margin-bottom: 0;
}

.feature-7c45 .item_tall_eacd strong {
    color: var(--text-primary);
}

.feature-7c45 .fixed-8f8c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-7c45 .fixed-8f8c li {
    margin-bottom: 0.65rem;
}

.feature-7c45 .fixed-8f8c li:last-child {
    margin-bottom: 0;
}

body.slider_00f5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.slider_00f5 .title-733f {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.slider_00f5 .lite_9852 {
    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);
}

.slider_00f5 .lite_9852 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slider_00f5 .lite_9852 p:last-child {
    margin-bottom: 0;
}

.slider_00f5 .lite_9852 strong {
    color: var(--text-primary);
}

.slider_00f5 .panel_bed6 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.slider_00f5 .panel_bed6 li {
    margin-bottom: 0.65rem;
}

.slider_00f5 .panel_bed6 li:last-child {
    margin-bottom: 0;
}

.slider_00f5 .highlight_2f6c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.slider_00f5 .highlight_2f6c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.accent_85e8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.accent_85e8 .list_upper_308d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.accent_85e8 .first-7ee8 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.accent_85e8 .first-7ee8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_85e8 .first-7ee8 p:last-child {
    margin-bottom: 0;
}

.accent_85e8 .first-7ee8 strong {
    color: var(--text-primary);
}

.accent_85e8 .overlay-green-b663 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.accent_85e8 .overlay-green-b663 li {
    margin-bottom: 0.65rem;
}

.accent_85e8 .overlay-green-b663 li:last-child {
    margin-bottom: 0;
}

.accent_85e8 .footer-brown-7b87 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.accent_85e8 .footer-brown-7b87 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.list_f8ec {
    background: #f8f9fa;
    color: #2c3e50;
}

.list_f8ec .slow_246a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list_f8ec .content-41e6 {
    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);
}

.list_f8ec .content-41e6 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list_f8ec .content-41e6 p:last-child {
    margin-bottom: 0;
}

.list_f8ec .content-41e6 strong {
    color: var(--text-primary);
}

.list_f8ec .plasma-9651 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list_f8ec .plasma-9651 li {
    margin-bottom: 0.65rem;
}

.list_f8ec .plasma-9651 li:last-child {
    margin-bottom: 0;
}

.list_f8ec .wrapper_d4fa {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list_f8ec .wrapper_d4fa img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.hidden_ea1d {
    background: #f8f9fa;
    color: #2c3e50;
}

.hidden_ea1d .accordion_under_c5c3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.hidden_ea1d .hidden-west-34a5 {
    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);
}

.hidden_ea1d .hidden-west-34a5 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden_ea1d .hidden-west-34a5 p:last-child {
    margin-bottom: 0;
}

.hidden_ea1d .hidden-west-34a5 strong {
    color: var(--text-primary);
}

.hidden_ea1d .wrapper-848d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.hidden_ea1d .wrapper-848d li {
    margin-bottom: 0.65rem;
}

.hidden_ea1d .wrapper-848d li:last-child {
    margin-bottom: 0;
}

.hidden_ea1d .last-2b17 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.hidden_ea1d .last-2b17 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: 8dad */
.phantom-card-r4 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
