/* ============================================
   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-b575 {
  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-b575:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .backdrop-hovered-566b {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .backdrop-hovered-566b {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.form_2daf,
header,
.steel_dba6,
.item-f52b,
.red_eadb,
.footer-bronze-6cf2,
.preview_gold_a0b7,
.dynamic_c764,
.modal_678a {
  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
   ============================================ */
.form_2daf {
  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);
}

.form-first-e6cd {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.form_2daf.photo-93c2 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.carousel-pro-57d2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.background-9580 img {
  height: 36px;
  width: auto;
  display: block;
}

.shade-0a2f {
  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;
}

.accent-2ffa {
  flex: 1;
}

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

.container_9ee9 {
  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);
}

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

.container_9ee9.fn-active-164b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.progress_39ab {
  position: relative;
}

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

.up-0b8b svg {
  transition: transform 0.2s ease;
}

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

.info-39ef {
  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;
}

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

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

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

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

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

.lite_2b6e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.card_prev_8715 {
  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;
}

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

.card_prev_8715 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.gas_c4c1 {
  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;
}

.gas_c4c1: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);
}

.gas_c4c1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.copper-9891[aria-expanded="true"] .sidebar-c81a:nth-child(2) {
  opacity: 0;
}

.copper-9891[aria-expanded="true"] .sidebar-c81a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .accent-2ffa {
    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 */
  }

  .accent-2ffa::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .accent-2ffa.video_stale_dd86 {
    display: block;
    right: 0;
  }
  
  .tall_dab2 {
    flex-direction: column;
    gap: 0;
  }
  
  .container_9ee9 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .accent-2ffa::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;
  }
  
  .accent-2ffa.video_stale_dd86::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .accent-2ffa {
    display: none;
  }
  
  .copper-9891 {
    display: flex;
  }
  
  .shade-0a2f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .card_prev_8715,
  .gas_c4c1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .progress_39ab {
    position: relative;
  }
  
  .info-39ef {
    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;
  }
  
  .up-0b8b[aria-expanded="true"] + .info-39ef {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .up_173c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .lite_2b6e {
    gap: 8px;
  }
  
  .card_prev_8715 {
    display: none;
  }
  
  .gas_c4c1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .background-9580 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .gas_c4c1 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .gas_c4c1 svg {
    width: 14px;
    height: 14px;
  }
  
  .container-right-165e {
    gap: var(--space-sm);
  }
}

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

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

.gold-eda4 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gold-eda4 svg {
  flex-shrink: 0;
}

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

.gold-eda4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.info-4982 {
  color: var(--color-text-lighter);
}

.outline_next_91ac {
  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) {
  .outline_next_91ac {
    font-size: 2rem;
  }
}

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

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

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

@media (max-width: 768px) {
  .menu-rough-3b9d {
    grid-template-columns: 1fr;
  }
}

.message-42e9 {
  display: flex;
  gap: var(--space-sm);
}

.accent-hard-09b1 {
  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;
}

.nav-warm-800c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-warm-800c strong {
  font-weight: 600;
  color: var(--color-text);
}

.nav-warm-800c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.notice-98f5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.preview-thick-8bab {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .module-92c0 {
    grid-template-columns: 1fr;
  }
  
  .outline_next_91ac {
    font-size: 1.75rem;
  }
  
  .notice-98f5 {
    order: -1;
    max-width: 100%;
  }
  
  .narrow_10b1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .outline_next_91ac {
    font-size: 1.5rem;
  }
  
  .hard_43f0 {
    font-size: 1rem;
  }
  
  .overlay_soft_d9b9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .narrow_10b1 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.top_7830 {
  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;
}

.table-c17b {
  background: var(--color-primary);
  color: white;
}

.table-c17b:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.tiny_9c5c {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

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

.modal_white_54de {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.footer-1e3f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.footer-bronze-6cf2 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

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

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

.wrapper_a80b {
  list-style: none;
  counter-reset: toc-counter;
}

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

.wrapper_a80b 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);
}

.wrapper_a80b 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;
}

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

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

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

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

