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

.next-1a72:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.modal-d3e1,
header,
.element-first-989d,
.soft_bd9b,
.hover_complex_51af,
.secondary_wood_ae33,
.alert-a851,
.east_67db,
.next_1339 {
  max-width: none;
}

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

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

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

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.modal-d3e1 {
  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);
}

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

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

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

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

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

.thumbnail-cold-78af img {
  height: 36px;
  width: auto;
  display: block;
}

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

.grid_3b33 {
  flex: 1;
}

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

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

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

.iron_6e43.fn-active-7169 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pink-052f {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.rough-c174 svg {
  flex-shrink: 0;
}

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

.top-5bc8: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);
}

.top-5bc8 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.paragraph_cool_8c4d[aria-expanded="true"] .card-24e3:nth-child(2) {
  opacity: 0;
}

.paragraph_cool_8c4d[aria-expanded="true"] .card-24e3:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .grid_3b33 {
    display: none;
  }
  
  .paragraph_cool_8c4d {
    display: flex;
  }
  
  .solid-d330 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .rough-c174,
  .top-5bc8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pink-052f {
    position: relative;
  }
  
  .column-e28d {
    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;
  }
  
  .liquid_105f[aria-expanded="true"] + .column-e28d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .banner-345a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .bright_aff1 {
    gap: 8px;
  }
  
  .rough-c174 {
    display: none;
  }
  
  .top-5bc8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .thumbnail-cold-78af img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .top-5bc8 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .top-5bc8 svg {
    width: 14px;
    height: 14px;
  }
  
  .complex-19ae {
    gap: var(--space-sm);
  }
}

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

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

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

.content_hard_6212 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.clean-ea9c a:hover {
  text-decoration: underline;
}

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

.summary-inner-9e87 {
  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) {
  .summary-inner-9e87 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .summary-inner-9e87 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

.progress-2b28 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.new-46cf {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hidden-motion-05e3 {
    grid-template-columns: 1fr;
  }
  
  .summary-inner-9e87 {
    font-size: 1.75rem;
  }
  
  .new-46cf {
    order: -1;
    max-width: 100%;
  }
  
  .middle_06f0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .summary-inner-9e87 {
    font-size: 1.5rem;
  }
  
  .description-fluid-4154 {
    font-size: 1rem;
  }
  
  .clean-ea9c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .middle_06f0 {
    max-width: 250px;
  }
}

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

.image-center-dfb0 {
  background: var(--color-primary);
  color: white;
}

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

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

.content-18a4:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-wood-13e4 {
  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);
}

