/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.popup_e4ad {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.popup_e4ad:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.image_fresh_1b60 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .image_fresh_1b60 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .image_fresh_1b60 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.selected_b829):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.selected_b829,
header,
.filter-bbd1,
.mask-dbd3,
.texture_18d4,
.avatar-4d06,
.middle-1115,
.current-9386,
.full_f782 {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.selected_b829 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.picture_dim_706f {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.selected_b829.wood-e2ca {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.accent_smooth_5bfa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.heading-current-7f0d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.tertiary_84ce img {
  height: 36px;
  width: auto;
  display: block;
}

.wrapper_afdc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.column_fa8b {
  flex: 1;
}

.card_dae4 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.easy_a974 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.easy_a974:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.easy_a974.fn-active-f6f7 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.search-action-8e20 {
  position: relative;
}

.element_798e {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.element_798e svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.search-action-8e20:hover .element_798e svg,
.element_798e[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.static_f355 {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.search-action-8e20:hover .static_f355 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.static_f355::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.feature-7dd1 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.feature-7dd1:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.feature-7dd1[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.banner-middle-0b91 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.motion-70f9 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.motion-70f9:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.motion-70f9 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.modal-92c8 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.modal-92c8:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.modal-92c8 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.accent-a145 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.out-fe2a {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.accent-a145[aria-expanded="true"] .out-fe2a:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.accent-a145[aria-expanded="true"] .out-fe2a:nth-child(2) {
  opacity: 0;
}

.accent-a145[aria-expanded="true"] .out-fe2a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .column_fa8b {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .column_fa8b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .column_fa8b.solid-9d2e {
    display: block;
    right: 0;
  }
  
  .card_dae4 {
    flex-direction: column;
    gap: 0;
  }
  
  .easy_a974 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .column_fa8b::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .column_fa8b.solid-9d2e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .column_fa8b {
    display: none;
  }
  
  .accent-a145 {
    display: flex;
  }
  
  .wrapper_afdc {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .motion-70f9,
  .modal-92c8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .search-action-8e20 {
    position: relative;
  }
  
  .static_f355 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .element_798e[aria-expanded="true"] + .static_f355 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .feature-7dd1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .banner-middle-0b91 {
    gap: 8px;
  }
  
  .motion-70f9 {
    display: none;
  }
  
  .modal-92c8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tertiary_84ce img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .modal-92c8 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .modal-92c8 svg {
    width: 14px;
    height: 14px;
  }
  
  .accent_smooth_5bfa {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.filter-bbd1 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.outer_9bbf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.column-b4fc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.column-b4fc svg {
  flex-shrink: 0;
}

.column-b4fc a {
  color: var(--color-primary);
  text-decoration: none;
}

.column-b4fc a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .outer_9bbf {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.mask-dbd3 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hidden_8acd {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .hidden_8acd {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.summary_4e13 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.summary_4e13 a {
  color: var(--color-primary);
  text-decoration: none;
}

.summary_4e13 a:hover {
  text-decoration: underline;
}

.down-50ba {
  color: var(--color-text-lighter);
}

.picture-hard-e0bd {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .picture-hard-e0bd {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .picture-hard-e0bd {
    font-size: 1.5rem;
  }
}

.hovered-3070 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.block-b693 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .block-b693 {
    grid-template-columns: 1fr;
  }
}

.hidden-easy-99da {
  display: flex;
  gap: var(--space-sm);
}

.primary-6eb9 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.primary_cool_3de0 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.primary_cool_3de0 strong {
  font-weight: 600;
  color: var(--color-text);
}

.primary_cool_3de0 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.focused_eda2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.accent-inner-23f1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_down_feaf {
  position: relative;
  text-align: center;
}

.section_down_feaf img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.fluid_d84e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.filter-b0b2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.disabled-soft-e1f7 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.menu_5717 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.notice_east_38da {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.under_e86e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .hidden_8acd {
    grid-template-columns: 1fr;
  }
  
  .picture-hard-e0bd {
    font-size: 1.75rem;
  }
  
  .accent-inner-23f1 {
    order: -1;
    max-width: 100%;
  }
  
  .section_down_feaf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .picture-hard-e0bd {
    font-size: 1.5rem;
  }
  
  .hovered-3070 {
    font-size: 1rem;
  }
  
  .summary_4e13 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .section_down_feaf {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.tertiary_silver_89ad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.main-inner-1e90 {
  background: var(--color-primary);
  color: white;
}

.main-inner-1e90:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cool-bf6a {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.cool-bf6a:hover {
  background: var(--color-primary);
  color: white;
}

.notification-current-4f65 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.notification-current-4f65:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.detail-soft-e24e {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.slow-2880 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.texture_18d4 {
  padding: var(--space-xl) 0;
  background: white;
}

.highlight-hot-696a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.plasma-5293 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.plasma-5293:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.alert-full-9c64 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.border-e0e9 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.prev-e941 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.avatar-4d06 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.tertiary_75e6 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.content-east-2415 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.focus-19d4 {
  list-style: none;
  counter-reset: toc-counter;
}

.focus-19d4 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.focus-19d4 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.focus-19d4 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.focus-19d4 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.middle-1115 {
  padding: var(--space-xxl) 0;
}

.aside_hard_acd3 {
  background: var(--color-bg-section);
}

.slider_d9b4 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.silver_118c {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.dark-6127 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.backdrop_b8e3 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.panel-633f {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .panel-633f {
    grid-template-columns: 1fr 300px;
  }
}

.status_cool_871c {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.status_cool_871c img {
  max-width: 100%;
  height: auto;
  display: block;
}

.status_cool_871c pre,
.status_cool_871c code {
  overflow-x: auto;
  max-width: 100%;
}

.status_cool_871c h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.status_cool_871c h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.status_cool_871c h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.status_cool_871c p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.status_cool_871c ul,
.status_cool_871c ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.status_cool_871c li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.status_cool_871c strong {
  font-weight: 600;
  color: var(--color-text);
}

.status_cool_871c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.status_cool_871c a:hover {
  color: var(--color-primary-dark);
}

.left-a372 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.left-a372 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.left-a372 li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .panel-633f {
    grid-template-columns: 1fr;
  }
  
  .dark-6127 {
    font-size: 1.75rem;
  }
  
  .status_cool_871c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dark-6127 {
    font-size: 1.5rem;
  }
  
  .status_cool_871c h3 {
    font-size: 1.375rem;
  }
  
  .status_cool_871c h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.text_b925 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.simple-2978 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.bronze_e560 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.shade-f655 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.section-4e97 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.large-61d7 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.black-ddda {
  flex-shrink: 0;
}

.solid-3054 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.background-pressed-0c76 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .background-pressed-0c76 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.card_narrow_586f,
.panel-hard-b42b,
.search-outer-bf52 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card_narrow_586f thead,
.panel-hard-b42b thead {
  background: var(--color-primary);
  color: white;
}

.card_narrow_586f th,
.card_narrow_586f td,
.panel-hard-b42b th,
.panel-hard-b42b td,
.search-outer-bf52 th,
.search-outer-bf52 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .card_narrow_586f th,
  .card_narrow_586f td,
  .panel-hard-b42b th,
  .panel-hard-b42b td,
  .search-outer-bf52 th,
  .search-outer-bf52 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .card_narrow_586f,
  .panel-hard-b42b,
  .search-outer-bf52 {
    min-width: 600px;
  }
}

.card_narrow_586f th,
.panel-hard-b42b th,
.search-outer-bf52 th {
  font-weight: 600;
}

.card_narrow_586f tbody tr:hover,
.panel-hard-b42b tbody tr:hover,
.search-outer-bf52 tbody tr:hover {
  background: var(--color-bg-alt);
}

.border_short_ba9b {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.pro_565a {
  position: sticky;
  top: 80px;
  align-self: start;
}

.first_366d {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.first_366d h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.picture_south_3f05 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.picture_south_3f05 h4 {
  color: white;
}

.overlay-6a9d {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.heading_5bab {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.heading_5bab:last-child {
  border-bottom: none;
}

.heading_5bab dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.heading_5bab dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.full-569a {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.item_orange_02df {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.item_orange_02df:hover {
  text-decoration: underline;
}

.frame_gold_cb81 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.paper_aa87 {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.paper_aa87 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.menu_4179 {
  font-weight: 600;
  color: white;
}

.backdrop_25c6 {
  list-style: none;
  padding: 0;
}

.backdrop_25c6 li {
  padding: var(--space-xs) 0;
}

.item_wide_6fd8 {
  color: #4caf50;
}

.out_34eb {
  color: #ff9800;
}

.heading-6717 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.orange-af0f {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.light-8c49 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.backdrop_28a4 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.static-3da1 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.list-029e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.focused-7947 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .focused-7947 {
    grid-template-columns: 1fr;
  }
}

.hot_6619 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.hot_6619:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wrapper-narrow-5dc5 {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

.hot_6619 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hot_6619 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.fluid_ae46 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.menu_4179 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.menu-5b4f {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.heading-focused-5c7f {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.heading-focused-5c7f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.panel_98c4 {
  max-width: 900px;
  margin: 0 auto;
}

.article-north-3d7d {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.up-8603 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .up-8603 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.current_a37e {
  margin-top: var(--space-xxl);
}

.current_a37e h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.upper-8adb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .upper-8adb {
    grid-template-columns: 1fr;
  }
}

.chip-2782 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.logo_prev_ea3a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.surface_f589 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.chip-2782 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.chip-2782 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.chip-2782 li {
  padding: var(--space-xs) 0;
  color: white;
}

.chip-2782 .tertiary_silver_89ad {
  width: 100%;
  background: white;
}

.logo_prev_ea3a .tertiary_silver_89ad {
  color: #667eea;
}

.surface_f589 .tertiary_silver_89ad {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.article-fast-2ecb {
  max-width: 900px;
  margin: 0 auto;
}

.west_e04a {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.carousel_b47d {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.element-d303 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.carousel_b47d h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.surface_next_13bc {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .carousel_b47d {
    padding: var(--space-md);
  }
  
  .surface_next_13bc {
    padding: var(--space-md);
  }
  
  .accordion-eead {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.steel-2c41 ol,
.steel-2c41 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.steel-2c41 li {
  margin-bottom: var(--space-sm);
}

.steel-2c41 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.box_0286 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.up-3d2f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.accordion-eead {
  margin-top: var(--space-lg);
  text-align: center;
}

.accordion-eead img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.modal_copper_1a77,
.texture-gas-161b,
.button_gold_6507,
.box-9db8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.input_fresh_c701 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.tall-b13b {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.secondary_advanced_1264 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .secondary_advanced_1264 {
    font-size: 0.625rem;
  }
}

.summary_47d6 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.summary_47d6:hover {
  background: var(--color-primary-dark);
}

.dim-7c97 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.dim-7c97 h4 {
  margin-bottom: var(--space-md);
}

.primary-ff01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.accent_cold_45ff {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.dirty_3d39 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .dirty_3d39 {
    grid-template-columns: 1fr;
  }
}

.media_36c3 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.stale_7dd0 {
  border-color: var(--color-success);
}

.medium_0485 {
  border-color: var(--color-warning);
}

.menu_green_935e {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.stale_7dd0 .menu_green_935e {
  background: #e8f5e9;
  color: var(--color-success);
}

.medium_0485 .menu_green_935e {
  background: #fff3e0;
  color: var(--color-warning);
}

.media_36c3 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.media_36c3 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.logo-d901 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.list-bd21 {
  margin: var(--space-xxl) 0;
}

.list-bd21 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.list-bd21 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.hard-ca57 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .hard-ca57 {
    grid-template-columns: 1fr;
  }
}

.hero-right-97d2 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-right-97d2 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.box-5215 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.box-5215 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.notification-52a2 {
  margin-top: var(--space-xxl);
}

.plasma_343a {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hot-297f {
  text-align: center;
}

.hard_bdfc {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.active-in-aa11 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.hard_bdfc .menu_4179 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.primary-fixed-8810 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.east-fc85 p {
  margin-bottom: var(--space-md);
}

.tabs-hovered-ef21 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .plasma_343a {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.summary-wide-7e9d {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.outline_04bb {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.shadow_d5af {
  margin-bottom: var(--space-xl);
}

.lower-ff2f {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.footer_c2e2 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.notice-9764 {
  color: var(--color-text-light);
}

.banner_00e1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tertiary_old_fae8 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.easy-0731 {
  font-weight: 600;
  color: var(--color-text);
}

.pattern_hovered_0e9e {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.warm_6a7e {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.picture_white_3e62 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.widget_orange_1578 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.text_outer_b40c {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.outer-db8a {
  border: 2px solid #4caf50;
}

.dropdown-over-7682 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.summary-full-521c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.background_narrow_68a3 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.row_c814 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hidden-26ec {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.component-cool-e1ce {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.text_focused_a321 {
  text-align: right;
}

.text_focused_a321 .frame-new-78b2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.soft_048f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hover_large_4100 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.hover_large_4100 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.purple_5c74 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.menu-fast-f029 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.component-8b1f {
  background: #e8f5e9;
  color: #2e7d32;
}

.summary_cdb0 {
  background: #e3f2fd;
  color: #1565c0;
}

.advanced_3cd7 {
  background: #fff3e0;
  color: #e65100;
}

.background-721f {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.background-721f span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.paper_8e36 {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.paper_8e36:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.background-6225 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.glass-3031 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.glass-3031 strong {
  color: var(--color-primary);
}

.summary-4921 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.preview_c642 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.panel_dark_10b9 {
  max-width: 900px;
  margin: 0 auto;
}

.sort-bottom-da9f {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.primary-a574 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.primary-a574:hover {
  background: var(--color-bg-alt);
}

.gallery_up_96ac {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.primary-a574[aria-expanded="true"] .gallery_up_96ac {
  transform: rotate(180deg);
}

.picture-simple-fd74 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.picture-simple-fd74 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.picture-simple-fd74 ul,
.picture-simple-fd74 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.picture-simple-fd74 li {
  margin-bottom: var(--space-xs);
}

.brown-9024 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.link-2f17 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.brown-9024 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.texture-simple-ad53 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.focus-smooth-412b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.carousel_upper_9fb0 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.hovered-1e91 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.box_narrow_83bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .box_narrow_83bd {
    grid-template-columns: 1fr;
  }
}

.white_2d10,
.paper_30a2 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.white_2d10 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.paper_30a2 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.white_2d10 h4,
.paper_30a2 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.white_2d10 ul,
.paper_30a2 ul {
  list-style: none;
  padding: 0;
}

.white_2d10 li,
.paper_30a2 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.hover-afe3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .hover-afe3 {
    grid-template-columns: 1fr;
  }
}

.info-fixed-e3e9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.fixed-769f {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.center_29b3 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.info-fixed-e3e9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.info-fixed-e3e9 ul {
  list-style: none;
  padding: 0;
}

.info-fixed-e3e9 li {
  padding: var(--space-xs) 0;
  color: white;
}

.title-dynamic-7b6e {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.title-dynamic-7b6e h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.title-dynamic-7b6e p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.pink-79cd {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.slider-0aec {
  font-style: italic;
}

.sort_668b {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.tooltip_377d {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.tooltip_377d h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.tooltip_377d p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.photo_c36e {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.current-9386 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.border_center_9c12 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.filter-green-e61a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .filter-green-e61a {
    grid-template-columns: 1fr;
  }
}

.silver_a46f {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.silver_a46f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.grid-fluid-7327 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.silver_a46f h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.silver_a46f p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.full_f782 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.column_yellow_74f6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.grid-black-3a46 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.avatar-tiny-0ee5 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.avatar-tiny-0ee5 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.wrapper-static-e838 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wrapper-static-e838 li {
  margin-bottom: var(--space-xs);
}

.wrapper-static-e838 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.wrapper-static-e838 a:hover {
  color: white;
}

.primary-fast-45a9 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.primary-fast-45a9 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.primary-fast-45a9 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.wrapper_e334 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.wrapper_e334 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.wrapper_e334 a:hover {
  color: white;
}

.out-7bf7 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .column_yellow_74f6,
  .grid-black-3a46 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.silver-d686 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.status-advanced-50ff p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.action_29e5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.action_29e5 .hidden-easy-99da {
  color: #4caf50;
  font-size: 0.875rem;
}

.focused_bff2 {
  list-style: none;
  padding: 0;
}

.focused_bff2 li {
  margin-bottom: var(--space-xs);
}

.focused_bff2 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.focused_bff2 a:hover {
  color: white;
}

.clean_5f52 {
  list-style: none;
  padding: 0;
}

.clean_5f52 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.clean_5f52 a {
  color: #b0b0b0;
  text-decoration: none;
}

.clean_5f52 a:hover {
  color: white;
}

.out-7bf7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.next-3743 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.next-3743 a {
  color: #4caf50;
  text-decoration: none;
}

.notice-df6d {
  font-size: 0.75rem;
  color: #666666;
}

.icon-0e95 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.icon-0e95 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.icon-0e95 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.accordion_9ae2 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.accordion_9ae2:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .out-7bf7 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .picture-hard-e0bd {
    font-size: 2rem;
  }
  
  .dark-6127 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hidden_8acd,
  .panel-633f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focused-7947,
  .dirty_3d39,
  .upper-8adb,
  .hard-ca57,
  .box_narrow_83bd,
  .hover-afe3,
  .filter-green-e61a,
  .column_yellow_74f6,
  .grid-black-3a46 {
    grid-template-columns: 1fr;
  }
  
  .highlight-hot-696a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .middle-1115 {
    padding: var(--space-lg) 0;
  }
  
  .focus-19d4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .focus-19d4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tertiary_silver_89ad {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .highlight-hot-696a {
    grid-template-columns: 1fr;
  }
  
  .focused_eda2,
  .photo_c36e,
  .primary-ff01 {
    flex-direction: column;
    width: 100%;
  }
  
  .detail-soft-e24e,
  .slow-2880,
  .focused_eda2 .tertiary_silver_89ad,
  .photo_c36e .tertiary_silver_89ad {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .picture-hard-e0bd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dark-6127 {
    font-size: 1.375rem;
  }
  
  .alert-full-9c64 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .plasma-5293,
  .hot_6619,
  .first_366d,
  .text_outer_b40c,
  .west_e04a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .secondary_advanced_1264 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .outer_9bbf {
    gap: var(--space-xs);
  }
  
  .column-b4fc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .paper_aa87 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hard_bdfc {
    width: 150px;
    height: 150px;
  }
  
  .active-in-aa11 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .selected_b829,
  .filter-bbd1,
  .focused_eda2,
  .tooltip_377d,
  .current-9386,
  .full_f782,
  .accent-a145 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .middle-1115 {
    page-break-inside: avoid;
  }
}

/* css-noise: 5cc0 */
.widget-item-i9 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.2;
}