.badge_7475 {
  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);
}

.table_south_4d63 {
  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);
}

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

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

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

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

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

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

.chip_brown_b4ab 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);
}

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

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

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

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

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

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

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

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

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

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

.lite_ae76 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) {
  .notice_white_269e {
    grid-template-columns: 1fr;
  }
  
  .table_south_4d63 {
    font-size: 1.75rem;
  }
  
  .chip_brown_b4ab {
    max-width: 100%;
  }
}

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

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

.media-c589 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.fast-6d84 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.mini-b7d6 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.section-5533 {
  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;
}

.simple_e9f2 {
  flex-shrink: 0;
}

.footer-848e strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.north-53fd,
.rough-d2a5,
.breadcrumb_dim_1f74 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.north-53fd thead,
.rough-d2a5 thead {
  background: var(--color-primary);
  color: white;
}

.north-53fd th,
.north-53fd td,
.rough-d2a5 th,
.rough-d2a5 td,
.breadcrumb_dim_1f74 th,
.breadcrumb_dim_1f74 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .north-53fd th,
  .north-53fd td,
  .rough-d2a5 th,
  .rough-d2a5 td,
  .breadcrumb_dim_1f74 th,
  .breadcrumb_dim_1f74 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .north-53fd,
  .rough-d2a5,
  .breadcrumb_dim_1f74 {
    min-width: 600px;
  }
}

.north-53fd th,
.rough-d2a5 th,
.breadcrumb_dim_1f74 th {
  font-weight: 600;
}

.north-53fd tbody tr:hover,
.rough-d2a5 tbody tr:hover,
.breadcrumb_dim_1f74 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.footer_fast_9fbd h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.widget-abd1 {
  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);
}

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

.breadcrumb-5ca2 {
  font-weight: 600;
  color: white;
}

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

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

.steel_baf9 {
  color: #4caf50;
}

.fixed_dd84 {
  color: #ff9800;
}

.dropdown-white-a630 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.hero-7ec3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

.slider-190c {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.dynamic_dfb7 {
  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;
}

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

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

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

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

.current-1a0a {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header_d6d9 .top_7830 {
  width: 100%;
  background: white;
}

.background-pink-923d .top_7830 {
  color: #667eea;
}

.description-black-5d91 .top_7830 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.status_current_ef13 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.orange-de14 {
  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);
}

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

.notification-red-747e {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .full_0408 {
    padding: var(--space-md);
  }
  
  .notification-red-747e {
    padding: var(--space-md);
  }
  
  .popup_7cf8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.yellow_b7d8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.title-right-d788,
.modal_0ad7,
.photo_ddda,
.table_right_6668 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.overlay-638a {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.slider-pink-7736 {
  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) {
  .slider-pink-7736 {
    font-size: 0.625rem;
  }
}

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

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

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

.status_cold_3239 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.container-hard-9071 {
  border-color: var(--color-success);
}

.widget-upper-00c4 {
  border-color: var(--color-warning);
}

.stale-dc57 {
  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);
}

.container-hard-9071 .stale-dc57 {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget-upper-00c4 .stale-dc57 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.button-north-6569 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.slider-up-b067 {
  margin-top: var(--space-xxl);
}

.heading_next_b898 {
  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);
}

.nav-22cf {
  text-align: center;
}

.backdrop-tiny-b274 {
  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);
}

.block-middle-0096 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.backdrop-tiny-b274 .breadcrumb-5ca2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.module-bce7 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.bottom_e4f0 {
  border: 2px solid #4caf50;
}

.item-3c6e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.status_advanced_7f19 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.hard-353e {
  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;
}

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

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

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

.progress-blue-3640 {
  text-align: right;
}

.progress-blue-3640 .row_2ec3 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.dark-2255 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.alert_motion_506b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.filter-db1e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.south-16ec {
  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);
}

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

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

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

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

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

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

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

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

