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

.primary-42f0:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.box_lower_8bf5):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. */
.box_lower_8bf5,
header,
.shade-f9f7,
.gradient_soft_887a,
.box_old_5b65,
.module_down_726c,
.black_fb96,
.info-ad66,
.photo-b4dc {
  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
   ============================================ */
.box_lower_8bf5 {
  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);
}

.old-4a43 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.hovered_5c2b {
  flex: 1;
}

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

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

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

.header_yellow_6ee6.upper-8009 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.new-32f6 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.layout-paper-0b15 {
  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;
}

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

.layout-paper-0b15 svg {
  flex-shrink: 0;
}

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

.content-35f6: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);
}

.content-35f6 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.active_8182[aria-expanded="true"] .focused-265d:nth-child(2) {
  opacity: 0;
}

.active_8182[aria-expanded="true"] .focused-265d:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .hovered_5c2b {
    display: none;
  }
  
  .active_8182 {
    display: flex;
  }
  
  .medium_a01d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .layout-paper-0b15,
  .content-35f6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .new-32f6 {
    position: relative;
  }
  
  .east-0675 {
    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;
  }
  
  .dark_8149[aria-expanded="true"] + .east-0675 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tiny_e8b0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .east-bef4 {
    gap: 8px;
  }
  
  .layout-paper-0b15 {
    display: none;
  }
  
  .content-35f6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .gallery_solid_5786 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .content-35f6 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .content-35f6 svg {
    width: 14px;
    height: 14px;
  }
  
  .hot-4a21 {
    gap: var(--space-sm);
  }
}

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

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

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

.box_fresh_8293 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.row-d2f3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.frame-3c08 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.banner-5c63 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-e74c {
  position: relative;
  text-align: center;
}

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

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

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

.hero-wood-31ec {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .nav_58eb {
    grid-template-columns: 1fr;
  }
  
  .slider_iron_84cf {
    font-size: 1.75rem;
  }
  
  .banner-5c63 {
    order: -1;
    max-width: 100%;
  }
  
  .breadcrumb-e74c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slider_iron_84cf {
    font-size: 1.5rem;
  }
  
  .picture_pressed_af31 {
    font-size: 1rem;
  }
  
  .row-d2f3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .breadcrumb-e74c {
    max-width: 250px;
  }
}

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

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

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

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

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

.sidebar-fixed-88f7 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.sidebar-fixed-88f7:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

.background-north-c612 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.info-advanced-9e49 {
  list-style: none;
  counter-reset: toc-counter;
}

.info-advanced-9e49 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.info-advanced-9e49 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);
}

.info-advanced-9e49 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;
}

.info-advanced-9e49 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.bright-0d96 {
  background: var(--color-bg-section);
}

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

.easy-20ff {
  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);
}

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

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

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

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

.surface-simple-9be2 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.surface-simple-9be2 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.surface-simple-9be2 pre,
.surface-simple-9be2 code {
  overflow-x: auto;
  max-width: 100%;
}

.surface-simple-9be2 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);
}

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

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

.surface-simple-9be2 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.surface-simple-9be2 ul,
.surface-simple-9be2 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.surface-simple-9be2 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.surface-simple-9be2 strong {
  font-weight: 600;
  color: var(--color-text);
}

.surface-simple-9be2 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.surface-simple-9be2 a:hover {
  color: var(--color-primary-dark);
}

.main-1eef {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.main-1eef 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) {
  .element_tiny_7d1e {
    grid-template-columns: 1fr;
  }
  
  .surface_full_9c70 {
    font-size: 1.75rem;
  }
  
  .surface-simple-9be2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .surface_full_9c70 {
    font-size: 1.5rem;
  }
  
  .surface-simple-9be2 h3 {
    font-size: 1.375rem;
  }
  
  .surface-simple-9be2 h4 {
    font-size: 1.125rem;
  }
}

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

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

.filter-hovered-a015 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.column-391e {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.aside_red_8193 {
  flex-shrink: 0;
}

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

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

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

.image-778d,
.carousel-11e0,
.shadow-active-bbdc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.image-778d thead,
.carousel-11e0 thead {
  background: var(--color-primary);
  color: white;
}

.image-778d th,
.image-778d td,
.carousel-11e0 th,
.carousel-11e0 td,
.shadow-active-bbdc th,
.shadow-active-bbdc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .image-778d th,
  .image-778d td,
  .carousel-11e0 th,
  .carousel-11e0 td,
  .shadow-active-bbdc th,
  .shadow-active-bbdc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .image-778d,
  .carousel-11e0,
  .shadow-active-bbdc {
    min-width: 600px;
  }
}

.image-778d th,
.carousel-11e0 th,
.shadow-active-bbdc th {
  font-weight: 600;
}