.avatar-562d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_thick_82a2 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) {
  .caption-b628 {
    grid-template-columns: 1fr;
  }
  
  .avatar-562d {
    font-size: 1.75rem;
  }
  
  .paragraph_fresh_16ca {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .avatar-562d {
    font-size: 1.5rem;
  }
  
  .paragraph_fresh_16ca h3 {
    font-size: 1.375rem;
  }
  
  .paragraph_fresh_16ca h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.feature-943b {
  flex-shrink: 0;
}

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

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

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

.block-14eb,
.warm_073f,
.pressed-f211 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.block-14eb thead,
.warm_073f thead {
  background: var(--color-primary);
  color: white;
}

.block-14eb th,
.block-14eb td,
.warm_073f th,
.warm_073f td,
.pressed-f211 th,
.pressed-f211 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .block-14eb th,
  .block-14eb td,
  .warm_073f th,
  .warm_073f td,
  .pressed-f211 th,
  .pressed-f211 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .block-14eb,
  .warm_073f,
  .pressed-f211 {
    min-width: 600px;
  }
}

.block-14eb th,
.warm_073f th,
.pressed-f211 th {
  font-weight: 600;
}

.block-14eb tbody tr:hover,
.warm_073f tbody tr:hover,
.pressed-f211 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.input-dynamic-5e28 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.media-12e4 h4 {
  color: white;
}

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

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

.outer-fc16:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.wood-0cc6 {
  font-weight: 600;
  color: white;
}

.highlight-paper-a90d {
  list-style: none;
  padding: 0;
}

.highlight-paper-a90d li {
  padding: var(--space-xs) 0;
}

.alert_fixed_c4bb {
  color: #4caf50;
}

.chip-4f82 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-focused-8cae {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.hidden-white-ac70 .table_over_1601 {
  width: 100%;
  background: white;
}

.label-2d02 .table_over_1601 {
  color: #667eea;
}

.message_72fc .table_over_1601 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .title_ef9e {
    padding: var(--space-md);
  }
  
  .tiny_210c {
    padding: var(--space-md);
  }
  
  .badge_clean_4fac {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.middle-a012,
.disabled_635e,
.active-current-1c52,
.row-9a6e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.simple-988d:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.dirty-3fc2 {
  border-color: var(--color-warning);
}

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

.pattern-b52c .brown_1c06 {
  background: #e8f5e9;
  color: var(--color-success);
}

.dirty-3fc2 .brown_1c06 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.texture-2f7e {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.form-d01c {
  text-align: center;
}

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

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

.current_4329 .wood-0cc6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.overlay-mini-d1e2 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.block-9dc2 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.thick-9d95 {
  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;
}

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

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

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

.out-ac0f {
  text-align: right;
}

.out-ac0f .nav-brown-afe7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.search-9278 {
  background: #e8f5e9;
  color: #2e7d32;
}

.simple-55cb {
  background: #e3f2fd;
  color: #1565c0;
}

.texture-b3d9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-7e8d {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.gallery_bronze_d9e1[aria-expanded="true"] .chip-7e8d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.slider-prev-66a8 {
  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);
}

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

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

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

.focus-a739,
.stone_4501 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.focus-a739 h4,
.stone_4501 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.focus-a739 ul,
.stone_4501 ul {
  list-style: none;
  padding: 0;
}

.focus-a739 li,
.stone_4501 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.icon-silver-f6dc {
  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);
}

.alert-iron-2a75 {
  font-style: italic;
}

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

.border-cool-6ba5 {
  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;
}

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

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

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

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

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

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

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

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

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

.button-center-67c4 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.header_374f a:hover {
  color: white;
}

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

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

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

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

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

.overlay_f702 a:hover {
  color: white;
}

.texture-8f99 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .hidden-583e,
  .summary-2f92 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.tooltip-2aeb .focused-fe97 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.prev_df9f a:hover {
  color: white;
}

.steel-5db7 {
  list-style: none;
  padding: 0;
}

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

.steel-5db7 a {
  color: #b0b0b0;
  text-decoration: none;
}

.steel-5db7 a:hover {
  color: white;
}

.texture-8f99 {
  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);
}

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

.description-bronze-f212 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.wood_6d3f a:hover {
  color: white;
}

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

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

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

.focus-upper-afb9:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .texture-8f99 {
    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;
  }
  
  .summary-inner-9e87 {
    font-size: 2rem;
  }
  
  .avatar-562d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hidden-motion-05e3,
  .caption-b628 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .status-hard-25e9,
  .bright_e0c5,
  .pagination-4f1c,
  .basic_15d2,
  .backdrop-4b73,
  .text-wood-feb1,
  .detail-tiny-b8aa,
  .hidden-583e,
  .summary-2f92 {
    grid-template-columns: 1fr;
  }
  
  .small-2c5d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .alert-a851 {
    padding: var(--space-lg) 0;
  }
  
  .chip_action_e12e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .chip_action_e12e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .table_over_1601 {
    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;
  }
  
  .small-2c5d {
    grid-template-columns: 1fr;
  }
  
  .sort-ecb6,
  .dropdown_1b0f,
  .selected_68fe {
    flex-direction: column;
    width: 100%;
  }
  
  .dirty-43e5,
  .purple-8071,
  .sort-ecb6 .table_over_1601,
  .dropdown_1b0f .table_over_1601 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .summary-inner-9e87 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .avatar-562d {
    font-size: 1.375rem;
  }
  
  .mini-4fa8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .yellow-35dd,
  .row_north_bdca,
  .grid_active_5990,
  .header_east_80af,
  .north_d609 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .text-56bc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .summary-2c36 {
    gap: var(--space-xs);
  }
  
  .content_hard_6212 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .focused_66c7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .current_4329 {
    width: 150px;
    height: 150px;
  }
  
  .icon-advanced-e0d5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal-d3e1,
  .element-first-989d,
  .sort-ecb6,
  .border-cool-6ba5,
  .east_67db,
  .next_1339,
  .paragraph_cool_8c4d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .alert-a851 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1041 */
.shadow-element-z4 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