.green_a89e {
  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);
}

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

.gradient-solid-9aa7 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.green_a89e[aria-expanded="true"] .gradient-solid-9aa7 {
  transform: rotate(180deg);
}

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

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

.module-c3a8 ul,
.module-c3a8 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

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

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

.video-yellow-5c57 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

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

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

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

.main_light_9474 {
  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);
}

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

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

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

.progress-7751,
.status-e4bd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.progress-7751 h4,
.status-e4bd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.progress-7751 ul,
.status-e4bd ul {
  list-style: none;
  padding: 0;
}

.progress-7751 li,
.status-e4bd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.menu_2642 ul {
  list-style: none;
  padding: 0;
}

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

.disabled_fast_be7e {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

.pattern_glass_0f14 {
  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);
}

.list_3a9a {
  font-style: italic;
}

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

.tabs-3fb3 {
  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;
}

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

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

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

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

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

.feature-huge-2b4e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .feature-huge-2b4e {
    grid-template-columns: 1fr;
  }
}

.logo-0d8c {
  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);
}

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

.short-1678 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

.chip-middle-aa8a {
  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) */
.status_right_1f1e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.border_3979 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.border_3979 a:hover {
  color: white;
}

.photo_up_45dc {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.photo_up_45dc 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);
}

.photo_up_45dc a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.bright-6138 a:hover {
  color: white;
}

.tag-0bcc > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .chip-middle-aa8a,
  .status_right_1f1e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

.short-c4ad p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.text-7108 .message-42e9 {
  color: #4caf50;
  font-size: 0.875rem;
}

.border-pro-c0e3 {
  list-style: none;
  padding: 0;
}

.border-pro-c0e3 li {
  margin-bottom: var(--space-xs);
}

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

.border-pro-c0e3 a:hover {
  color: white;
}

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

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

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

.slider_steel_fd62 a:hover {
  color: white;
}

.tag-0bcc {
  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);
}

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

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

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

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

.huge-1638 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.huge-1638 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;
}

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

.grid-9dd2:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tag-0bcc {
    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;
  }
  
  .outline_next_91ac {
    font-size: 2rem;
  }
  
  .table_south_4d63 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .module-92c0,
  .notice_white_269e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .text_eb09,
  .accent_4814,
  .plasma_a766,
  .grid-9af9,
  .status-6e11,
  .item_cool_e995,
  .feature-huge-2b4e,
  .chip-middle-aa8a,
  .status_right_1f1e {
    grid-template-columns: 1fr;
  }
  
  .soft_0a33 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .preview_gold_a0b7 {
    padding: var(--space-lg) 0;
  }
  
  .wrapper_a80b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .wrapper_a80b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .top_7830 {
    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;
  }
  
  .soft_0a33 {
    grid-template-columns: 1fr;
  }
  
  .search_a954,
  .gradient-93cc,
  .surface-317a {
    flex-direction: column;
    width: 100%;
  }
  
  .modal_white_54de,
  .footer-1e3f,
  .search_a954 .top_7830,
  .gradient-93cc .top_7830 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .outline_next_91ac {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .table_south_4d63 {
    font-size: 1.375rem;
  }
  
  .nav-ce9f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .small_018c,
  .shadow_lite_f140,
  .article-8100,
  .description-lite-6ad8,
  .table-light-dc01 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider-pink-7736 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .filter-e96e {
    gap: var(--space-xs);
  }
  
  .gold-eda4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .widget-abd1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .backdrop-tiny-b274 {
    width: 150px;
    height: 150px;
  }
  
  .block-middle-0096 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .form_2daf,
  .steel_dba6,
  .search_a954,
  .tabs-3fb3,
  .dynamic_c764,
  .modal_678a,
  .copper-9891 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .preview_gold_a0b7 {
    page-break-inside: avoid;
  }
}

/* css-noise: d322 */
.promo-block-i5 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
