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

.box_3097:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.section_2a2b):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. */
.section_2a2b,
header,
.sidebar_8500,
.status-yellow-b98e,
.status_b9d6,
.tiny-2058,
.tabs_f6fd,
.panel_copper_715d,
.banner_f00f {
  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
   ============================================ */
.section_2a2b {
  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);
}

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

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

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

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

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

.wood-e0a8 img {
  height: 36px;
  width: auto;
  display: block;
}

.dynamic-9abd {
  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;
}

.widget-complex-97ae {
  flex: 1;
}

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

.wrapper-fresh-990b {
  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);
}

.wrapper-fresh-990b:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.wrapper-fresh-990b.wood_e10c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.block-c7d2 {
  position: relative;
}

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

.item-b1ed svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.badge-bb07 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.input-1035[aria-expanded="true"] .focus_center_adb0:nth-child(2) {
  opacity: 0;
}

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

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

  .widget-complex-97ae::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .widget-complex-97ae.red_221e {
    display: block;
    right: 0;
  }
  
  .info-fluid-9211 {
    flex-direction: column;
    gap: 0;
  }
  
  .wrapper-fresh-990b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .widget-complex-97ae::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;
  }
  
  .widget-complex-97ae.red_221e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .widget-complex-97ae {
    display: none;
  }
  
  .input-1035 {
    display: flex;
  }
  
  .dynamic-9abd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .badge-bb07,
  .text_d9cf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .block-c7d2 {
    position: relative;
  }
  
  .filter_wood_753b {
    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;
  }
  
  .item-b1ed[aria-expanded="true"] + .filter_wood_753b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .warm-2c1c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .blue_28aa {
    gap: 8px;
  }
  
  .badge-bb07 {
    display: none;
  }
  
  .text_d9cf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .wood-e0a8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.form-gold-1987 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.overlay-over-284d {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.detail-old-6734 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.grid-1fc2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .large_f812 {
    grid-template-columns: 1fr;
  }
  
  .hot-daab {
    font-size: 1.75rem;
  }
  
  .grid-1fc2 {
    order: -1;
    max-width: 100%;
  }
  
  .focus_b62a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hot-daab {
    font-size: 1.5rem;
  }
  
  .content-purple-47f1 {
    font-size: 1rem;
  }
  
  .active_014d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .focus_b62a {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-5208 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.motion-bcc8 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) {
  .surface-glass-d224 {
    grid-template-columns: 1fr;
  }
  
  .disabled_c07e {
    font-size: 1.75rem;
  }
  
  .plasma_2d73 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.progress_hard_7735 {
  flex-shrink: 0;
}

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

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

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

.caption_737d,
.section-simple-9b16,
.photo_dynamic_5076 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.caption_737d thead,
.section-simple-9b16 thead {
  background: var(--color-primary);
  color: white;
}

.caption_737d th,
.caption_737d td,
.section-simple-9b16 th,
.section-simple-9b16 td,
.photo_dynamic_5076 th,
.photo_dynamic_5076 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .caption_737d th,
  .caption_737d td,
  .section-simple-9b16 th,
  .section-simple-9b16 td,
  .photo_dynamic_5076 th,
  .photo_dynamic_5076 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .caption_737d,
  .section-simple-9b16,
  .photo_dynamic_5076 {
    min-width: 600px;
  }
}

.caption_737d th,
.section-simple-9b16 th,
.photo_dynamic_5076 th {
  font-weight: 600;
}

.caption_737d tbody tr:hover,
.section-simple-9b16 tbody tr:hover,
.photo_dynamic_5076 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.block_inner_647c h4 {
  color: white;
}

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

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

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

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

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

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

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

.search-gold-e1fd:hover {
  text-decoration: underline;
}

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

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

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

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

.out-fa59 {
  list-style: none;
  padding: 0;
}

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

.hard-fa4b {
  color: #4caf50;
}

.pink-083b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light-32ff {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.info_2731 .paragraph_glass_d072 {
  width: 100%;
  background: white;
}

.lower-2c09 .paragraph_glass_d072 {
  color: #667eea;
}

.mask_9543 .paragraph_glass_d072 {
  color: #f5576c;
}

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

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

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

.active-1e44 {
  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);
}

.frame-4dcf h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.current-23db {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .frame-4dcf {
    padding: var(--space-md);
  }
  
  .current-23db {
    padding: var(--space-md);
  }
  
  .in_7b79 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.large_7040,
.header-paper-0685,
.in-a604,
.footer-a0f8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.container-98f6:hover {
  background: var(--color-primary-dark);
}

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

.wrapper-bottom-559b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.next-35e7 {
  border-color: var(--color-success);
}

.huge-8a3d {
  border-color: var(--color-warning);
}

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

.next-35e7 .image_prev_5f09 {
  background: #e8f5e9;
  color: var(--color-success);
}

.huge-8a3d .image_prev_5f09 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.yellow-373c {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.icon-7b32 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.section-slow-673c {
  margin-top: var(--space-xxl);
}

.disabled-huge-a16a {
  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);
}

.mask-c3b1 {
  text-align: center;
}

.slider-dirty-d881 {
  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);
}

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

.slider-dirty-d881 .under_dc0b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-7102 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.new-d3e7 {
  text-align: right;
}

.new-d3e7 .outline-dirty-81e6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.highlight-copper-f822 {
  background: #e8f5e9;
  color: #2e7d32;
}

.accordion-new-d9e9 {
  background: #e3f2fd;
  color: #1565c0;
}

.outline-thick-a67a {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.carousel-full-2dc9 strong {
  color: var(--color-primary);
}

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

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

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

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

.pink-88d2 {
  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);
}

.pink-88d2:hover {
  background: var(--color-bg-alt);
}

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

.pink-88d2[aria-expanded="true"] .tabs-b4c7 {
  transform: rotate(180deg);
}

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

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

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

.hovered-2a4b li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.mini-9dbd,
.fluid_f0b0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.mini-9dbd h4,
.fluid_f0b0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.mini-9dbd ul,
.fluid_f0b0 ul {
  list-style: none;
  padding: 0;
}

.mini-9dbd li,
.fluid_f0b0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.component_b7ad {
  font-style: italic;
}

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

.content-5dd8 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-last-86ae {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.gallery-last-86ae .detail-old-6734 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.black_6062 a:hover {
  color: white;
}

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

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

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

.narrow_7af8 a:hover {
  color: white;
}

.rough_84ff {
  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-1077 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.west-b5fa:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rough_84ff {
    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;
  }
  
  .hot-daab {
    font-size: 2rem;
  }
  
  .disabled_c07e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .large_f812,
  .surface-glass-d224 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .content_3c5f,
  .paragraph_718d,
  .left-a0d7,
  .avatar_c4aa,
  .grid_fd18,
  .badge-8fe1,
  .progress-green-31f2,
  .heading_14ef {
    grid-template-columns: 1fr;
  }
  
  .narrow-5fd5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tabs_f6fd {
    padding: var(--space-lg) 0;
  }
  
  .search-5208 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .search-5208 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paragraph_glass_d072 {
    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;
  }
  
  .narrow-5fd5 {
    grid-template-columns: 1fr;
  }
  
  .thick_d96f,
  .carousel_cool_1fc0,
  .soft-c289 {
    flex-direction: column;
    width: 100%;
  }
  
  .dirty-3957,
  .orange_f750,
  .thick_d96f .paragraph_glass_d072,
  .carousel_cool_1fc0 .paragraph_glass_d072 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hot-daab {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .disabled_c07e {
    font-size: 1.375rem;
  }
  
  .selected-0da4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .rough-446e,
  .summary_middle_43f7,
  .pagination-b6fd,
  .status-motion-5684,
  .motion_e551 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .notification_lower_6360 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .preview-76a4 {
    gap: var(--space-xs);
  }
  
  .form-gold-1987 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .element_7446 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .slider-dirty-d881 {
    width: 150px;
    height: 150px;
  }
  
  .status_3faa {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .section_2a2b,
  .sidebar_8500,
  .thick_d96f,
  .content-5dd8,
  .panel_copper_715d,
  .banner_f00f,
  .input-1035 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tabs_f6fd {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5462 */
.phantom-card-r6 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
