/* 
 * 090bet 2026 SEO-Optimized Design
 * Core Web Vitals Optimized
 * Modern, Clean, Performance-First
 */

/* ============================================
   CSS VARIABLES - 2026 Design System
   ============================================ */
:root {
    /* Primary Brand Colors */
    --brand-primary: #1e40af;      /* Deep Blue */
    --brand-secondary: #10b981;    /* Success Green */
    --brand-accent: #f59e0b;       /* Amber Accent */
    
    /* Neutral Colors */
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Surface Colors */
    --surface-primary: #ffffff;
    --surface-secondary: #f9fafb;
    --surface-alt: #f3f4f6;
    --surface-dark: #1f2937;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-tertiary: #6b7280;
    --text-inverse: #ffffff;
    
    /* Border & Divider */
    --border-color: #e5e7eb;
    --border-color-strong: #d1d5db;
    
    /* Shadows - Optimized for Performance */
    --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);
    
    /* Spacing System (8px base) */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.5rem;    /* 24px */
    --space-6: 2rem;      /* 32px */
    --space-8: 3rem;      /* 48px */
    --space-10: 4rem;     /* 64px */
    --space-12: 6rem;     /* 96px */
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 
                 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Courier New', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* 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);
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;

    /* Fixed Header */
    --header-height: 96px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 防止水平滚动 - 不裁切内容 */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface-primary);
    margin: 0;
    padding: 0;
    padding-top: calc(var(--header-height, 96px) + env(safe-area-inset-top, 0px));
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* 容器不超宽，但不隐藏溢出文字 */
section, main, footer, article {
    max-width: 100%;
}

.medium_a2a2 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Performance: Reduce paint overhead */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-accent);
}

/* ============================================
   CONTAINER
   ============================================ */
.medium_a2a2 {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    min-width: 0;
}

.focused_0519 .medium_a2a2 {
    overflow: visible;
}

@media (max-width: 480px) {
    .focused_0519 .medium_a2a2 {
        padding-left: var(--space-2);
        padding-right: var(--space-2);
    }
}

@media (min-width: 640px) {
    .medium_a2a2 {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }
}