.image-778d tbody tr:hover,
.carousel-11e0 tbody tr:hover,
.shadow-active-bbdc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.under-aab7 h4 {
  color: white;
}

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

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

.label-cold-6dd8:last-child {
  border-bottom: none;
}

.label-cold-6dd8 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.label-cold-6dd8 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

.section-under-1a2f {
  text-align: center;
  margin-bottom: var(--space-md);
}

.widget_paper_2eb7 {
  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_paper_2eb7 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.menu-huge-6969 {
  font-weight: 600;
  color: white;
}

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

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

.layout-cf33 {
  color: #4caf50;
}

.pattern-5647 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hovered_f728 .item_4036 {
  width: 100%;
  background: white;
}

.north_a4ed .item_4036 {
  color: #667eea;
}

.highlight_steel_d84f .item_4036 {
  color: #f5576c;
}

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

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

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

.tooltip-78ec {
  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);
}

.purple-91c9 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .purple-91c9 {
    padding: var(--space-md);
  }
  
  .glass_f0d0 {
    padding: var(--space-md);
  }
  
  .prev-0841 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.box_a67c,
.stale-a43d,
.widget-857e,
.panel-gold-2630 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.caption-8f12 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.feature-bottom-9ce7 {
  border-color: var(--color-warning);
}

.hard-17a0 {
  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);
}

.active_narrow_2c22 .hard-17a0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.feature-bottom-9ce7 .hard-17a0 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-31e2 {
  text-align: center;
}

.component-brown-b05d {
  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);
}

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

.component-brown-b05d .menu-huge-6969 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.inner-547d p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.element-43dd {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.column-3a2b {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.logo-current-c2b3 {
  text-align: right;
}

.logo-current-c2b3 .picture_white_e8f8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.box-iron-4017 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.pattern-311b {
  background: #e3f2fd;
  color: #1565c0;
}

.menu-gas-d5fb {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper_3aa2[aria-expanded="true"] .filter_9789 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.header-bronze-c89b {
  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);
}

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

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

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

.green-3501,
.clean-0dcd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.green-3501 h4,
.clean-0dcd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.green-3501 ul,
.clean-0dcd ul {
  list-style: none;
  padding: 0;
}

.green-3501 li,
.clean-0dcd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.gallery-north-b318 ul {
  list-style: none;
  padding: 0;
}

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

.search-tiny-3d60 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.white-9176 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.bottom-69ec {
  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);
}

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

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

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

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

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

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

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

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

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

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

.backdrop-f1d1 .frame-3c08 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.sort_a1a0 a:hover {
  color: white;
}

.table-hard-3d66 {
  list-style: none;
  padding: 0;
}

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

.table-hard-3d66 a {
  color: #b0b0b0;
  text-decoration: none;
}

.table-hard-3d66 a:hover {
  color: white;
}

.layout-lower-ddb2 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .layout-lower-ddb2 {
    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;
  }
  
  .slider_iron_84cf {
    font-size: 2rem;
  }
  
  .surface_full_9c70 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .nav_58eb,
  .element_tiny_7d1e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .picture_center_3606,
  .active_88f3,
  .title_gas_cd68,
  .orange_0a06,
  .picture-d1dc,
  .menu-outer-a8f4,
  .tertiary_north_aafb,
  .inner_66e6 {
    grid-template-columns: 1fr;
  }
  
  .caption-aebf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .black_fb96 {
    padding: var(--space-lg) 0;
  }
  
  .info-advanced-9e49 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .info-advanced-9e49 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .item_4036 {
    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;
  }
  
  .caption-aebf {
    grid-template-columns: 1fr;
  }
  
  .basic-0145,
  .tooltip_b04e,
  .simple_3a2e {
    flex-direction: column;
    width: 100%;
  }
  
  .thumbnail-8386,
  .background-north-c612,
  .basic-0145 .item_4036,
  .tooltip_b04e .item_4036 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slider_iron_84cf {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .surface_full_9c70 {
    font-size: 1.375rem;
  }
  
  .basic_a57a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .fast_f4a2,
  .tabs_4860,
  .green-6e62,
  .photo-f83f,
  .icon_a4fc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .backdrop-tiny-f3ed {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .button-green-40a5 {
    gap: var(--space-xs);
  }
  
  .box_fresh_8293 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .widget_paper_2eb7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .component-brown-b05d {
    width: 150px;
    height: 150px;
  }
  
  .lite_0df1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .box_lower_8bf5,
  .shade-f9f7,
  .basic-0145,
  .fixed-ad4c,
  .info-ad66,
  .photo-b4dc,
  .active_8182 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .black_fb96 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5e7c */
.phantom-card-d6 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
