/* ============================================
   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)
   ============================================ */
.pro-977a {
  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;
}

.pro-977a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.solid_55c3,
header,
.wrapper_steel_4b6d,
.picture-advanced-5e69,
.focus-18ad,
.modal_2238,
.accordion_over_4102,
.overlay-south-c88e,
.title-stale-631c {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.solid_55c3 {
  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);
}

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

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

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

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

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

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

.article-liquid-21f5 {
  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;
}

.shadow_be06 {
  flex: 1;
}

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

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

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

.thumbnail-abf5.border-next-7ca5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.heading-stone-555c {
  position: relative;
}

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

.pattern-red-d861 svg {
  transition: transform 0.2s ease;
}

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

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

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.heading-stone-555c:hover .outline-8497 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.form-00a2 svg {
  flex-shrink: 0;
}

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

.carousel-lower-c10e: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);
}

.carousel-lower-c10e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.highlight-6300[aria-expanded="true"] .row_bc73:nth-child(2) {
  opacity: 0;
}

.highlight-6300[aria-expanded="true"] .row_bc73:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .shadow_be06::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .shadow_be06.wrapper-00cc {
    display: block;
    right: 0;
  }
  
  .hard_ed46 {
    flex-direction: column;
    gap: 0;
  }
  
  .thumbnail-abf5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .shadow_be06::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;
  }
  
  .shadow_be06.wrapper-00cc::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .shadow_be06 {
    display: none;
  }
  
  .highlight-6300 {
    display: flex;
  }
  
  .article-liquid-21f5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .form-00a2,
  .carousel-lower-c10e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .heading-stone-555c {
    position: relative;
  }
  
  .outline-8497 {
    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;
  }
  
  .pattern-red-d861[aria-expanded="true"] + .outline-8497 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .secondary_soft_e828 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dynamic-10aa {
    gap: 8px;
  }
  
  .form-00a2 {
    display: none;
  }
  
  .carousel-lower-c10e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .table_946d img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .carousel-lower-c10e {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .carousel-lower-c10e svg {
    width: 14px;
    height: 14px;
  }
  
  .pressed-2a8d {
    gap: var(--space-sm);
  }
}

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

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

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

.basic_591a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.progress-8614 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.card-slow-3c94 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-slow-3c94 strong {
  font-weight: 600;
  color: var(--color-text);
}

.card-slow-3c94 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.slow-0ca3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.prev-db25 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wood_54a7 {
    grid-template-columns: 1fr;
  }
  
  .tag-3480 {
    font-size: 1.75rem;
  }
  
  .prev-db25 {
    order: -1;
    max-width: 100%;
  }
  
  .logo_31da {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tag-3480 {
    font-size: 1.5rem;
  }
  
  .border_73fa {
    font-size: 1rem;
  }
  
  .notice_7493 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .logo_31da {
    max-width: 250px;
  }
}

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

.frame-1675 {
  background: var(--color-primary);
  color: white;
}

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

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

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

.menu-fixed-68bb {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.menu-fixed-68bb:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-c079 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;
}

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

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

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

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

.media-6b1d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph_iron_2ce1 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) {
  .header-86e6 {
    grid-template-columns: 1fr;
  }
  
  .video_3cd0 {
    font-size: 1.75rem;
  }
  
  .cool_c805 {
    max-width: 100%;
  }
}

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

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

.form-complex-3023 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.mask-tiny-f088 {
  flex-shrink: 0;
}

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

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

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

.current-f835,
.photo-3554,
.pattern_blue_6e45 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.current-f835 thead,
.photo-3554 thead {
  background: var(--color-primary);
  color: white;
}

.current-f835 th,
.current-f835 td,
.photo-3554 th,
.photo-3554 td,
.pattern_blue_6e45 th,
.pattern_blue_6e45 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .current-f835 th,
  .current-f835 td,
  .photo-3554 th,
  .photo-3554 td,
  .pattern_blue_6e45 th,
  .pattern_blue_6e45 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .current-f835,
  .photo-3554,
  .pattern_blue_6e45 {
    min-width: 600px;
  }
}

.current-f835 th,
.photo-3554 th,
.pattern_blue_6e45 th {
  font-weight: 600;
}

.current-f835 tbody tr:hover,
.photo-3554 tbody tr:hover,
.pattern_blue_6e45 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.right-498f h4 {
  color: white;
}

