/* 
 * 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.feature_8a14) — fixed together on mobile */
.thumbnail_4934 {
    width: 100%;
}

.status_red_0ce8 {
    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) {
    .thumbnail_4934 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .status_red_0ce8 {
        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.light-a027. Conta) stay reachable.
     */
    .lower_840f .action_96ad {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .thumbnail_4934 .lower_840f > .action_96ad {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .thumbnail_4934:has(.static_44ea.fn-show-2dbd) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .thumbnail_4934:has(.static_44ea.fn-show-2dbd) .status_red_0ce8 {
        flex-shrink: 0;
    }

    .thumbnail_4934:has(.static_44ea.fn-show-2dbd) .lower_840f {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .thumbnail_4934:has(.static_44ea.fn-show-2dbd) .lower_840f > .action_96ad {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .thumbnail_4934:has(.static_44ea.fn-show-2dbd) .element_center_3ada {
        flex-shrink: 0;
    }

    .thumbnail_4934:has(.static_44ea.fn-show-2dbd) .static_44ea.fn-show-2dbd {
        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 */
    .lower_840f .static_44ea .pagination_5ab4.fn-active-2dbd .fixed-43b3 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .status_red_0ce8 {
        position: sticky;
        top: 0;
    }
}

.thumbnail_4934.next_7428,
.thumbnail_4934.next_7428 .status_red_0ce8 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.menu_86b7 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .menu_86b7 {
        padding: 0.75rem 0;
    }
}

.form_d463 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.left-42e5 img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .left-42e5 img {
        height: 35px;
    }
}

/* .lower_840f / .text_d742 — inner pages (brown bar); index uses .glass-7477 below */

.lower_840f:not(.glass-7477) .text_d742.fn-active-2dbd {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.column_top_b5f8 {
    display: flex;
    gap: var(--spacing-md);
}

.video-c3c3,
.search-medium-ed6a {
    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) {
    .video-c3c3,
    .search-medium-ed6a {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .column_top_b5f8 {
        gap: 0.5rem;
    }
}

.video-c3c3 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.video-c3c3:hover {
    background: var(--primary-purple);
    color: white;
}

.search-medium-ed6a {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.search-medium-ed6a:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.mini_2113 {
    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%;
}

.mini_2113::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;
}

.mini_2113::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;
}

.aside_orange_835a {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.alert_white_ac63 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.alert_white_ac63 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);
}

.mini_2113 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;
}

.row-a822 {
    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;
}

.row-a822 strong {
    font-weight: 700;
}

.badge-complex-1352 {
    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);
}

.next-58bc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.stale-7856 {
    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);
}

.stale-7856:hover {
    transform: translateY(-4px);
}

.dynamic_a5f8 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.first_e242 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.info_26da {
    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;
}

.info_26da:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.info_26da.primary_3003 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.gradient-iron-04ae {
    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);
}

.gradient-iron-04ae:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.tabs_lite_5f98 {
    padding: 3rem 1.25rem;
    background: white;
}

.dirty_4044 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-614a {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.footer-614a:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.footer-614a img {
    margin-bottom: 1rem;
}

.focus_current_6650 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-614a h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-614a 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 */
.photo_advanced_1308 {
    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);
}

.shadow-light-96ef {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.photo_cfc0 {
    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);
}

