/* 
 * 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.gas_f903) — fixed together on mobile */
.tooltip-87ab {
    width: 100%;
}

.slow-0e4a {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-base);
    width: 100%;
}

/* 移动端：整块固定在顶部（白条 + 棕色菜单栏） */
@media (max-width: 767px) {
    .tooltip-87ab {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .slow-0e4a {
        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.iron-64e7. Conta) stay reachable.
     */
    .secondary_5945 .disabled-pressed-d674 {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    /* 全宽：避免两侧露出页面（如 hero 紫色边） */
    .tooltip-87ab .secondary_5945 > .disabled-pressed-d674 {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
        width: 100%;
    }

    /*
     * 首页：菜单打开时整栈 = 100dvh，用 flex 把列表区撑满顶栏以下空间。
     * 避免写死 130px 与真实顶栏高度不一致导致底部露缝。
     */
    .tooltip-87ab:has(.notification_e7d7.fn-show-3edf) {
        display: flex;
        flex-direction: column;
        height: 100vh;
        max-height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        box-sizing: border-box;
    }

    .tooltip-87ab:has(.notification_e7d7.fn-show-3edf) .slow-0e4a {
        flex-shrink: 0;
    }

    .tooltip-87ab:has(.notification_e7d7.fn-show-3edf) .secondary_5945 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .tooltip-87ab:has(.notification_e7d7.fn-show-3edf) .secondary_5945 > .disabled-pressed-d674 {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .tooltip-87ab:has(.notification_e7d7.fn-show-3edf) .card_9e87 {
        flex-shrink: 0;
    }

    .tooltip-87ab:has(.notification_e7d7.fn-show-3edf) .notification_e7d7.fn-show-3edf {
        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 */
    .secondary_5945 .notification_e7d7 .disabled_medium_30e8.fn-active-3edf .hard_15d7 {
        max-height: none;
        overflow: visible;
        animation: none;
    }
}

@media (min-width: 768px) {
    .slow-0e4a {
        position: sticky;
        top: 0;
    }
}

.tooltip-87ab.tag-prev-4d91,
.tooltip-87ab.tag-prev-4d91 .slow-0e4a {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.surface_07c1 {
    padding: 1rem 0;
}

/* 移动端导航优化 */
@media (max-width: 767px) {
    .surface_07c1 {
        padding: 0.75rem 0;
    }
}

.block-2e1e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.caption_center_ebad img {
    display: block;
    height: 40px;
    width: auto;
    transition: height var(--transition-base);
}

/* 移动端logo调整 */
@media (max-width: 767px) {
    .caption_center_ebad img {
        height: 35px;
    }
}

/* .secondary_5945 / .hard_0959 — inner pages (brown bar); index uses .item_hard_02e9 below */

.secondary_5945:not(.item_hard_02e9) .hard_0959.fn-active-3edf {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.tooltip-soft-f4bd {
    display: flex;
    gap: var(--spacing-md);
}

.border-basic-aebc,
.highlight_7fa4 {
    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) {
    .border-basic-aebc,
    .highlight_7fa4 {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .tooltip-soft-f4bd {
        gap: 0.5rem;
    }
}

.border-basic-aebc {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
}

.border-basic-aebc:hover {
    background: var(--primary-purple);
    color: white;
}

.highlight_7fa4 {
    background: var(--secondary-green);
    color: white;
    border: 2px solid var(--secondary-green);
}

.highlight_7fa4:hover {
    background: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   4. Hero Section
   ======================================== */

.header_df9c {
    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%;
}

.header_df9c::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;
}

.header_df9c::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;
}

.blue_589d {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    width: 100%;
}

.bright-bbef {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
    max-width: 100%;
}

.bright-bbef 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);
}

.header_df9c 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;
}

.west_ba8c {
    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;
}

.west_ba8c strong {
    font-weight: 700;
}

.over_1a32 {
    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);
}

.tertiary-e02c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.element-69eb {
    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);
}

.element-69eb:hover {
    transform: translateY(-4px);
}

.caption-smooth-0383 {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.shadow_08ed {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   5. Buttons & CTAs
   ======================================== */

.tag_south_f34a {
    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;
}

.tag_south_f34a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    background: var(--secondary-green-dark);
}

.tag_south_f34a.nav_fast_c961 {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.widget-hovered-8163 {
    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);
}

.widget-hovered-8163:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   6. Trust Indicators Section
   ======================================== */

.simple_edb5 {
    padding: 3rem 1.25rem;
    background: white;
}

.light-104b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.west_6ad7 {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.west_6ad7:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.west_6ad7 img {
    margin-bottom: 1rem;
}

.message_b7aa {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.west_6ad7 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.west_6ad7 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 */
.notification-clean-c897 {
    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);
}

.description-5cd2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.table-4bfc {
    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);
}

.table-4bfc h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.table-4bfc p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.table-4bfc a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.media_yellow_50d8 {
    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
   ======================================== */

.glass_3b2f {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sort_d057 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.dropdown_daf4 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.tall_7814 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gas-1abb {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.gas-1abb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.gas-1abb.icon_a298 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gas-1abb.icon_a298 h3,
.gas-1abb.icon_a298 p {
    color: white;
}

.right_6206 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gas-1abb h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.gas-1abb p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.item_blue_a9ff {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.item_blue_a9ff:hover {
    gap: 0.75rem;
}

.gas-1abb.icon_a298 .item_blue_a9ff {
    color: white;
}

/* ========================================
   8. Featured Games Section
   ======================================== */

.border_d206 {
    padding: 4rem 1.25rem;
    background: white;
}

.section_2907 {
    text-align: center;
    margin-bottom: 3rem;
}

.grid-huge-122e {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(512px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.hover-easy-347d {
    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%;
}

.hover-easy-347d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.outline_pro_60d9 {
    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);
}

.primary-fluid-4155 {
    width: 100%;
    height: auto;
    min-height: 512px;
    object-fit: cover;
    display: block;
}

.chip_out_1576 {
    padding: 1.5rem;
}

.chip_out_1576 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tooltip_7220 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.secondary-00f0 {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.current_7633,
.current_6897 {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.current_7633 {
    background: #dcfce7;
    color: #166534;
}

.current_7633.label-aec6 {
    background: #10b981;
    color: white;
}

.current_6897 {
    background: var(--light-bg);
    color: var(--text-secondary);
}

.current_6897.summary_out_3f3d {
    background: #fee2e2;
    color: #991b1b;
}

.current_6897.component-over-963e {
    background: #fef3c7;
    color: #92400e;
}

.current_6897.form-055c {
    background: #dcfce7;
    color: #166534;
}

.copper-fce8 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.copper-fce8 strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.feature_huge_c4e6 {
    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);
}

.feature_huge_c4e6:hover {
    background: var(--primary-purple-dark);
    transform: scale(1.02);
}

.info_024f {
    text-align: center;
}

/* ========================================
   9. Bonus Section
   ======================================== */

.card-large-9f48 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.dirty_271b {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dirty_271b {
        grid-template-columns: 1fr 1fr;
    }
}

.pink_6d5d img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.tall-1ab5 h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.tooltip-7c79 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.brown_aab4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.avatar_cacf {
    font-size: 1rem;
    opacity: 0.9;
}

.tall-1ab5 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.middle-bab4 {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.middle-bab4 li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.middle-bab4 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;
}

.middle-bab4 li strong {
    color: var(--primary-purple);
}

.middle-bab4 li small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.status-hovered-c0f3 {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.secondary_7ed7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.media_focused_8506 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    line-height: 1;
}

.secondary_7ed7 .shadow_08ed {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.heading_red_c930 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.inner-546f {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.inner-546f a {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* ========================================
   10. PIX Section
   ======================================== */

.outer-f343 {
    padding: 4rem 1.25rem;
    background: white;
}

.photo_c386 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .photo_c386 {
        grid-template-columns: 1fr 1fr;
    }
}

.dirty-444b h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.detail-02d0 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.iron-6b9b {
    margin-bottom: 1.5rem;
}

.first_4c56 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.steel_c62a {
    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);
}

.component-narrow-7326 {
    white-space: nowrap;
}

.stale-7342 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.north-c144 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.avatar-3e0d {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.avatar-3e0d:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.container-dynamic-71c8 {
    font-size: 2rem;
    flex-shrink: 0;
}

.backdrop-short-378d h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.backdrop-short-378d p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.element_3faf {
    margin-top: 3rem;
}

.element_3faf h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.over_88fd {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.over_88fd thead {
    background: var(--primary-purple);
    color: white;
}

.over_88fd th,
.over_88fd td {
    padding: 1rem;
    text-align: left;
}

.over_88fd th {
    font-weight: 700;
    font-size: 0.9rem;
}

.over_88fd tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.over_88fd tbody tr:last-child {
    border-bottom: none;
}

.over_88fd tbody tr:hover {
    background: var(--light-bg);
}

.summary-7601 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   11. Winners Section
   ======================================== */

.badge_be53 {
    padding: 4rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.surface-93dc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.table_1400 {
    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);
}

.table_1400:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-green);
}

.table_1400.frame-721b::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;
}

.text_f8a8 {
    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;
}

.middle-f19a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.sidebar-08ac h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.preview-fluid-83a8 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.shade_4070 {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.shade_4070 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.shade_4070 p:last-child {
    margin-bottom: 0;
}

.shade_4070 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.accent_small_ac74 {
    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;
}

.sort_2a37 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mini_69b2 {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
}

.mini_69b2 .caption-smooth-0383 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.mini_69b2 .shadow_08ed {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   12. FAQ Section
   ======================================== */

.alert-c5f9 {
    padding: 4rem 1.25rem;
    background: white;
}

.block-over-c2c7 {
    max-width: 900px;
    margin: 0 auto;
}

.article_bf7d {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.article_bf7d:hover {
    border-color: var(--primary-purple);
}

.article_bf7d[open] {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.article_bf7d 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;
}

.article_bf7d summary::-webkit-details-marker {
    display: none;
}

.article_bf7d summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.article_bf7d[open] summary::after {
    transform: rotate(45deg);
}

.pattern_medium_2bfa {
    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);
    }
}

.pattern_medium_2bfa p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pattern_medium_2bfa h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.pattern_medium_2bfa ul,
.pattern_medium_2bfa ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.pattern_medium_2bfa li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pattern_medium_2bfa strong {
    color: var(--text-primary);
    font-weight: 600;
}

.easy-5b0f {
    background: #dcfce7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--secondary-green);
}

.slider_current_733a {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.slider_current_733a th,
.slider_current_733a td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.slider_current_733a th {
    background: var(--light-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.tooltip-1b43 {
    color: var(--secondary-green);
    font-weight: 700;
}

/* ========================================
   13. Responsible Gaming Section
   ======================================== */

.next-ab98 {
    padding: 3rem 1.25rem;
    background: #fef3c7;
    border-top: 4px solid var(--warning);
}

.east-1393 {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .east-1393 {
        flex-direction: column;
        text-align: center;
    }
}

.east-1393 img {
    flex-shrink: 0;
}

.content_dark_15cd {
    font-size: 4rem;
    flex-shrink: 0;
}

.outline-9ead h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.outline-9ead p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.title-dark-3a47 {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   14. Final CTA Section
   ======================================== */

.tabs-c243 {
    padding: 5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.lite_b31a h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.lite_b31a > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.secondary-inner-7b9c {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   15. Footer
   ======================================== */

.grid_d406 {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 1.25rem 2rem;
}

.steel-c265 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-a659 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detail-a659 p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.dark_870a {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero_down_316b {
    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);
}

.focused-b136 {
    list-style: none;
}

.focused-b136 li {
    margin-bottom: 0.75rem;
}

.focused-b136 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.focused-b136 a:hover {
    color: white;
}

.fixed-bb5a {
    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;
}

.glass-9c72 {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.glass-9c72 span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.frame_selected_daf0 {
    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);
}

.south_597c {
    text-align: right;
}

@media (max-width: 767px) {
    .south_597c {
        text-align: center;
        width: 100%;
    }
}

.south_597c p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.section-gas-d7b0 {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   16. Responsive Utilities
   ======================================== */

.disabled-pressed-d674 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* All sections should not exceed viewport width */
section {
    width: 100%;
    overflow: hidden;
}

.simple_edb5,
.notification-clean-c897,
.glass_3b2f,
.border_d206,
.card-large-9f48,
.outer-f343,
.badge_be53,
.alert-c5f9,
.next-ab98,
.tabs-c243 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .sort_d057 {
        font-size: 1.75rem;
    }
    
    .dropdown_daf4 {
        font-size: 1rem;
    }
    
    .status-hovered-c0f3 {
        flex-direction: column;
    }
    
    .photo_c386 {
        grid-template-columns: 1fr;
    }
    
    /* 移动端游戏卡片调整 */
    .grid-huge-122e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hover-easy-347d {
        max-width: 100%;
    }
    
    .primary-fluid-4155 {
        min-height: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    /* 确保所有内容不超出屏幕 */
    .disabled-pressed-d674 {
        padding: 0 1rem;
    }
    
    .header_df9c {
        padding: 4rem 1rem 3rem;
    }
    
    .header_df9c h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .tag_south_f34a {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .tertiary-e02c {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* 表格横向滚动处理 */
    .over_88fd,
    .slider_current_733a {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Trust badges */
    .light-104b {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* QA cards */
    .tall_7814 {
        grid-template-columns: 1fr;
    }
    
    /* Winners grid */
    .surface-93dc {
        grid-template-columns: 1fr;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .header_df9c h1 {
        font-size: 1.5rem;
    }
    
    .tertiary-e02c {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .element-69eb {
        padding: 0.75rem;
    }
    
    .caption-smooth-0383 {
        font-size: 1.5rem;
    }
    
    .light-104b {
        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 */
.hover-easy-347d:hover,
.gas-1abb:hover,
.table_1400:hover {
    will-change: transform;
}

/* Content Visibility for Below-Fold Content */
@supports (content-visibility: auto) {
    .border_d206,
    .badge_be53,
    .alert-c5f9 {
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

/* ========================================
   Index homepage nav — light frosted bar (overrides shared.gas_f903)
   ======================================== */

.secondary_5945.item_hard_02e9 {
    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;
}

.secondary_5945.item_hard_02e9 .hard_0959 {
    color: #334155;
}

.secondary_5945.item_hard_02e9 .hard_0959:hover {
    background: rgba(99, 102, 241, 0.12);
    color: #1e1b4b;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.secondary_5945.item_hard_02e9 .hard_0959.fn-active-3edf {
    background: rgba(99, 102, 241, 0.16);
    color: #312e81;
}

.secondary_5945.item_hard_02e9 .hard_15d7 {
    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);
}

.secondary_5945.item_hard_02e9 .hard_15d7::before {
    border-bottom-color: #ffffff;
}

.secondary_5945.item_hard_02e9 .stone-0735 {
    color: #475569;
}

.secondary_5945.item_hard_02e9 .stone-0735::before {
    background: #818cf8;
}

.secondary_5945.item_hard_02e9 .stone-0735:not(:last-child)::after {
    background: rgba(226, 232, 240, 0.9);
}

.secondary_5945.item_hard_02e9 .stone-0735:hover {
    background: rgba(238, 242, 255, 0.95);
    color: #312e81;
    box-shadow: none;
}

.secondary_5945.item_hard_02e9 .preview_top_20c6 {
    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);
}

.secondary_5945.item_hard_02e9 .preview_top_20c6:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.45);
}

.secondary_5945.item_hard_02e9 .preview_top_20c6 span {
    background: #475569;
    box-shadow: none;
}

.secondary_5945.item_hard_02e9 .preview_top_20c6.fn-active-3edf span:nth-child(1),
.secondary_5945.item_hard_02e9 .preview_top_20c6.fn-active-3edf span:nth-child(3) {
    background: #6366f1;
}

@media (max-width: 768px) {
    .secondary_5945.item_hard_02e9 {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
    }

    .secondary_5945.item_hard_02e9 .card_9e87 {
        background: rgba(248, 250, 252, 0.95);
        border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .secondary_5945.item_hard_02e9 .card_9e87 span {
        color: #334155 !important;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 {
        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);
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .hard_0959 {
        color: #334155;
        text-shadow: none;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .hard_0959:hover {
        background: rgba(241, 245, 249, 0.95);
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .hard_0959.dynamic-8582::after {
        color: #64748b;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .hard_15d7 {
        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) */
    .secondary_5945.item_hard_02e9 .notification_e7d7 .disabled_medium_30e8.fn-active-3edf .hard_15d7 {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .stone-0735 {
        color: #475569;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .stone-0735::before {
        color: #6366f1;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .stone-0735:not(:last-child)::after {
        background: linear-gradient(
            90deg,
            rgba(203, 213, 225, 0.6),
            rgba(203, 213, 225, 0.15),
            transparent
        );
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .stone-0735:hover {
        background: rgba(238, 242, 255, 0.95);
        border-left-color: #818cf8;
        color: #312e81;
    }

    .secondary_5945.item_hard_02e9 .notification_e7d7 .stone-0735:hover::before {
        color: #4f46e5;
    }
}

/* apk.cool-a217 — mesmo tema claro da home; blocos extras */
body.frame_purple_373d {
    background: #f8f9fa;
    color: #2c3e50;
}

.frame_purple_373d .content_in_0e92 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.frame_purple_373d .header-23f7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.frame_purple_373d .header-23f7 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.frame_purple_373d .header-23f7 p:last-child {
    margin-bottom: 0;
}

.frame_purple_373d .header-23f7 strong {
    color: var(--text-primary);
}

.frame_purple_373d .heading-prev-3f34 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.frame_purple_373d .heading-prev-3f34 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.notification_current_3ffa {
    background: #f8f9fa;
    color: #2c3e50;
}

.notification_current_3ffa .silver_a81a {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.notification_current_3ffa .tabs-d050 {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-md);
}

.notification_current_3ffa .tabs-d050 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.notification_current_3ffa .tabs-d050 p:last-child {
    margin-bottom: 0;
}

.notification_current_3ffa .tabs-d050 strong {
    color: var(--text-primary);
}

.notification_current_3ffa .notification_silver_63a5 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.notification_current_3ffa .notification_silver_63a5 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.brown_71bb {
    background: #f8f9fa;
    color: #2c3e50;
}

.brown_71bb .sidebar-bottom-3433 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.brown_71bb .silver_b069 {
    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);
}

.brown_71bb .silver_b069 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.brown_71bb .silver_b069 p:last-child {
    margin-bottom: 0;
}

.brown_71bb .silver_b069 strong {
    color: var(--text-primary);
}

.brown_71bb .thumbnail_down_b380 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.brown_71bb .thumbnail_down_b380 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.thick-e231 {
    background: #f8f9fa;
    color: #2c3e50;
}

.thick-e231 .fast-cfd5 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.thick-e231 .accordion_short_d1af {
    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);
}

.thick-e231 .accordion_short_d1af p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.thick-e231 .accordion_short_d1af p:last-child {
    margin-bottom: 0;
}

.thick-e231 .accordion_short_d1af strong {
    color: var(--text-primary);
}

.thick-e231 .chip_67e2 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.thick-e231 .chip_67e2 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.south-1d86 {
    background: #f8f9fa;
    color: #2c3e50;
}

.south-1d86 .up-0bb7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.south-1d86 .surface_purple_401e {
    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);
}

.south-1d86 .surface_purple_401e p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.south-1d86 .surface_purple_401e p:last-child {
    margin-bottom: 0;
}

.south-1d86 .surface_purple_401e strong {
    color: var(--text-primary);
}

.south-1d86 .title-tall-b897 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.south-1d86 .title-tall-b897 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.short_4679 {
    background: #f8f9fa;
    color: #2c3e50;
}

.short_4679 .pattern_current_0dec {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.short_4679 .panel_top_ce4f {
    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);
}

.short_4679 .panel_top_ce4f p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.short_4679 .panel_top_ce4f p:last-child {
    margin-bottom: 0;
}

.short_4679 .panel_top_ce4f strong {
    color: var(--text-primary);
}

.short_4679 .motion_59de {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.short_4679 .motion_59de img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.sort-a954 {
    background: #f8f9fa;
    color: #2c3e50;
}

.sort-a954 .fresh_ebff {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.sort-a954 .column_a636 {
    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);
}

.sort-a954 .column_a636 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.sort-a954 .column_a636 p:last-child {
    margin-bottom: 0;
}

.sort-a954 .column_a636 strong {
    color: var(--text-primary);
}

.sort-a954 .icon-5b8a {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.sort-a954 .icon-5b8a img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.tertiary_33ff {
    background: #f8f9fa;
    color: #2c3e50;
}

.tertiary_33ff .frame_b465 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.tertiary_33ff .background_1780 {
    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);
}

.tertiary_33ff .background_1780 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.tertiary_33ff .background_1780 p:last-child {
    margin-bottom: 0;
}

.tertiary_33ff .background_1780 strong {
    color: var(--text-primary);
}

.tertiary_33ff .in_e3e0 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.tertiary_33ff .in_e3e0 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.element_6aec {
    background: #f8f9fa;
    color: #2c3e50;
}

.element_6aec .component-lower-bf77 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.element_6aec .paragraph-solid-6f20 {
    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);
}

.element_6aec .paragraph-solid-6f20 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.element_6aec .paragraph-solid-6f20 p:last-child {
    margin-bottom: 0;
}

.element_6aec .paragraph-solid-6f20 strong {
    color: var(--text-primary);
}

.element_6aec .texture-down-ab98 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.element_6aec .texture-down-ab98 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.item_7eb3 {
    background: #f8f9fa;
    color: #2c3e50;
}

.item_7eb3 .background-ff7c {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.item_7eb3 .orange_055c {
    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);
}

.item_7eb3 .orange_055c p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.item_7eb3 .orange_055c p:last-child {
    margin-bottom: 0;
}

.item_7eb3 .orange_055c strong {
    color: var(--text-primary);
}

.item_7eb3 .sort-clean-720e {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.item_7eb3 .sort-clean-720e img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.info_small_696d {
    background: #f8f9fa;
    color: #2c3e50;
}

.info_small_696d .popup_purple_2289 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.info_small_696d .slider_fresh_1c74 {
    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);
}

.info_small_696d .slider_fresh_1c74 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.info_small_696d .slider_fresh_1c74 p:last-child {
    margin-bottom: 0;
}

.info_small_696d .slider_fresh_1c74 strong {
    color: var(--text-primary);
}

.info_small_696d .accordion-bd6e {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.info_small_696d .accordion-bd6e li {
    margin-bottom: 0.65rem;
}

.info_small_696d .accordion-bd6e li:last-child {
    margin-bottom: 0;
}

.info_small_696d .component_91ca {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.info_small_696d .component_91ca img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.message-d5a6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.message-d5a6 .active-71ea {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.message-d5a6 .center_c316 {
    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);
}

.message-d5a6 .center_c316 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message-d5a6 .center_c316 p:last-child {
    margin-bottom: 0;
}

.message-d5a6 .center_c316 strong {
    color: var(--text-primary);
}

.message-d5a6 .modal_bfd8 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.message-d5a6 .modal_bfd8 li {
    margin-bottom: 0.65rem;
}

.message-d5a6 .modal_bfd8 li:last-child {
    margin-bottom: 0;
}

.message-d5a6 .rough-8762 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.message-d5a6 .rough-8762 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-pro-d9d1 {
    background: #f8f9fa;
    color: #2c3e50;
}

.widget-pro-d9d1 .shade-pressed-5cd3 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.widget-pro-d9d1 .row-full-10bc {
    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-pro-d9d1 .row-full-10bc p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget-pro-d9d1 .row-full-10bc p:last-child {
    margin-bottom: 0;
}

.widget-pro-d9d1 .row-full-10bc strong {
    color: var(--text-primary);
}

.widget-pro-d9d1 .pattern-0619 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.widget-pro-d9d1 .pattern-0619 li {
    margin-bottom: 0.65rem;
}

.widget-pro-d9d1 .pattern-0619 li:last-child {
    margin-bottom: 0;
}

.widget-pro-d9d1 .surface_605f {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.widget-pro-d9d1 .surface_605f img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.fresh-beca {
    background: #f8f9fa;
    color: #2c3e50;
}

.fresh-beca .notification-soft-bb93 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fresh-beca .light-0c16 {
    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);
}

.fresh-beca .light-0c16 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fresh-beca .light-0c16 p:last-child {
    margin-bottom: 0;
}

.fresh-beca .light-0c16 strong {
    color: var(--text-primary);
}

.fresh-beca .box-9a63 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fresh-beca .box-9a63 li {
    margin-bottom: 0.65rem;
}

.fresh-beca .box-9a63 li:last-child {
    margin-bottom: 0;
}

body.fixed-b2ea {
    background: #f8f9fa;
    color: #2c3e50;
}

.fixed-b2ea .banner_first_7326 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.fixed-b2ea .grid_bd12 {
    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);
}

.fixed-b2ea .grid_bd12 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fixed-b2ea .grid_bd12 p:last-child {
    margin-bottom: 0;
}

.fixed-b2ea .grid_bd12 strong {
    color: var(--text-primary);
}

.fixed-b2ea .texture-709c {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.fixed-b2ea .texture-709c li {
    margin-bottom: 0.65rem;
}

.fixed-b2ea .texture-709c li:last-child {
    margin-bottom: 0;
}

.fixed-b2ea .copper-5c5b {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.fixed-b2ea .copper-5c5b img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.steel-2485 {
    background: #f8f9fa;
    color: #2c3e50;
}

.steel-2485 .menu-fixed-6dfd {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.steel-2485 .photo-gas-c821 {
    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);
}

.steel-2485 .photo-gas-c821 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel-2485 .photo-gas-c821 p:last-child {
    margin-bottom: 0;
}

.steel-2485 .photo-gas-c821 strong {
    color: var(--text-primary);
}

.steel-2485 .basic_9873 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.steel-2485 .basic_9873 li {
    margin-bottom: 0.65rem;
}

.steel-2485 .basic_9873 li:last-child {
    margin-bottom: 0;
}

.steel-2485 .column-c0fb {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.steel-2485 .column-c0fb 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_motion_44b6 {
    background: #f8f9fa;
    color: #2c3e50;
}

.breadcrumb_motion_44b6 .article_8ad7 {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.breadcrumb_motion_44b6 .static-9575 {
    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_motion_44b6 .static-9575 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_motion_44b6 .static-9575 p:last-child {
    margin-bottom: 0;
}

.breadcrumb_motion_44b6 .static-9575 strong {
    color: var(--text-primary);
}

.breadcrumb_motion_44b6 .primary_33f2 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.breadcrumb_motion_44b6 .primary_33f2 li {
    margin-bottom: 0.65rem;
}

.breadcrumb_motion_44b6 .primary_33f2 li:last-child {
    margin-bottom: 0;
}

.breadcrumb_motion_44b6 .hero_advanced_01e6 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.breadcrumb_motion_44b6 .hero_advanced_01e6 img {
    display: block;
    margin: 0 auto;
    max-width: min(100%, 360px);
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

body.modal-57e8 {
    background: #f8f9fa;
    color: #2c3e50;
}

.modal-57e8 .chip_7c1e {
    margin-top: 0.25rem;
    opacity: 0.92;
}

.modal-57e8 .label-0226 {
    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);
}

.modal-57e8 .label-0226 p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal-57e8 .label-0226 p:last-child {
    margin-bottom: 0;
}

.modal-57e8 .label-0226 strong {
    color: var(--text-primary);
}

.modal-57e8 .tabs_middle_6082 {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.modal-57e8 .tabs_middle_6082 li {
    margin-bottom: 0.65rem;
}

.modal-57e8 .tabs_middle_6082 li:last-child {
    margin-bottom: 0;
}

.modal-57e8 .progress_rough_fee3 {
    margin: 1.75rem auto 1.25rem;
    max-width: 420px;
    text-align: center;
}

.modal-57e8 .progress_rough_fee3 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: b7e1 */
.phantom-card-o8 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