.secondary-complex-2fac {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.pink-d968:hover {
  text-decoration: underline;
}

.row-copper-6ade {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.hidden-purple-ffe4 {
  font-weight: 600;
  color: white;
}

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

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

.active_a811 {
  color: #4caf50;
}

.pink_2eac {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .highlight-under-471d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.element-9946 .inner_b12e {
  width: 100%;
  background: white;
}

.dynamic_b92a .inner_b12e {
  color: #667eea;
}

.fixed-32b6 .inner_b12e {
  color: #f5576c;
}

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

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

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

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

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

.small-779f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .south_770f {
    padding: var(--space-md);
  }
  
  .small-779f {
    padding: var(--space-md);
  }
  
  .nav-48f5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hero_88c3,
.stale_5886,
.button-479b,
.texture_bright_c4bc {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.steel-0add:hover {
  background: var(--color-primary-dark);
}

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

.breadcrumb-short-81c6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.caption-11bb {
  border-color: var(--color-success);
}

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

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

.caption-11bb .copper_ee96 {
  background: #e8f5e9;
  color: var(--color-success);
}

.center_002e .copper_ee96 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.feature-pressed-9e82 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

.card-easy-708d {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.bronze_18e7 {
  text-align: center;
}

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

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

.panel_west_00c4 .hidden-purple-ffe4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.glass-1a93 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.container-b49d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.outline-0a51 {
  text-align: right;
}

.outline-0a51 .alert_000a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.thick-8136 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.thumbnail-iron-c8a1 {
  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);
}

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

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

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

.fixed-83e2 strong {
  color: var(--color-primary);
}

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

.filter-south-01aa {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.avatar-378a {
  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);
}

.avatar-378a:hover {
  background: var(--color-bg-alt);
}

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

.avatar-378a[aria-expanded="true"] .basic-d34f {
  transform: rotate(180deg);
}

.gradient-gas-518c {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.gradient-gas-518c h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.gradient-gas-518c ul,
.gradient-gas-518c ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.gradient-gas-518c li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.button-green-d2f6 {
  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);
}

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

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

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

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

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

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

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

.slider_paper_77b5 ul,
.background_cool_05d5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.search-lower-3937 {
  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);
}

.hover-70f5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.summary-3a49 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.item-b96f .mask_2691 {
  color: #4caf50;
  font-size: 0.875rem;
}

.list-wood-660c {
  list-style: none;
  padding: 0;
}

.list-wood-660c li {
  margin-bottom: var(--space-xs);
}

.list-wood-660c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.list-wood-660c a:hover {
  color: white;
}

.first-37d5 {
  list-style: none;
  padding: 0;
}

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

.first-37d5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.first-37d5 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .purple-b26a {
    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;
  }
  
  .tag-3480 {
    font-size: 2rem;
  }
  
  .video_3cd0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wood_54a7,
  .header-86e6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .panel_clean_f241,
  .wood_d5ad,
  .highlight-under-471d,
  .frame-gas-cb65,
  .blue_41df,
  .tooltip-solid-9a14,
  .light_ffee,
  .out_1ccf {
    grid-template-columns: 1fr;
  }
  
  .description-action-2fa9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .accordion_over_4102 {
    padding: var(--space-lg) 0;
  }
  
  .menu-c079 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .menu-c079 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .inner_b12e {
    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;
  }
  
  .description-action-2fa9 {
    grid-template-columns: 1fr;
  }
  
  .slow-0ca3,
  .dirty-90e7,
  .mask_eabf {
    flex-direction: column;
    width: 100%;
  }
  
  .input_ea43,
  .footer-6201,
  .slow-0ca3 .inner_b12e,
  .dirty-90e7 .inner_b12e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tag-3480 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .video_3cd0 {
    font-size: 1.375rem;
  }
  
  .title_0305 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .pattern_e6b7,
  .description_2450,
  .logo_b237,
  .advanced-9c73,
  .brown-f174 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .old_b600 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .content-6a6d {
    gap: var(--space-xs);
  }
  
  .basic_591a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .notification-a079 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .panel_west_00c4 {
    width: 150px;
    height: 150px;
  }
  
  .nav_complex_6b69 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .solid_55c3,
  .wrapper_steel_4b6d,
  .slow-0ca3,
  .fast_1f54,
  .overlay-south-c88e,
  .title-stale-631c,
  .highlight-6300 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .accordion_over_4102 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.notice-8638 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: d642 */
.promo-block-l3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