.photo_cfc0 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.photo_cfc0 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.photo_cfc0 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.shadow-steel-b22a {
    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
   ======================================== */

.fluid-ed54 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.surface_ca2e {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section_47c7 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.clean-5cf8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info_cool_93b1 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.info_cool_93b1:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.info_cool_93b1.layout-8704 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.info_cool_93b1.layout-8704 h3,
.info_cool_93b1.layout-8704 p {
    color: white;
}

.nav_b93b {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info_cool_93b1 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.info_cool_93b1 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notification_ffbc {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.notification_ffbc:hover {
    gap: 0.75rem;
}

.info_cool_93b1.layout-8704 .notification_ffbc {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.picture-2e08 {
    padding: 4rem 1.25rem;
    background: white;
}

.under_fa80 {
    text-align: center;
    margin-bottom: 3rem;
}

.image_thick_4aae {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.table_tall_5eef {
    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%;
}

.table_tall_5eef:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.image-slow-998a {
    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);
}

.accent-dbdd {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.detail-soft-2016 {
    padding: 1.5rem;
}

.detail-soft-2016 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.under-e5fb {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.search_faf9 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.iron-ac86,
.picture-d26e {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.iron-ac86 {
    background: #dcfce7;
    color: #166534;
}

.iron-ac86.card_c0b3 {
    background: #10b981;
    color: white;
}

.picture-d26e {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.picture-d26e.button-warm-f64f {
    background: #fee2e2;
    color: #991b1b;
}

.picture-d26e.footer-old-ef3d {
    background: #fef3c7;
    color: #92400e;
}

.picture-d26e.photo_a0ec {
    background: #dcfce7;
    color: #166534;
}

.active-pro-2903 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.active-pro-2903 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.cold-c5c3 {
    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);
}

.cold-c5c3:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.hot_19f6 {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.feature-rough-f4b5 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.aside_5de3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .aside_5de3 {
        grid-template-columns: 1fr 1fr;
    }
}

.mini_38c3 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.gas-6271 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.focus_722c {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.warm-04e5 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pro_cb19 {
    font-size: 1rem;
    opacity: 0.9;
}

.gas-6271 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.frame-ab51 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.frame-ab51 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.frame-ab51 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;
}

.frame-ab51 li strong {
    color: var(--primary-purple);
}

.frame-ab51 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.text-2129 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.popup-selected-40c6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.pagination-smooth-506c {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.popup-selected-40c6 .first_e242 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.lite_05e7 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.outline_5187 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.outline_5187 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.fresh_c676 {
    padding: 4rem 1.25rem;
    background: white;
}

.red-e8aa {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .red-e8aa {
        grid-template-columns: 1fr 1fr;
    }
}

.in_4481 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.wrapper-bottom-2319 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.disabled_glass_eb58 {
    margin-bottom: 1.5rem;
}

.header-outer-abed {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.notice_b380 {
    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);
}

.search_hard_1041 {
    white-space: nowrap;
}

.pagination-852b {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.gallery_b457 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-32eb {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.title-32eb:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.table-black-dcba {
    font-size: 2rem;
    flex-shrink: 0;
}

.tertiary_3c36 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tertiary_3c36 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.medium_f640 {
    margin-top: 3rem;
}

.medium_f640 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.sidebar-ee27 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sidebar-ee27 thead {
    background: var(--primary-purple);
    color: white;
}

.sidebar-ee27 th,
.sidebar-ee27 td {
    padding: 1rem;
    text-align: left;
}

.sidebar-ee27 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.sidebar-ee27 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.sidebar-ee27 tbody tr:last-child {
    border-bottom: none;
}

.sidebar-ee27 tbody tr:hover {
    background: var(--light-bg);
}

.clean_6616 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.disabled_west_b750 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.module-faba {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.title_silver_cf8f {
    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);
}

.title_silver_cf8f:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.title_silver_cf8f.panel-up-9475::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;
}

.menu-wood-077a {
    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;
}

.mask-red-246a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.progress_0cac h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.steel_38ae {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.button-7a1e {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.button-7a1e p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.button-7a1e p:last-child {
    margin-bottom: 0;
}

.button-7a1e strong {
    color: var(--text-primary);
    font-weight: 600;
}

.fluid_fedf {
    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;
}

.hero-green-8cce {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.small-172f {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.small-172f .dynamic_a5f8 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.small-172f .first_e242 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.gallery_3a0d {
    padding: 4rem 1.25rem;
    background: white;
}

.liquid-8270 {
    max-width: 900px;
    margin: 0 auto;
}

.tooltip_north_2814 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.tooltip_north_2814:hover {
    border-color: var(--primary-purple);
}

.tooltip_north_2814[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.tooltip_north_2814 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;
}

.tooltip_north_2814 summary::-webkit-details-marker {
    display: none;
}

.tooltip_north_2814 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.tooltip_north_2814[open] summary::after {
    transform: rotate(45deg);
}

.frame_06ad {
    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);
    }
}

.frame_06ad p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.frame_06ad h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.frame_06ad ul,
.frame_06ad ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.frame_06ad li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.frame_06ad strong {
    color: var(--text-primary);
    font-weight: 600;
}

.photo_tiny_0c39 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.caption_164b {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.caption_164b th,
.caption_164b td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.caption_164b th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.module_8cf4 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.copper_e88a {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.paragraph-d355 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .paragraph-d355 {
        flex-direction: column;
        text-align: center;
    }
}

.paragraph-d355 img {
    flex-shrink: 0;
}

.inner_cf95 {
    font-size: 4rem;
    flex-shrink: 0;
}

.pattern-0295 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pattern-0295 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.heading-7b38 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.tall-3105 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.notification-solid-569a h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.notification-solid-569a > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.shadow_dirty_9990 {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.small_6e77 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.hover_iron_6505 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.badge-advanced-85cd h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-advanced-85cd p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.fresh_43e1 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.large_7d6d {
    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);
}

.tooltip_783e {
    list-style: none;
}

.tooltip_783e li {
    margin-bottom: 0.75rem;
}

.tooltip_783e a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.tooltip_783e a:hover {
    color: white;
}

.filter-tiny-c80b {
    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;
}

.iron_c259 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.iron_c259 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.prev_bbb0 {
    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);
}

.row-465e {
    text-align: right;
}

@media (max-width: 767px) {
    .row-465e {
        text-align: center;
        width: 100%;
    }
}

.row-465e p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.gallery-0635 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.action_96ad {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.tabs_lite_5f98,
.photo_advanced_1308,
.fluid-ed54,
.picture-2e08,
.feature-rough-f4b5,
.fresh_c676,
.disabled_west_b750,
.gallery_3a0d,
.copper_e88a,
.tall-3105 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .surface_ca2e {
        font-size: 1.75rem;
    }
    
    .section_47c7 {
        font-size: 1rem;
    }
    
    .text-2129 {
        flex-direction: column;
    }
    
    .red-e8aa {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .image_thick_4aae {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .table_tall_5eef {
        max-width: 100%;
    }
    
    .accent-dbdd {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .action_96ad {
        padding: 0 1rem;
    }
    
    .mini_2113 {
        padding: 4rem 1rem 3rem;
    }
    
    .mini_2113 h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .info_26da {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .next-58bc {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .sidebar-ee27,
    .caption_164b {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .dirty_4044 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .clean-5cf8 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .module-faba {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .mini_2113 h1 {
        font-size: 1.5rem;
    }
    
    .next-58bc {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .stale-7856 {
        padding: 0.75rem;
    }
    
    .dynamic_a5f8 {
        font-size: 1.5rem;
    }
    
    .dirty_4044 {
        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 */
.table_tall_5eef:hover,
.info_cool_93b1:hover,
.title_silver_cf8f:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .picture-2e08,
    .disabled_west_b750,
    .gallery_3a0d {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.feature_8a14)
   ======================================== */

.lower_840f.glass-7477 {
    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;
}

.lower_840f.glass-7477 .text_d742 {
    color: #334155;
}

.lower_840f.glass-7477 .text_d742:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.lower_840f.glass-7477 .text_d742.fn-active-2dbd {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.lower_840f.glass-7477 .fixed-43b3 {
    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);
}

.lower_840f.glass-7477 .fixed-43b3::before {
    border-bottom-color: #ffffff;
}

.lower_840f.glass-7477 .thumbnail-over-de66 {
    color: #475569;
}

.lower_840f.glass-7477 .thumbnail-over-de66::before {
    background: #818cf8;
}

.lower_840f.glass-7477 .thumbnail-over-de66:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.lower_840f.glass-7477 .thumbnail-over-de66:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.lower_840f.glass-7477 .label_fb59 {
    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);
}

.lower_840f.glass-7477 .label_fb59:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.lower_840f.glass-7477 .label_fb59 span {
    background: #475569;
    box-shadow: none;
}

.lower_840f.glass-7477 .label_fb59.fn-active-2dbd span:nth-child(1),
.lower_840f.glass-7477 .label_fb59.fn-active-2dbd span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .lower_840f.glass-7477 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .lower_840f.glass-7477 .element_center_3ada {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .lower_840f.glass-7477 .element_center_3ada span {
        color: #334155 !important;
    }

    .lower_840f.glass-7477 .static_44ea {
        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);
    }

    .lower_840f.glass-7477 .static_44ea .text_d742 {
        color: #334155;
        text-shadow: none;
    }

    .lower_840f.glass-7477 .static_44ea .text_d742:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .lower_840f.glass-7477 .static_44ea .text_d742.component_81b7::after {
        color: #64748b;
    }

    .lower_840f.glass-7477 .static_44ea .fixed-43b3 {
        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) */
    .lower_840f.glass-7477 .static_44ea .pagination_5ab4.fn-active-2dbd .fixed-43b3 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .lower_840f.glass-7477 .static_44ea .thumbnail-over-de66 {
        color: #475569;
    }

    .lower_840f.glass-7477 .static_44ea .thumbnail-over-de66::before {
        color: #6366f1;
    }

    .lower_840f.glass-7477 .static_44ea .thumbnail-over-de66:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .lower_840f.glass-7477 .static_44ea .thumbnail-over-de66:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .lower_840f.glass-7477 .static_44ea .thumbnail-over-de66:hover::before {
        color: #4f46e5;
    }
}

/* apk.detail_hovered_548e — mesmo tema claro da home; blocos extras */
body.bronze-dc50 {
    background: #f8f9fa;
    color: #2c3e50;
}

.bronze-dc50 .row_c1cf {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bronze-dc50 .motion-274b {
    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);
}

.bronze-dc50 .motion-274b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bronze-dc50 .motion-274b p:last-child {
    margin-bottom: 0;
}

.bronze-dc50 .motion-274b strong {
    color: var(--text-primary);
}

.bronze-dc50 .smooth_9d6a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bronze-dc50 .smooth_9d6a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.stale-88aa {
    background: #f8f9fa;
    color: #2c3e50;
}

.stale-88aa .gold-1464 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.stale-88aa .progress-easy-bde8 {
    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);
}

.stale-88aa .progress-easy-bde8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.stale-88aa .progress-easy-bde8 p:last-child {
    margin-bottom: 0;
}

.stale-88aa .progress-easy-bde8 strong {
    color: var(--text-primary);
}

.stale-88aa .inner-0383 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.stale-88aa .inner-0383 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.widget_bec0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.widget_bec0 .focused_211b {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.widget_bec0 .footer_6e7b {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.widget_bec0 .footer_6e7b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget_bec0 .footer_6e7b p:last-child {
    margin-bottom: 0;
}

.widget_bec0 .footer_6e7b strong {
    color: var(--text-primary);
}

.widget_bec0 .north-3559 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.widget_bec0 .north-3559 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.overlay_upper_9732 {
    background: #f8f9fa;
    color: #2c3e50;
}

.overlay_upper_9732 .dynamic_d90c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.overlay_upper_9732 .detail_8cb7 {
    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);
}

.overlay_upper_9732 .detail_8cb7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.overlay_upper_9732 .detail_8cb7 p:last-child {
    margin-bottom: 0;
}

.overlay_upper_9732 .detail_8cb7 strong {
    color: var(--text-primary);
}

.overlay_upper_9732 .dropdown-de2b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.overlay_upper_9732 .dropdown-de2b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.mask-0bde {
    background: #f8f9fa;
    color: #2c3e50;
}

.mask-0bde .dynamic_f7a3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.mask-0bde .shadow_new_d21d {
    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);
}

.mask-0bde .shadow_new_d21d p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.mask-0bde .shadow_new_d21d p:last-child {
    margin-bottom: 0;
}

.mask-0bde .shadow_new_d21d strong {
    color: var(--text-primary);
}

.mask-0bde .button-879b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.mask-0bde .button-879b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.white_ad8b {
    background: #f8f9fa;
    color: #2c3e50;
}

.white_ad8b .fluid-8e33 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.white_ad8b .border-steel-d270 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.white_ad8b .border-steel-d270 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.white_ad8b .border-steel-d270 p:last-child {
    margin-bottom: 0;
}

.white_ad8b .border-steel-d270 strong {
    color: var(--text-primary);
}

.white_ad8b .aside_easy_16b6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.white_ad8b .aside_easy_16b6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.breadcrumb_huge_950a {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb_huge_950a .backdrop-dark-eda0 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb_huge_950a .tall_ef9b {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.breadcrumb_huge_950a .tall_ef9b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_huge_950a .tall_ef9b p:last-child {
    margin-bottom: 0;
}

.breadcrumb_huge_950a .tall_ef9b strong {
    color: var(--text-primary);
}

.breadcrumb_huge_950a .secondary_fc60 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.breadcrumb_huge_950a .secondary_fc60 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_4ae6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.content_4ae6 .stale_6e3c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.content_4ae6 .widget_static_7332 {
    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_4ae6 .widget_static_7332 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.content_4ae6 .widget_static_7332 p:last-child {
    margin-bottom: 0;
}

.content_4ae6 .widget_static_7332 strong {
    color: var(--text-primary);
}

.content_4ae6 .sort_dirty_5987 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.content_4ae6 .sort_dirty_5987 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.module_746a {
    background: #f8f9fa;
    color: #2c3e50;
}

.module_746a .button-571e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.module_746a .accent-9969 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.module_746a .accent-9969 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.module_746a .accent-9969 p:last-child {
    margin-bottom: 0;
}

.module_746a .accent-9969 strong {
    color: var(--text-primary);
}

.module_746a .short-c878 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.module_746a .short-c878 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-complex-491d {
    background: #f8f9fa;
    color: #2c3e50;
}

.layout-complex-491d .selected-8ade {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.layout-complex-491d .photo_7597 {
    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-complex-491d .photo_7597 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.layout-complex-491d .photo_7597 p:last-child {
    margin-bottom: 0;
}

.layout-complex-491d .photo_7597 strong {
    color: var(--text-primary);
}

.layout-complex-491d .mini_8b34 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.layout-complex-491d .mini_8b34 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.main_last_9b9a {
    background: #f8f9fa;
    color: #2c3e50;
}

.main_last_9b9a .active-static-64b3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.main_last_9b9a .status-mini-ca9c {
    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);
}

.main_last_9b9a .status-mini-ca9c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main_last_9b9a .status-mini-ca9c p:last-child {
    margin-bottom: 0;
}

.main_last_9b9a .status-mini-ca9c strong {
    color: var(--text-primary);
}

.main_last_9b9a .frame-over-ea88 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.main_last_9b9a .frame-over-ea88 li {
    margin-bottom: 0.65rem;
}

.main_last_9b9a .frame-over-ea88 li:last-child {
    margin-bottom: 0;
}

.main_last_9b9a .advanced-968c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.main_last_9b9a .advanced-968c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.cold-4c23 {
    background: #f8f9fa;
    color: #2c3e50;
}

.cold-4c23 .info-down-60c3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.cold-4c23 .message-7b2a {
    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);
}

.cold-4c23 .message-7b2a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.cold-4c23 .message-7b2a p:last-child {
    margin-bottom: 0;
}

.cold-4c23 .message-7b2a strong {
    color: var(--text-primary);
}

.cold-4c23 .hero-40b3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.cold-4c23 .hero-40b3 li {
    margin-bottom: 0.65rem;
}

.cold-4c23 .hero-40b3 li:last-child {
    margin-bottom: 0;
}

.cold-4c23 .link_selected_7587 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.cold-4c23 .link_selected_7587 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-lite-c08d {
    background: #f8f9fa;
    color: #2c3e50;
}

.aside-lite-c08d .notification_warm_c1c1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.aside-lite-c08d .brown_c05b {
    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-lite-c08d .brown_c05b p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-lite-c08d .brown_c05b p:last-child {
    margin-bottom: 0;
}

.aside-lite-c08d .brown_c05b strong {
    color: var(--text-primary);
}

.aside-lite-c08d .accordion_4269 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.aside-lite-c08d .accordion_4269 li {
    margin-bottom: 0.65rem;
}

.aside-lite-c08d .accordion_4269 li:last-child {
    margin-bottom: 0;
}

.aside-lite-c08d .dynamic_55c9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.aside-lite-c08d .dynamic_55c9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.link-9a02 {
    background: #f8f9fa;
    color: #2c3e50;
}

.link-9a02 .top_a36e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.link-9a02 .west_eced {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.link-9a02 .west_eced p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-9a02 .west_eced p:last-child {
    margin-bottom: 0;
}

.link-9a02 .west_eced strong {
    color: var(--text-primary);
}

.link-9a02 .advanced-e0b3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-9a02 .advanced-e0b3 li {
    margin-bottom: 0.65rem;
}

.link-9a02 .advanced-e0b3 li:last-child {
    margin-bottom: 0;
}

body.top_f2c7 {
    background: #f8f9fa;
    color: #2c3e50;
}

.top_f2c7 .caption_brown_72ac {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.top_f2c7 .slider_last_5d0c {
    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);
}

.top_f2c7 .slider_last_5d0c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.top_f2c7 .slider_last_5d0c p:last-child {
    margin-bottom: 0;
}

.top_f2c7 .slider_last_5d0c strong {
    color: var(--text-primary);
}

.top_f2c7 .focused-1af3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.top_f2c7 .focused-1af3 li {
    margin-bottom: 0.65rem;
}

.top_f2c7 .focused-1af3 li:last-child {
    margin-bottom: 0;
}

.top_f2c7 .black_6905 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.top_f2c7 .black_6905 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-hard-c0d8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.footer-hard-c0d8 .outline_last_850d {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.footer-hard-c0d8 .active_172e {
    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-hard-c0d8 .active_172e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-hard-c0d8 .active_172e p:last-child {
    margin-bottom: 0;
}

.footer-hard-c0d8 .active_172e strong {
    color: var(--text-primary);
}

.footer-hard-c0d8 .alert_f4d8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer-hard-c0d8 .alert_f4d8 li {
    margin-bottom: 0.65rem;
}

.footer-hard-c0d8 .alert_f4d8 li:last-child {
    margin-bottom: 0;
}

.footer-hard-c0d8 .media_north_6853 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.footer-hard-c0d8 .media_north_6853 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.link-gas-7f27 {
    background: #f8f9fa;
    color: #2c3e50;
}

.link-gas-7f27 .logo-9a9e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.link-gas-7f27 .photo_middle_f838 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.link-gas-7f27 .photo_middle_f838 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-gas-7f27 .photo_middle_f838 p:last-child {
    margin-bottom: 0;
}

.link-gas-7f27 .photo_middle_f838 strong {
    color: var(--text-primary);
}

.link-gas-7f27 .frame-basic-41fe {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.link-gas-7f27 .frame-basic-41fe li {
    margin-bottom: 0.65rem;
}

.link-gas-7f27 .frame-basic-41fe li:last-child {
    margin-bottom: 0;
}

.link-gas-7f27 .list-full-ca1c {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.link-gas-7f27 .list-full-ca1c img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.gradient_d6bb {
    background: #f8f9fa;
    color: #2c3e50;
}

.gradient_d6bb .large_9496 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.gradient_d6bb .module_76e0 {
    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);
}

.gradient_d6bb .module_76e0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient_d6bb .module_76e0 p:last-child {
    margin-bottom: 0;
}

.gradient_d6bb .module_76e0 strong {
    color: var(--text-primary);
}

.gradient_d6bb .gradient_solid_f52d {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gradient_d6bb .gradient_solid_f52d li {
    margin-bottom: 0.65rem;
}

.gradient_d6bb .gradient_solid_f52d li:last-child {
    margin-bottom: 0;
}

.gradient_d6bb .column-solid-909d {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.gradient_d6bb .column-solid-909d 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: 67e6 */
.phantom-card-w5 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
