/* 
 * 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.sidebar_left_5844) — fixed together on mobile */
.media_16d6 {
    width: 100%;
}

.tabs_ada1 {
    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) {
    .media_16d6 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .tabs_ada1 {
        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.east-c02d. Conta) stay reachable.
     */
    .tiny_2dc7 .menu-70af {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .media_16d6 .tiny_2dc7 > .menu-70af {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .media_16d6:has(.info-0a86.fn-show-0af7) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .media_16d6:has(.info-0a86.fn-show-0af7) .tabs_ada1 {
        flex-shrink: 0;
    }

    .media_16d6:has(.info-0a86.fn-show-0af7) .tiny_2dc7 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .media_16d6:has(.info-0a86.fn-show-0af7) .tiny_2dc7 > .menu-70af {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .media_16d6:has(.info-0a86.fn-show-0af7) .gallery_pro_881c {
        flex-shrink: 0;
    }

    .media_16d6:has(.info-0a86.fn-show-0af7) .info-0a86.fn-show-0af7 {
        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 */
    .tiny_2dc7 .info-0a86 .message-last-a9b1.fn-active-0af7 .box_60ff {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .tabs_ada1 {
        position: sticky;
        top: 0;
    }
}

.media_16d6.widget-c0fe,
.media_16d6.widget-c0fe .tabs_ada1 {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.wide-4b84 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .wide-4b84 {
        padding: 0.75rem 0;
    }
}

.bright_2e28 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.center_c6af img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .center_c6af img {
        height: 35px;
    }
}

/* .tiny_2dc7 / .outer-bf39 — inner pages (brown bar); index uses .mask-00ee below */

.tiny_2dc7:not(.mask-00ee) .outer-bf39.fn-active-0af7 {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.summary-top-b97c {
    display: flex;
    gap: var(--spacing-md);
}

.description-bb77,
.media_7140 {
    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) {
    .description-bb77,
    .media_7140 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .summary-top-b97c {
        gap: 0.5rem;
    }
}

.description-bb77 {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.description-bb77:hover {
    background: var(--primary-purple);
    color: white;
}

.media_7140 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.media_7140:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.white-7ccc {
    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%;
}

.white-7ccc::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;
}

.white-7ccc::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;
}

.south_08de {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.sidebar_db38 {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.sidebar_db38 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);
}

.white-7ccc 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;
}

.layout-pro-f5a3 {
    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;
}

.layout-pro-f5a3 strong {
    font-weight: 700;
}

.module-9d8b {
    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);
}

.aside-iron-6116 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.sidebar-full-4d05 {
    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);
}

.sidebar-full-4d05:hover {
    transform: translateY(-4px);
}

.slow-dc4d {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.thick_ecc9 {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.footer-dd2f {
    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;
}

.footer-dd2f:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.footer-dd2f.preview-hot-8282 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.summary-out-6d79 {
    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);
}

.summary-out-6d79:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.liquid_9bd8 {
    padding: 3rem 1.25rem;
    background: white;
}

.sort-149b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.column-blue-d6a8 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.column-blue-d6a8:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.column-blue-d6a8 img {
    margin-bottom: 1rem;
}

.label-d15c {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.column-blue-d6a8 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.column-blue-d6a8 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 */
.text_2b50 {
    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);
}

.widget-a33e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.input-wide-9e42 {
    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);
}

.input-wide-9e42 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.input-wide-9e42 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.input-wide-9e42 a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.disabled_d461 {
    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
   ======================================== */

.disabled_last_6cb7 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.slow-9c07 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.slider-270b {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.wide-8313 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.upper_1752 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.upper_1752:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.upper_1752.hero-3555 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.upper_1752.hero-3555 h3,
.upper_1752.hero-3555 p {
    color: white;
}

.link-easy-bcba {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upper_1752 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.upper_1752 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.media_af7c {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.media_af7c:hover {
    gap: 0.75rem;
}

.upper_1752.hero-3555 .media_af7c {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.box-tiny-9063 {
    padding: 4rem 1.25rem;
    background: white;
}

.hero_wide_c2ee {
    text-align: center;
    margin-bottom: 3rem;
}

.dark_153e {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.notification-4b56 {
    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%;
}

.notification-4b56:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.current-61fd {
    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);
}

.status_outer_dc7d {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.light-a0a1 {
    padding: 1.5rem;
}

.light-a0a1 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.orange-5cf6 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.notice-clean-d49b {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.preview-red-596f,
.description_7109 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.preview-red-596f {
    background: #dcfce7;
    color: #166534;
}

.preview-red-596f.fresh-29ba {
    background: #10b981;
    color: white;
}

.description_7109 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.description_7109.notice-221a {
    background: #fee2e2;
    color: #991b1b;
}

.description_7109.hero_eb6c {
    background: #fef3c7;
    color: #92400e;
}

.description_7109.link_brown_e6a4 {
    background: #dcfce7;
    color: #166534;
}

.soft-2bfc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.soft-2bfc strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.breadcrumb_7290 {
    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);
}

.breadcrumb_7290:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.modal-blue-cd8c {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.white-1de8 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.highlight-be76 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .highlight-be76 {
        grid-template-columns: 1fr 1fr;
    }
}

.caption_steel_3c91 img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.dark-31c7 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.preview-c71a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.center-e6ff {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.small_8a6c {
    font-size: 1rem;
    opacity: 0.9;
}

.dark-31c7 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.north-8c69 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.north-8c69 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.north-8c69 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;
}

.north-8c69 li strong {
    color: var(--primary-purple);
}

.north-8c69 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.brown_7c06 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.shade_4528 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.sidebar-dirty-fcc3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.shade_4528 .thick_ecc9 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.status_new_fcc1 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.accent_liquid_f895 {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.accent_liquid_f895 a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.slider_f63d {
    padding: 4rem 1.25rem;
    background: white;
}

.mini_3707 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mini_3707 {
        grid-template-columns: 1fr 1fr;
    }
}

.content_6cf7 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.module_purple_09ed {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.accordion-fb5a {
    margin-bottom: 1.5rem;
}

.table_full_973e {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.thumbnail-black-eae5 {
    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);
}

.gold-ecfa {
    white-space: nowrap;
}

.next_6507 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.caption_5fa0 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.paragraph_warm_882d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.paragraph_warm_882d:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.widget-huge-0baa {
    font-size: 2rem;
    flex-shrink: 0;
}

.section_aa2a h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section_aa2a p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.aside_dirty_febf {
    margin-top: 3rem;
}

.aside_dirty_febf h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.right_e612 {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.right_e612 thead {
    background: var(--primary-purple);
    color: white;
}

.right_e612 th,
.right_e612 td {
    padding: 1rem;
    text-align: left;
}

.right_e612 th {
    font-weight: 700;
    font-size: 0.9rem;
}

.right_e612 tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.right_e612 tbody tr:last-child {
    border-bottom: none;
}

.right_e612 tbody tr:hover {
    background: var(--light-bg);
}

.accordion-accf {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.text-huge-81c9 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.card_full_89d1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.carousel-last-48b5 {
    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);
}

.carousel-last-48b5:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.carousel-last-48b5.focus-pink-bc01::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;
}

.background_3921 {
    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;
}

.mini-4e61 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.grid_easy_979d h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stale-51b5 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.shadow_upper_ad53 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.shadow_upper_ad53 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.shadow_upper_ad53 p:last-child {
    margin-bottom: 0;
}

.shadow_upper_ad53 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.caption_red_21f5 {
    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;
}

.pagination-west-b2f2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.paragraph_09fe {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.paragraph_09fe .slow-dc4d {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.paragraph_09fe .thick_ecc9 {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.simple_8a60 {
    padding: 4rem 1.25rem;
    background: white;
}

.mini-d0e2 {
    max-width: 900px;
    margin: 0 auto;
}

.accent_fixed_1ee1 {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.accent_fixed_1ee1:hover {
    border-color: var(--primary-purple);
}

.accent_fixed_1ee1[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.accent_fixed_1ee1 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;
}

.accent_fixed_1ee1 summary::-webkit-details-marker {
    display: none;
}

.accent_fixed_1ee1 summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.accent_fixed_1ee1[open] summary::after {
    transform: rotate(45deg);
}

.middle-63f6 {
    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);
    }
}

.middle-63f6 p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.middle-63f6 h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.middle-63f6 ul,
.middle-63f6 ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.middle-63f6 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.middle-63f6 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.paragraph_bd87 {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.button_aa0c {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.button_aa0c th,
.button_aa0c td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.button_aa0c th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.chip-b5f1 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.advanced_294e {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.gradient_9fe3 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .gradient_9fe3 {
        flex-direction: column;
        text-align: center;
    }
}

.gradient_9fe3 img {
    flex-shrink: 0;
}

.brown-b7bd {
    font-size: 4rem;
    flex-shrink: 0;
}

.layout_44f4 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.layout_44f4 p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.main_down_23a7 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.full-3dcb {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.row-orange-654a h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.row-orange-654a > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.content-199e {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.hot-fdbf {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.easy-1714 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.search_ca6a h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.search_ca6a p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.preview_purple_99c8 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.under_bb40 {
    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);
}

.cold-e900 {
    list-style: none;
}

.cold-e900 li {
    margin-bottom: 0.75rem;
}

.cold-e900 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.cold-e900 a:hover {
    color: white;
}

.box_f1d1 {
    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;
}

.brown-392d {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brown-392d span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.down_a0cf {
    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);
}

.old-7eed {
    text-align: right;
}

@media (max-width: 767px) {
    .old-7eed {
        text-align: center;
        width: 100%;
    }
}

.old-7eed p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.banner_clean_3913 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.menu-70af {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.liquid_9bd8,
.text_2b50,
.disabled_last_6cb7,
.box-tiny-9063,
.white-1de8,
.slider_f63d,
.text-huge-81c9,
.simple_8a60,
.advanced_294e,
.full-3dcb {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .slow-9c07 {
        font-size: 1.75rem;
    }
    
    .slider-270b {
        font-size: 1rem;
    }
    
    .brown_7c06 {
        flex-direction: column;
    }
    
    .mini_3707 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .dark_153e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notification-4b56 {
        max-width: 100%;
    }
    
    .status_outer_dc7d {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .menu-70af {
        padding: 0 1rem;
    }
    
    .white-7ccc {
        padding: 4rem 1rem 3rem;
    }
    
    .white-7ccc h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .footer-dd2f {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .aside-iron-6116 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .right_e612,
    .button_aa0c {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .sort-149b {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .wide-8313 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .card_full_89d1 {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .white-7ccc h1 {
        font-size: 1.5rem;
    }
    
    .aside-iron-6116 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .sidebar-full-4d05 {
        padding: 0.75rem;
    }
    
    .slow-dc4d {
        font-size: 1.5rem;
    }
    
    .sort-149b {
        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 */
.notification-4b56:hover,
.upper_1752:hover,
.carousel-last-48b5:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .box-tiny-9063,
    .text-huge-81c9,
    .simple_8a60 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.sidebar_left_5844)
   ======================================== */

.tiny_2dc7.mask-00ee {
    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;
}

.tiny_2dc7.mask-00ee .outer-bf39 {
    color: #334155;
}

.tiny_2dc7.mask-00ee .outer-bf39:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.tiny_2dc7.mask-00ee .outer-bf39.fn-active-0af7 {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.tiny_2dc7.mask-00ee .box_60ff {
    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);
}

.tiny_2dc7.mask-00ee .box_60ff::before {
    border-bottom-color: #ffffff;
}

.tiny_2dc7.mask-00ee .pattern-new-fe58 {
    color: #475569;
}

.tiny_2dc7.mask-00ee .pattern-new-fe58::before {
    background: #818cf8;
}

.tiny_2dc7.mask-00ee .pattern-new-fe58:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.tiny_2dc7.mask-00ee .pattern-new-fe58:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.tiny_2dc7.mask-00ee .grid_f1f0 {
    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);
}

.tiny_2dc7.mask-00ee .grid_f1f0:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.tiny_2dc7.mask-00ee .grid_f1f0 span {
    background: #475569;
    box-shadow: none;
}

.tiny_2dc7.mask-00ee .grid_f1f0.fn-active-0af7 span:nth-child(1),
.tiny_2dc7.mask-00ee .grid_f1f0.fn-active-0af7 span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .tiny_2dc7.mask-00ee {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .tiny_2dc7.mask-00ee .gallery_pro_881c {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .tiny_2dc7.mask-00ee .gallery_pro_881c span {
        color: #334155 !important;
    }

    .tiny_2dc7.mask-00ee .info-0a86 {
        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);
    }

    .tiny_2dc7.mask-00ee .info-0a86 .outer-bf39 {
        color: #334155;
        text-shadow: none;
    }

    .tiny_2dc7.mask-00ee .info-0a86 .outer-bf39:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .tiny_2dc7.mask-00ee .info-0a86 .outer-bf39.gallery_db5c::after {
        color: #64748b;
    }

    .tiny_2dc7.mask-00ee .info-0a86 .box_60ff {
        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) */
    .tiny_2dc7.mask-00ee .info-0a86 .message-last-a9b1.fn-active-0af7 .box_60ff {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .tiny_2dc7.mask-00ee .info-0a86 .pattern-new-fe58 {
        color: #475569;
    }

    .tiny_2dc7.mask-00ee .info-0a86 .pattern-new-fe58::before {
        color: #6366f1;
    }

    .tiny_2dc7.mask-00ee .info-0a86 .pattern-new-fe58:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .tiny_2dc7.mask-00ee .info-0a86 .pattern-new-fe58:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .tiny_2dc7.mask-00ee .info-0a86 .pattern-new-fe58:hover::before {
        color: #4f46e5;
    }
}

/* apk.focus_7f25 — mesmo tema claro da home; blocos extras */
body.advanced-19ec {
    background: #f8f9fa;
    color: #2c3e50;
}

.advanced-19ec .picture_hard_c8ab {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.advanced-19ec .outline_0b41 {
    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);
}

.advanced-19ec .outline_0b41 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.advanced-19ec .outline_0b41 p:last-child {
    margin-bottom: 0;
}

.advanced-19ec .outline_0b41 strong {
    color: var(--text-primary);
}

.advanced-19ec .small_50d8 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.advanced-19ec .small_50d8 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.photo_8cf0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo_8cf0 .popup_fast_469c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo_8cf0 .caption_ec46 {
    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);
}

.photo_8cf0 .caption_ec46 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_8cf0 .caption_ec46 p:last-child {
    margin-bottom: 0;
}

.photo_8cf0 .caption_ec46 strong {
    color: var(--text-primary);
}

.photo_8cf0 .gradient-first-7068 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo_8cf0 .gradient-first-7068 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.description-f131 {
    background: #f8f9fa;
    color: #2c3e50;
}

.description-f131 .header-d274 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.description-f131 .alert-active-f753 {
    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-f131 .alert-active-f753 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.description-f131 .alert-active-f753 p:last-child {
    margin-bottom: 0;
}

.description-f131 .alert-active-f753 strong {
    color: var(--text-primary);
}

.description-f131 .shadow-outer-942b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.description-f131 .shadow-outer-942b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.bronze_8f22 {
    background: #f8f9fa;
    color: #2c3e50;
}

.bronze_8f22 .prev-ceba {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.bronze_8f22 .layout_5bb1 {
    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_8f22 .layout_5bb1 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.bronze_8f22 .layout_5bb1 p:last-child {
    margin-bottom: 0;
}

.bronze_8f22 .layout_5bb1 strong {
    color: var(--text-primary);
}

.bronze_8f22 .hovered_9a98 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.bronze_8f22 .hovered_9a98 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tabs_outer_0e43 {
    background: #f8f9fa;
    color: #2c3e50;
}

.tabs_outer_0e43 .stale_b8a4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tabs_outer_0e43 .menu_190a {
    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);
}

.tabs_outer_0e43 .menu_190a p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tabs_outer_0e43 .menu_190a p:last-child {
    margin-bottom: 0;
}

.tabs_outer_0e43 .menu_190a strong {
    color: var(--text-primary);
}

.tabs_outer_0e43 .status-iron-c772 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tabs_outer_0e43 .status-iron-c772 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.large_995e {
    background: #f8f9fa;
    color: #2c3e50;
}

.large_995e .out_13ad {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.large_995e .message-3600 {
    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);
}

.large_995e .message-3600 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.large_995e .message-3600 p:last-child {
    margin-bottom: 0;
}

.large_995e .message-3600 strong {
    color: var(--text-primary);
}

.large_995e .small-fe3f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.large_995e .small-fe3f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.complex_8da5 {
    background: #f8f9fa;
    color: #2c3e50;
}

.complex_8da5 .sidebar-d4a4 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.complex_8da5 .box_focused_64df {
    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);
}

.complex_8da5 .box_focused_64df p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.complex_8da5 .box_focused_64df p:last-child {
    margin-bottom: 0;
}

.complex_8da5 .box_focused_64df strong {
    color: var(--text-primary);
}

.complex_8da5 .cold_1622 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.complex_8da5 .cold_1622 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.fast-e876 {
    background: #f8f9fa;
    color: #2c3e50;
}

.fast-e876 .stone-6dba {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fast-e876 .dim-cacf {
    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);
}

.fast-e876 .dim-cacf p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fast-e876 .dim-cacf p:last-child {
    margin-bottom: 0;
}

.fast-e876 .dim-cacf strong {
    color: var(--text-primary);
}

.fast-e876 .medium-0976 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fast-e876 .medium-0976 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.wrapper_9fa0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.wrapper_9fa0 .orange-9592 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.wrapper_9fa0 .focus_e216 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.wrapper_9fa0 .focus_e216 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wrapper_9fa0 .focus_e216 p:last-child {
    margin-bottom: 0;
}

.wrapper_9fa0 .focus_e216 strong {
    color: var(--text-primary);
}

.wrapper_9fa0 .shadow-e109 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.wrapper_9fa0 .shadow-e109 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-245a {
    background: #f8f9fa;
    color: #2c3e50;
}

.active-245a .pink_17af {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active-245a .component_65a0 {
    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-245a .component_65a0 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-245a .component_65a0 p:last-child {
    margin-bottom: 0;
}

.active-245a .component_65a0 strong {
    color: var(--text-primary);
}

.active-245a .hidden_5ee9 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active-245a .hidden_5ee9 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.dirty_6fbd {
    background: #f8f9fa;
    color: #2c3e50;
}

.dirty_6fbd .sort_dynamic_ac1a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.dirty_6fbd .light_c012 {
    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);
}

.dirty_6fbd .light_c012 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dirty_6fbd .light_c012 p:last-child {
    margin-bottom: 0;
}

.dirty_6fbd .light_c012 strong {
    color: var(--text-primary);
}

.dirty_6fbd .module_4046 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dirty_6fbd .module_4046 li {
    margin-bottom: 0.65rem;
}

.dirty_6fbd .module_4046 li:last-child {
    margin-bottom: 0;
}

.dirty_6fbd .item-20d4 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.dirty_6fbd .item-20d4 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sidebar_0880 {
    background: #f8f9fa;
    color: #2c3e50;
}

.sidebar_0880 .border_c688 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sidebar_0880 .disabled_f6f4 {
    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);
}

.sidebar_0880 .disabled_f6f4 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar_0880 .disabled_f6f4 p:last-child {
    margin-bottom: 0;
}

.sidebar_0880 .disabled_f6f4 strong {
    color: var(--text-primary);
}

.sidebar_0880 .article-silver-5833 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sidebar_0880 .article-silver-5833 li {
    margin-bottom: 0.65rem;
}

.sidebar_0880 .article-silver-5833 li:last-child {
    margin-bottom: 0;
}

.sidebar_0880 .fast-1ff6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sidebar_0880 .fast-1ff6 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-tiny-f74d {
    background: #f8f9fa;
    color: #2c3e50;
}

.status-tiny-f74d .badge_f8bb {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.status-tiny-f74d .pro_8577 {
    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-tiny-f74d .pro_8577 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-tiny-f74d .pro_8577 p:last-child {
    margin-bottom: 0;
}

.status-tiny-f74d .pro_8577 strong {
    color: var(--text-primary);
}

.status-tiny-f74d .banner-prev-423b {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-tiny-f74d .banner-prev-423b li {
    margin-bottom: 0.65rem;
}

.status-tiny-f74d .banner-prev-423b li:last-child {
    margin-bottom: 0;
}

.status-tiny-f74d .element_4b82 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.status-tiny-f74d .element_4b82 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.photo_3736 {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo_3736 .thumbnail_3de7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo_3736 .slow_ee99 {
    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);
}

.photo_3736 .slow_ee99 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_3736 .slow_ee99 p:last-child {
    margin-bottom: 0;
}

.photo_3736 .slow_ee99 strong {
    color: var(--text-primary);
}

.photo_3736 .table_cold_e7f3 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo_3736 .table_cold_e7f3 li {
    margin-bottom: 0.65rem;
}

.photo_3736 .table_cold_e7f3 li:last-child {
    margin-bottom: 0;
}

body.photo-17c0 {
    background: #f8f9fa;
    color: #2c3e50;
}

.photo-17c0 .badge-basic-e674 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.photo-17c0 .down-42dc {
    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);
}

.photo-17c0 .down-42dc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-17c0 .down-42dc p:last-child {
    margin-bottom: 0;
}

.photo-17c0 .down-42dc strong {
    color: var(--text-primary);
}

.photo-17c0 .search_a7a7 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.photo-17c0 .search_a7a7 li {
    margin-bottom: 0.65rem;
}

.photo-17c0 .search_a7a7 li:last-child {
    margin-bottom: 0;
}

.photo-17c0 .slider-small-2537 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.photo-17c0 .slider-small-2537 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_cd92 {
    background: #f8f9fa;
    color: #2c3e50;
}

.list_cd92 .rough-703c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.list_cd92 .pagination_2dd8 {
    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_cd92 .pagination_2dd8 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list_cd92 .pagination_2dd8 p:last-child {
    margin-bottom: 0;
}

.list_cd92 .pagination_2dd8 strong {
    color: var(--text-primary);
}

.list_cd92 .blue-baff {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.list_cd92 .blue-baff li {
    margin-bottom: 0.65rem;
}

.list_cd92 .blue-baff li:last-child {
    margin-bottom: 0;
}

.list_cd92 .bottom-a397 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.list_cd92 .bottom-a397 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-2874 {
    background: #f8f9fa;
    color: #2c3e50;
}

.active-2874 .background-easy-46a3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.active-2874 .content_orange_38be {
    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-2874 .content_orange_38be p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-2874 .content_orange_38be p:last-child {
    margin-bottom: 0;
}

.active-2874 .content_orange_38be strong {
    color: var(--text-primary);
}

.active-2874 .badge-hard-296a {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.active-2874 .badge-hard-296a li {
    margin-bottom: 0.65rem;
}

.active-2874 .badge-hard-296a li:last-child {
    margin-bottom: 0;
}

.active-2874 .carousel-yellow-1739 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.active-2874 .carousel-yellow-1739 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.plasma-c1a4 {
    background: #f8f9fa;
    color: #2c3e50;
}

.plasma-c1a4 .bottom-7bc1 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.plasma-c1a4 .green-9c13 {
    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);
}

.plasma-c1a4 .green-9c13 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.plasma-c1a4 .green-9c13 p:last-child {
    margin-bottom: 0;
}

.plasma-c1a4 .green-9c13 strong {
    color: var(--text-primary);
}

.plasma-c1a4 .texture_mini_c9c8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.plasma-c1a4 .texture_mini_c9c8 li {
    margin-bottom: 0.65rem;
}

.plasma-c1a4 .texture_mini_c9c8 li:last-child {
    margin-bottom: 0;
}

.plasma-c1a4 .link-out-7234 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.plasma-c1a4 .link-out-7234 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: 68bb */
.phantom-card-d8 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