@media (min-width: 1024px) {
    .medium_a2a2 {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

/* 防止所有行和列溢出 */
.current_e075, [class*="col-"] {
    max-width: 100%;
    min-width: 0;
}

/* flex/grid 子项允许收缩，防止文字被裁切 */
.pressed-2baa,
.pro-e8f0,
.background-eee9,
.disabled-8520,
.notice-large-4b87,
.next_6c4e,
.wood_21b5,
.yellow-d0ed,
.motion_b61a,
.tabs-5c55,
.border-solid-45ab,
.header_current_a67a {
    min-width: 0;
    max-width: 100%;
}

/* ============================================
   FIXED FLOATING HEADER
   ============================================ */
.focused_0519 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    overflow: visible;
    padding-top: env(safe-area-inset-top, 0);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.focused_0519.search_black_822a {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background-color: rgba(255, 255, 255, 0.99);
}

.focused_0519 .medium_a2a2 {
    overflow: visible;
}

.disabled-8520 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    gap: var(--space-4);
    position: relative;
    overflow: visible;
}

.notice-large-4b87 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.picture_old_2b3c {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.picture_old_2b3c.fn-active-566a .complex_759d:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.picture_old_2b3c.fn-active-566a .complex_759d:nth-child(2) {
    opacity: 0;
}

.picture_old_2b3c.fn-active-566a .complex_759d:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.complex_759d {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

/* 下拉菜单 - 全端统一（默认隐藏） */
.huge-025e {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: var(--space-4);
    background-color: var(--surface-primary);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    border-bottom: 1px solid var(--border-color);
    max-height: calc(100vh - var(--header-height, 96px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.huge-025e.fn-active-566a {
    display: flex !important;
}

.huge-025e a {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-3);
    border-bottom: 1px solid var(--border-color);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    white-space: nowrap;
}

.huge-025e a:last-child {
    border-bottom: none;
}

.huge-025e a:hover {
    color: var(--brand-primary);
    background-color: var(--surface-alt);
}

.next_6c4e {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
    margin-left: auto;
}

/* 桌面端 - 下拉菜单全宽铺满 */
@media (min-width: 1025px) {
    .huge-025e {
        position: fixed;
        top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        bottom: auto;
        height: auto;
        max-height: calc(100vh - var(--header-height, 96px));
        margin: 0;
        padding: var(--space-5) var(--space-8);
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        background-color: var(--surface-primary);
    }

    .huge-025e.fn-active-566a {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: var(--space-3);
        padding: var(--space-5) clamp(var(--space-4), 3vw, var(--space-10));
        align-items: stretch;
    }

    .huge-025e a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: none;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: var(--space-3) var(--space-2);
        text-transform: none;
        min-height: 48px;
    }

    .huge-025e a:hover {
        border-color: var(--brand-primary);
        background-color: var(--surface-alt);
        color: var(--brand-primary);
    }
}

/* 平板/手机 - 全屏下拉菜单 */
@media (max-width: 1024px) {
    /* Logo | ☰ | 空白 | 按钮靠右 */
    .disabled-8520 {
        display: grid !important;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
        gap: var(--space-2);
    }

    .notice-large-4b87 {
        grid-column: 1;
    }

    .picture_old_2b3c {
        grid-column: 2;
    }

    .next_6c4e {
        grid-column: 4;
        justify-self: end;
        margin-left: 0;
        gap: var(--space-1);
        flex-direction: row;
        align-items: center;
        padding-left: var(--space-2);
        min-width: 0;
        max-width: 100%;
    }
    
    .next_6c4e .clean-1039 {
        white-space: nowrap;
        padding: 0.45rem 0.65rem;
        font-size: 0.75rem;
        min-width: 0;
        max-width: none;
        flex-shrink: 1;
        overflow: visible;
    }

    .notice-large-4b87 {
        min-width: 0;
    }

    .notice-large-4b87 img {
        width: 64px;
        height: 64px;
    }

    /* 全屏覆盖 - 关闭前看不到页面内容 */
    .huge-025e {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        max-height: none;
        margin: 0;
        padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + var(--space-6));
        padding-left: var(--space-4);
        padding-right: calc(var(--space-4) + 52px);
        padding-bottom: var(--space-8);
        z-index: 1001;
        border-bottom: none;
        box-shadow: none;
        background-color: var(--surface-primary);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scroll-padding-top: calc(var(--header-height) + 20px);
    }

    .huge-025e.fn-active-566a {
        display: flex !important;
        flex-direction: column;
    }

    .huge-025e a {
        width: 100%;
        padding: var(--space-4) var(--space-3);
        font-size: var(--text-base);
        border-bottom: 1px solid var(--border-color);
        text-transform: none;
    }

    .huge-025e a:last-child {
        border-bottom: none;
    }

    /* 菜单打开时：X 按钮固定到右上角，避免遮挡菜单文字 */
    body.fresh-5901 .picture_old_2b3c {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 14px);
        right: 16px;
        left: auto;
        margin: 0;
        z-index: 1003;
        background-color: var(--surface-alt);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-md);
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    /* 菜单打开时隐藏右侧按钮，给 X 留出空间 */
    body.fresh-5901 .next_6c4e {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    /* 保持顶部导航栏在最上层 */
    .focused_0519 {
        z-index: 1002;
    }

    body.fresh-5901 {
        overflow: hidden !important;
        touch-action: none;
    }

    body.fresh-5901 .focused_0519 {
        background-color: var(--surface-primary);
        box-shadow: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* 小屏幕手机优化 */
@media (max-width: 640px) {
    :root {
        --header-height: 80px;
    }

    .next_6c4e {
        gap: var(--space-1);
        padding-left: var(--space-1);
    }
    
    .next_6c4e .clean-1039 {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
        min-width: 0;
        max-width: none;
    }

    .notice-large-4b87 img {
        width: 56px;
        height: 56px;
    }
}

/* 超小屏幕 */
@media (max-width: 360px) {
    :root {
        --header-height: 76px;
    }

    .next_6c4e .clean-1039 {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        min-width: 60px;
        max-width: 75px;
    }
}

/* ============================================
   TRUST BAR - E-E-A-T Signal
   ============================================ */
.soft-bc62 {
    background-color: var(--surface-alt);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-3) 0;
}

.border-solid-45ab {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.block_stale_4dbc {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.image-lite-e296 {
    font-size: var(--text-xl);
}

@media (max-width: 768px) {
    .border-solid-45ab {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .block_stale_4dbc {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HERO SECTION - Modern BLUF Design
   ============================================ */
.menu_huge_0e78 {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1e3a8a 100%);
    padding: var(--space-12) 0 var(--space-10);
    color: var(--text-inverse);
}

.pressed-2baa {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-8);
    align-items: center;
}

.pro-e8f0 h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--text-inverse);
}

.breadcrumb_403e {
    font-size: var(--text-lg);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: 0.95;
}

.wrapper_fbe0 {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.module_9785 {
    display: flex;
    flex-direction: column;
}

.module_9785 strong {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--brand-accent);
}

.module_9785 span {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.surface-huge-f8cb {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cool-246b {
    font-size: var(--text-sm);
    opacity: 0.85;
    margin: 0;
}

.background-eee9 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.background-eee9 a {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.background-eee9 img {
    width: 100%;
    max-width: 380px;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* 桌面端 - 图片自适应，限制最大尺寸 */
@media (min-width: 769px) and (max-width: 1199px) {
    .background-eee9 a,
    .background-eee9 img {
        max-width: 340px;
        max-height: 340px;
    }
}

@media (min-width: 1200px) {
    .background-eee9 a,
    .background-eee9 img {
        max-width: 420px;
        max-height: 420px;
    }
}

@media (max-width: 768px) {
    .menu_huge_0e78 {
        padding: var(--space-8) 0 var(--space-6);
    }

    /* 手机端：标题 → 图片 → 其余内容 */
    .pressed-2baa {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
    }

    .pro-e8f0 {
        display: contents;
        min-width: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .pro-e8f0 h1 {
        order: 1;
        font-size: clamp(1.25rem, 5.5vw, 1.875rem);
        line-height: 1.35;
        margin-bottom: 0;
    }

    .background-eee9 {
        order: 2;
        margin: var(--space-2) 0;
    }

    .background-fixed-2f68 {
        order: 3;
        min-width: 0;
    }

    .breadcrumb_403e {
        font-size: var(--text-base);
        overflow-wrap: anywhere;
    }
    
    .wrapper_fbe0 {
        flex-direction: column;
        gap: var(--space-4);
    }

    .surface-huge-f8cb .dropdown-soft-983e {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
        padding: var(--space-3) var(--space-4);
    }

    .cool-246b {
        overflow-wrap: anywhere;
    }

    .background-eee9 a,
    .background-eee9 img {
        max-width: 100%;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .pro-e8f0 h1 {
        font-size: clamp(1.125rem, 5vw, 1.5rem);
    }

    .notice-large-4b87 img {
        width: 56px;
        height: 56px;
    }
}

/* ============================================
   AUTHOR BYLINE - E-E-A-T Signal
   ============================================ */
.full_b61c {
    background-color: var(--surface-alt);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-color);
}

.slider-selected-0a78 {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    background-color: var(--surface-primary);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.breadcrumb-liquid-e5f3 {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.header_current_a67a {
    flex: 1;
}

.footer_short_5160 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.footer_short_5160 strong {
    font-size: var(--text-lg);
    color: var(--text-primary);
}

.accent-8781 {
    background-color: var(--brand-secondary);
    color: var(--text-inverse);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.status_action_3b61 {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.menu_iron_7ec0 {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

@media (max-width: 640px) {
    .slider-selected-0a78 {
        flex-direction: column;
        text-align: center;
    }
    
    .breadcrumb-liquid-e5f3 {
        margin: 0 auto;
    }
    
    .footer_short_5160 {
        justify-content: center;
    }
    
    .menu_iron_7ec0 {
        justify-content: center;
    }
}

/* ============================================
   TABLE OF CONTENTS - User Engagement
   ============================================ */
.focused_c12a {
    padding: var(--space-6) 0;
    background-color: var(--surface-secondary);
}

.frame-ce70 {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
}

.frame-ce70 h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.hidden-small-e09f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3);
}

.hidden-small-e09f a {
    padding: var(--space-3);
    border-left: 3px solid var(--brand-primary);
    background-color: var(--surface-alt);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.hidden-small-e09f a:hover {
    background-color: var(--brand-primary);
    color: var(--text-inverse);
    transform: translateX(4px);
}

/* ============================================
   MAIN CONTENT SECTIONS
   ============================================ */
.backdrop_cool_c799 {
    padding: var(--space-8) 0;
}

.simple-8344 {
    padding: var(--space-10) 0;
}

.simple-8344 article,
.title-4f27,
.link-west-4c9b {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-6);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.simple-8344 h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.3;
}

.simple-8344 h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
}

.simple-8344 h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-5);
    margin-bottom: var(--space-3);
}

.simple-8344 p {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.simple-8344 ul, 
.simple-8344 ol {
    margin-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.simple-8344 li {
    margin-bottom: var(--space-2);
    line-height: 1.75;
    color: var(--text-secondary);
}

.simple-8344 h2,
.simple-8344 h3,
.simple-8344 h4,
.simple-8344 p,
.simple-8344 li,
.video-9ec3,
.fast_fb36 p {
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 768px) {
    .backdrop_cool_c799 {
        padding: var(--space-6) 0;
    }

    .simple-8344 {
        padding: var(--space-6) 0;
    }

    .simple-8344 article,
    .title-4f27,
    .link-west-4c9b {
        max-width: 100%;
        padding: var(--space-4);
    }

    .simple-8344 h2 {
        font-size: clamp(1.25rem, 5vw, 1.875rem);
    }

    .simple-8344 h3 {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem);
    }

    .simple-8344 h4 {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .block_stale_4dbc {
        padding: 0 var(--space-2);
        text-align: center;
    }

    .silver-a684 {
        overflow-wrap: anywhere;
    }

    .backdrop-54b2,
    .dropdown-soft-983e {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .backdrop-54b2 {
        font-size: clamp(0.875rem, 3.8vw, 1.125rem);
        padding-top: var(--space-4);
        padding-bottom: var(--space-4);
    }

    .motion-b03f .shade-simple-6b79 h2 {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .hidden_5e36 {
        flex-direction: column;
        gap: var(--space-2);
    }
}

.row-8065 {
    background-color: var(--surface-alt);
}

/* ============================================
   HIGHLIGHT BOXES - BLUF Format
   ============================================ */
.video-9ec3 {
    background-color: #fef3c7;
    border-left: 4px solid var(--brand-accent);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
    line-height: 1.75;
}

.video-9ec3 strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ============================================
   CHECKLISTS
   ============================================ */
.inner-4dd6 {
    list-style: none;
    margin-left: 0;
    margin-bottom: var(--space-6);
}

.inner-4dd6 li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
}

.inner-4dd6 li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: var(--text-xl);
}

/* ============================================
   DATA TABLES
   ============================================ */
.badge-light-e546, .wrapper_inner_fe51, .avatar_4519, .alert-4ac0 {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
    font-size: var(--text-sm);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.badge-light-e546 th,
.wrapper_inner_fe51 th,
.avatar_4519 th,
.alert-4ac0 th {
    background-color: var(--brand-primary);
    color: var(--text-inverse);
    font-weight: 600;
    text-align: left;
    padding: var(--space-3) var(--space-4);
}

.badge-light-e546 td,
.wrapper_inner_fe51 td,
.avatar_4519 td,
.alert-4ac0 td {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.badge-light-e546 tr:last-child td,
.wrapper_inner_fe51 tr:last-child td,
.avatar_4519 tr:last-child td,
.alert-4ac0 tr:last-child td {
    border-bottom: none;
}

.badge-light-e546 tbody tr:hover,
.wrapper_inner_fe51 tbody tr:hover,
.avatar_4519 tbody tr:hover,
.alert-4ac0 tbody tr:hover {
    background-color: var(--surface-alt);
}

.description_hovered_b502 {
    background-color: #fef3c7 !important;
}

/* Responsive tables */
@media (max-width: 768px) {
    .badge-light-e546, .wrapper_inner_fe51, .avatar_4519, .alert-4ac0 {
        font-size: var(--text-xs);
    }
    
    .badge-light-e546 th,
    .wrapper_inner_fe51 th,
    .avatar_4519 th,
    .alert-4ac0 th,
    .badge-light-e546 td,
    .wrapper_inner_fe51 td,
    .avatar_4519 td,
    .alert-4ac0 td {
        padding: var(--space-2);
    }
}

/* ============================================
   STATS GRID - Data Visualization
   ============================================ */
.wood_21b5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.logo-small-973b {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.logo-small-973b:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.gradient_cb52 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: var(--space-2);
}

.west-31d6 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.tooltip-9575 {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.title_05af {
    background-color: var(--surface-alt);
    border-left: 4px solid var(--brand-primary);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}

.description-2d90 {
    max-width: 720px;
    margin: var(--space-8) auto;
    padding: var(--space-6);
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.description-2d90 > h3 {
    text-align: center;
    margin-bottom: var(--space-6);
}

.description-2d90 h4,
.description-2d90 p,
.description-2d90 ul {
    text-align: left;
}

.description-2d90 ul {
    margin-bottom: var(--space-4);
}

.pattern_22db {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--space-6) auto 0;
    max-width: 600px;
    text-align: center;
}

.pattern_22db a {
    display: block;
    width: 100%;
    max-width: 600px;
}

.pattern_22db img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto var(--space-3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.header-tiny-ed6d {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-style: italic;
    line-height: 1.6;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.simple-d821 {
    background-color: #d1fae5;
    border: 2px solid var(--color-success);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
}

.tag_bottom_e7a5 {
    text-align: center;
    margin-bottom: var(--space-4);
}

.tag_bottom_e7a5 .short_d74b {
    font-size: var(--text-3xl);
    color: var(--brand-accent);
    margin: var(--space-2) 0;
}

.tag_bottom_e7a5 .carousel_0e90 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-success);
}

/* ============================================
   BONUS SECTION
   ============================================ */
.yellow-d0ed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    margin: var(--space-6) 0;
}

.gradient_7b71 {
    background-color: var(--surface-primary);
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.gradient_7b71:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.label-blue-813c {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: var(--space-3);
}

.list_black_deff {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: var(--space-2);
}

.button_db11 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: var(--space-4);
}

.bright-c5b9 {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-align: left;
}

.bright-c5b9 p {
    margin-bottom: var(--space-2);
}

.frame_under_e632 {
    background-color: #fef3c7;
    border: 2px solid var(--brand-accent);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
}

.frame_under_e632 strong {
    color: var(--text-primary);
}

.frame_under_e632 ul {
    margin-top: var(--space-3);
}

/* ============================================
   GAME REVIEWS
   ============================================ */
.input_pressed_61fe {
    background-color: var(--surface-alt);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    border: 1px solid var(--border-color);
}

.label_under_7375 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.label_under_7375 h4 {
    margin: 0;
    font-size: var(--text-2xl);
}

.gas-c0a9 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--brand-accent);
}

.focus_7e8d {
    margin: var(--space-6) auto;
    text-align: center;
    max-width: 600px;
}

.focus_7e8d a {
    display: inline-block;
}

.focus_7e8d img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.focus_7e8d .header-tiny-ed6d,
.focus_7e8d > p {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: var(--space-3);
    margin-bottom: 0;
}

.motion_b61a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-3);
    margin: var(--space-4) 0;
    padding: var(--space-4);
    background-color: var(--surface-primary);
    border-radius: var(--radius-md);
}

.link_42db {
    font-size: var(--text-sm);
}

.link_42db strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.backdrop-fluid-a70e {
    background-color: #dbeafe;
    border-left: 4px solid var(--brand-primary);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-top: var(--space-4);
}

.main-1b40 {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-4) 0;
}

.main-1b40 h4 {
    color: var(--brand-primary);
    margin-bottom: var(--space-3);
}

/* ============================================
   FAQ SECTION - Critical for 2026 SEO
   ============================================ */
.outer-3d6d {
    margin: var(--space-6) 0;
}

.box-cd80 {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.box-cd80:hover {
    box-shadow: var(--shadow-md);
}

.wide-2584 {
    background-color: var(--surface-alt);
    padding: var(--space-4);
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wide-2584::after {
    content: "▼";
    font-size: var(--text-sm);
    color: var(--brand-primary);
    transition: transform var(--transition-fast);
}

.box-cd80.fn-active-566a .wide-2584::after {
    transform: rotate(180deg);
}

.fast_fb36 {
    padding: var(--space-4);
    border-top: 1px solid var(--border-color);
}

.fast_fb36 p {
    margin-bottom: var(--space-3);
}

.fast_fb36 ul {
    margin-left: var(--space-5);
}

.fast_fb36 ol {
    margin-left: var(--space-5);
}

.photo-3727 {
    text-align: center;
    padding: var(--space-6);
    background-color: var(--surface-alt);
    border-radius: var(--radius-lg);
    margin-top: var(--space-6);
}

/* ============================================
   CTA ELEMENTS
   ============================================ */
.prev_7680 {
    text-align: center;
    margin: var(--space-8) 0;
}

.motion-b03f {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1e3a8a 100%);
    padding: var(--space-10) 0;
    text-align: center;
    color: var(--text-inverse);
}

.shade-simple-6b79 h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: var(--text-inverse);
}

.shade-simple-6b79 p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    opacity: 0.95;
    color: var(--text-inverse);
}

.hidden_5e36 {
    display: flex;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-4);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* ============================================
   BUTTONS - Modern, Accessible
   ============================================ */
.clean-1039 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-family: var(--font-sans);
    line-height: 1.35;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    text-align: center;
}

.iron_87dd {
    background-color: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
}

.iron_87dd:hover {
    background-color: var(--brand-primary);
    color: var(--text-inverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.lower_aa8d {
    background-color: var(--brand-primary);
    color: var(--text-inverse);
}

.lower_aa8d:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.progress_inner_3af1 {
    background-color: var(--color-success);
    color: var(--text-inverse);
}

.progress_inner_3af1:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.dropdown-soft-983e {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.backdrop-54b2 {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
    background-color: var(--brand-accent);
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    max-width: min(100%, 520px);
}

.backdrop-54b2:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
}

/* ============================================
   FOOTER - Trust Signals
   ============================================ */
.title-bright-4751 {
    background-color: var(--surface-dark);
    color: var(--text-inverse);
    padding: var(--space-10) 0 var(--space-6);
    border-top: 1px solid var(--neutral-700);
}

.small_3fb0 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.section_mini_d0fe img {
    margin-bottom: var(--space-3);
}

.section_mini_d0fe p {
    color: var(--neutral-400);
    font-size: var(--text-sm);
}

.tabs-5c55 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.accordion_fast_ca12 h4 {
    color: var(--text-inverse);
    font-size: var(--text-base);
    margin-bottom: var(--space-3);
}

.accordion_fast_ca12 a {
    display: block;
    color: var(--neutral-400);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    transition: color var(--transition-fast);
}

.accordion_fast_ca12 a:hover {
    color: var(--brand-accent);
}

.stone_11b8 {
    text-align: center;
    padding: var(--space-6) 0;
    border-top: 1px solid var(--neutral-700);
    border-bottom: 1px solid var(--neutral-700);
    margin-bottom: var(--space-6);
}

.pagination_hot_150b {
    display: flex;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-3);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: var(--neutral-400);
}

.menu-5630 {
    font-size: var(--text-sm);
    color: var(--neutral-400);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.menu-5630 strong {
    color: var(--text-inverse);
}

.menu-5630 a {
    color: var(--brand-accent);
}

.right_c48f {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--neutral-500);
    padding-top: var(--space-6);
    border-top: 1px solid var(--neutral-700);
}

@media (max-width: 1024px) {
    .small_3fb0 {
        grid-template-columns: 1fr;
    }
    
    .tabs-5c55 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tabs-5c55 {
        grid-template-columns: 1fr;
    }
    
    .pagination_hot_150b {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   LEGAL SECTIONS
   ============================================ */
.bronze-9e81 {
    padding: var(--space-10) 0;
    background-color: var(--surface-alt);
}

.status_9772 {
    max-width: 800px;
    margin: 0 auto;
}

.status_9772 h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
}

.status_9772 h3 {
    font-size: var(--text-2xl);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.status_9772 p {
    margin-bottom: var(--space-4);
    line-height: 1.75;
}

.status_9772 ul {
    margin-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.status_9772 li {
    margin-bottom: var(--space-2);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.simple_8396 {
    text-align: center;
}

.motion_5f7b {
    margin-top: var(--space-4);
}

.prev-b56e {
    margin-bottom: var(--space-4);
}

.thumbnail_91ba {
    margin-bottom: var(--space-5);
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
/* Reduce layout shift */
img[width][height] {
    height: auto;
}

/* GPU acceleration for animations */
.clean-1039, .logo-small-973b, .gradient_7b71, .box-cd80 {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize font loading */
@media screen and (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.avatar-deda {
    max-width: 720px;
    margin: var(--space-8) auto;
    padding: var(--space-6);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.avatar-deda > h3 {
    text-align: center;
    margin-bottom: var(--space-5);
    font-size: var(--text-2xl);
}

.avatar-deda > p:first-of-type {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.avatar-deda h4 {
    margin-top: var(--space-5);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    text-align: center;
}

.avatar-deda p {
    text-align: center;
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.avatar-deda .prev_7680 {
    text-align: center;
}

@media (max-width: 768px) {
    .avatar-deda {
        padding: var(--space-4);
        margin: var(--space-6) auto;
    }
}

/* ============================================
   E-E-A-T ENHANCED ELEMENTS (2026 SEO)
   ============================================ */

/* Article Metadata Box */
.link-4c03 {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: var(--space-5) 0;
    margin-bottom: var(--space-6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.active_active_bd7b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    max-width: 1000px;
    margin: 0 auto;
}

.layout-ba32 {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 3px solid var(--brand-primary);
}

.preview_61f1 {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.caption_b975 strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.caption_b975 p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Article Feedback Section */
.grid-lower-472f {
    background-color: var(--surface-alt);
    margin: 0;
}

.grid-lower-472f.simple-8344 {
    padding: var(--space-10) 0;
}

.row_9217 {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-6);
    text-align: center;
}

.menu_up_d8a9 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.text_basic_6d70 {
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
}

.footer_86d7 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}

.frame-61dd {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 180px;
    font-family: inherit;
}

.frame-61dd.button-purple-4d0b {
    border: 2px solid #4caf50;
    background: var(--surface-primary);
    color: #4caf50;
}

.frame-61dd.notice_5513 {
    border: 2px solid #ff6b35;
    background: var(--surface-primary);
    color: #ff6b35;
}

.frame-61dd:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.frame-61dd.button-purple-4d0b:hover {
    background: #4caf50;
    color: var(--text-inverse);
}

.frame-61dd.notice_5513:hover {
    background: #ff6b35;
    color: var(--text-inverse);
}

.paragraph-black-a667 {
    text-align: center;
    padding: var(--space-5);
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: var(--space-5);
}

.active_4e9b {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--text-base);
}

.wood_51ec {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.north-a9e5 {
    min-width: 120px;
}

.north-a9e5 strong {
    display: block;
    font-size: var(--text-3xl);
    color: var(--brand-primary);
    line-height: 1.2;
    margin-bottom: var(--space-1);
}

.north-a9e5:nth-child(2) strong {
    color: #4caf50;
}

.north-a9e5:nth-child(3) strong {
    color: var(--brand-accent);
}

.north-a9e5 span {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.column-pink-8fd2 {
    padding: var(--space-4);
    background: #e3f2fd;
    border-radius: var(--radius-lg);
    border: 1px solid #bbdefb;
}

.alert-6398 {
    font-size: var(--text-sm);
    color: #1565c0;
    margin-bottom: var(--space-2);
}

.row-glass-1f61 {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

.row-glass-1f61 a {
    color: #1976d2;
    text-decoration: underline;
    font-weight: 600;
}

.row-glass-1f61 a:hover {
    color: #0d47a1;
}

/* Data Verification Badges */
.notification_dynamic_94fd {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-2);
    background: #e8f5e9;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #2e7d32;
    margin-left: var(--space-2);
}

.notification_dynamic_94fd::before {
    content: "✓";
    font-weight: bold;
    color: #4caf50;
}

/* Editorial Note / Transparency Disclaimer */
.logo_inner_48b9 {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #ff6f00;
    padding: var(--space-5);
    margin: var(--space-6) 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 111, 0, 0.1);
}

.logo_inner_48b9 strong {
    color: #e65100;
    font-size: 1.05rem;
}

/* Verification Note */
.tag_white_eb38 {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: var(--space-4);
    margin: var(--space-5) 0;
    border-radius: 6px;
}

.tag_white_eb38 p {
    margin-bottom: var(--space-3);
}

.tag_white_eb38 em {
    color: #2e7d32;
    font-weight: 500;
}

/* Pros and Cons Grid */
.prev-1d70 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin: var(--space-6) 0;
}

.up_6893,
.content_cool_fc93 {
    padding: var(--space-5);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.up_6893 {
    background: linear-gradient(to bottom, #f1f8f4, #ffffff);
    border: 2px solid #4caf50;
}

.content_cool_fc93 {
    background: linear-gradient(to bottom, #fff8f5, #ffffff);
    border: 2px solid #ff9800;
}

.up_6893 h4 {
    color: #2e7d32;
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.content_cool_fc93 h4 {
    color: #e65100;
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.up_6893 ul,
.content_cool_fc93 ul {
    list-style: none;
    padding: 0;
}

.up_6893 li,
.content_cool_fc93 li {
    margin-bottom: var(--space-4);
    padding-left: var(--space-3);
    line-height: 1.7;
}

.up_6893 li::before {
    content: "✓ ";
    color: #4caf50;
    font-weight: bold;
    margin-right: var(--space-2);
}

.content_cool_fc93 li::before {
    content: "⚠ ";
    margin-right: var(--space-2);
}

/* Timeline for Experience Section */
.feature_clean_0120 {
    position: relative;
    margin: var(--space-8) 0;
    padding-left: var(--space-6);
}

.feature_clean_0120::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-primary), var(--brand-accent));
}

.motion_a685 {
    position: relative;
    margin-bottom: var(--space-8);
    padding-left: var(--space-6);
}

.motion_a685::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--brand-primary);
    z-index: 2;
}

.aside_west_a858 {
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.chip_73c7 {
    background: #fff;
    padding: var(--space-5);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.chip_73c7 h4 {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: var(--space-3);
}

.chip_73c7 p {
    margin-bottom: var(--space-3);
    line-height: 1.7;
}

.chip_73c7 strong {
    color: var(--brand-primary);
}

/* Key Findings Box */
.image_c8b1 {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: var(--space-6);
    border-radius: 12px;
    margin: var(--space-6) 0;
    border-left: 5px solid #1976d2;
}

.image_c8b1 h3 {
    color: #0d47a1;
    margin-bottom: var(--space-4);
}

.image_c8b1 ul {
    list-style: none;
    padding: 0;
}

.image_c8b1 li {
    padding: var(--space-3);
    margin-bottom: var(--space-2);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    line-height: 1.7;
}

/* Responsible Gaming Warning Section */
.widget-lite-223a h3 {
    margin-top: var(--space-5);
    margin-bottom: var(--space-3);
}

.widget-lite-223a ul {
    margin: var(--space-3) 0;
}

.dynamic-c852 {
    margin: var(--space-5) 0;
}

.focused-da35 {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .prev-1d70 {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .feature_clean_0120 {
        padding-left: var(--space-4);
    }
    
    .motion_a685 {
        padding-left: var(--space-4);
    }
    
    .motion_a685::before {
        left: -28px;
        width: 12px;
        height: 12px;
    }
    
    .logo_inner_48b9,
    .tag_white_eb38,
    .chip_73c7,
    .image_c8b1,
    .dynamic-c852,
    .description-2d90 {
        padding: var(--space-4);
    }
    
    .description-2d90 {
        margin: var(--space-6) auto;
    }
    
    .widget-lite-223a h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    .widget-lite-223a h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    /* Metadata Box Mobile */
    .active_active_bd7b {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .layout-ba32 {
        padding: var(--space-3);
    }
    
    .preview_61f1 {
        font-size: 1.25rem;
    }
    
    /* Feedback Section Mobile */
    .footer_86d7 {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .frame-61dd {
        width: 100%;
        max-width: 100%;
    }
    
    .wood_51ec {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .north-a9e5 {
        width: 100%;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .focused_0519,
    .soft-bc62,
    .next_6c4e,
    .prev_7680,
    .motion-b03f,
    .picture_old_2b3c {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
}

/* ============================================
   VIP PAGE
   ============================================ */
.simple-8344 .disabled-a2fb {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 800px;
}

.content-static-dcef {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.highlight-1389 {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--border-color);
}

.highlight-1389 h3 {
    margin-bottom: var(--space-2);
}

.gallery_cd67 {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin: 0;
}

.background_down_2a15 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.backdrop-0068 {
    text-align: center;
    padding: var(--space-4);
    background: var(--surface-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.backdrop-0068 .row-9268 {
    display: block;
    font-size: 2rem;
    margin-bottom: var(--space-2);
}

.backdrop-0068 h4 {
    font-size: var(--text-sm);
    margin: 0;
    color: var(--text-primary);
}

.content-static-dcef > p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.accordion_out_be2f {
    margin-top: var(--space-6);
}

.photo-west-9399 {
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--surface-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-primary);
}

.photo-west-9399 h4 {
    margin-top: 0;
}

.simple-8344 .focus_7e8d {
    margin: var(--space-6) auto;
}

.simple-8344 .focus_7e8d img,
.simple-8344 .tag_7c85 {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature_focused_7028 {
    background: linear-gradient(135deg, var(--surface-secondary) 0%, var(--surface-primary) 100%);
    padding: var(--space-10) 0;
}

.shade-fda9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.label-simple-f419 {
    text-align: center;
    padding: var(--space-5);
    background: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.label-simple-f419 .light_2558 {
    display: block;
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
}

.label-simple-f419 h4 {
    margin-bottom: var(--space-2);
}

.filter_13da {
    padding: var(--space-10) 0;
    background-color: var(--surface-secondary);
}

.filter_13da h2 {
    text-align: center;
    margin-bottom: var(--space-6);
}

.narrow_5453 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}

.center-41d7 {
    text-align: center;
    padding: var(--space-5);
    background: var(--surface-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.center-41d7 .left_e357 {
    display: block;
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
}

.easy-7946 {
    padding: var(--space-10) 0;
}

.easy-7946 h2 {
    text-align: center;
    margin-bottom: var(--space-6);
}

.hero-motion-4fa9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-5);
}

.selected-cd05 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-5);
    background: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.selected-cd05:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.selected-cd05 .south-6fb5 {
    display: block;
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
}

.selected-cd05 h4 {
    color: var(--brand-primary);
    margin-bottom: var(--space-2);
}

.selected-cd05 p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin: 0;
}

.next_8f90 {
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a365d 100%);
    border-radius: var(--radius-lg);
    color: var(--text-inverse);
}

.next_8f90 h3,
.next_8f90 p {
    color: var(--text-inverse);
}

.next_8f90 .clean-1039 {
    margin-top: var(--space-4);
}

@media (max-width: 640px) {
    .background_down_2a15 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   WIN PAGE - Success Stories
   ============================================ */
.panel-copper-71dc {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.panel-copper-71dc.stale-c521 {
    border: 2px solid var(--brand-accent);
    background: linear-gradient(135deg, var(--surface-primary) 0%, #fffbf0 100%);
}

.hero-230d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.hero-230d h3 {
    margin: 0;
    color: var(--text-primary);
}

.modal-simple-6a9a {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background-color: #4caf50;
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.rough_6d18 {
    margin-bottom: var(--space-6);
}

.icon_bright_5f54 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background-color: var(--surface-secondary);
    border-radius: var(--radius-md);
}

.prev-3ef0 {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.frame-gas-6d3c {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.dirty_f5da {
    font-size: var(--text-base);
    color: var(--text-primary);
    font-weight: 700;
}

.rough_6d18 p {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.rough_6d18 p:last-child {
    margin-bottom: 0;
}

.element_advanced_4882 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-5);
    margin: var(--space-6) 0;
}

.article-ac2b {
    text-align: center;
    padding: var(--space-5);
    background: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.article-ac2b:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-ac2b h4 {
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.pagination_lower_80a1 {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a365d 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.article-ac2b p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-230d {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .icon_bright_5f54 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .element_advanced_4882 {
        grid-template-columns: 1fr;
    }
}
/* css-noise: c9ad */
.phantom-card-o0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
