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

.dark-e2ec:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.layout_d7d0,
header,
.icon_tiny_3971,
.accent-3e32,
.backdrop-paper-dbbe,
.wood-83cf,
.text_slow_788b,
.pattern_hot_1a4c,
.row-advanced-3e79 {
  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
   ============================================ */
.layout_d7d0 {
  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-5b94 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.tabs_7660 {
  flex: 1;
}

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

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

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

.cold_2c64.fn-active-05dc {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.avatar-5653 {
  position: relative;
}

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

.inner-3f9b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.title_b2bc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.content_hot_d198[aria-expanded="true"] .surface-silver-dfe3:nth-child(2) {
  opacity: 0;
}

.content_hot_d198[aria-expanded="true"] .surface-silver-dfe3:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .tabs_7660 {
    display: none;
  }
  
  .content_hot_d198 {
    display: flex;
  }
  
  .hot_1875 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .title_b2bc,
  .west_fdd9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .avatar-5653 {
    position: relative;
  }
  
  .tabs_plasma_7f38 {
    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;
  }
  
  .inner-3f9b[aria-expanded="true"] + .tabs_plasma_7f38 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .title_2441 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .brown-4a36 {
    gap: 8px;
  }
  
  .title_b2bc {
    display: none;
  }
  
  .west_fdd9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .feature_e263 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.hero_paper_e2cb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.table-f403 a:hover {
  text-decoration: underline;
}

.badge-white-2457 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.frame-05e8 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.description-tiny-184c {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .glass-e1e6 {
    grid-template-columns: 1fr;
  }
  
  .list_tiny_0a33 {
    font-size: 1.75rem;
  }
  
  .frame-05e8 {
    order: -1;
    max-width: 100%;
  }
  
  .cold_296d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .list_tiny_0a33 {
    font-size: 1.5rem;
  }
  
  .easy-d5b9 {
    font-size: 1rem;
  }
  
  .table-f403 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .cold_296d {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.form-copper-9e0b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-hard-0660 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma-c1c3 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) {
  .solid_1a6d {
    grid-template-columns: 1fr;
  }
  
  .background-orange-f83a {
    font-size: 1.75rem;
  }
  
  .widget_glass_b49e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .background-orange-f83a {
    font-size: 1.5rem;
  }
  
  .widget_glass_b49e h3 {
    font-size: 1.375rem;
  }
  
  .widget_glass_b49e h4 {
    font-size: 1.125rem;
  }
}

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

.secondary-out-3943 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.nav_1a83 {
  flex-shrink: 0;
}

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

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

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

.layout_paper_7c77,
.medium-b13a,
.center-003d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.layout_paper_7c77 thead,
.medium-b13a thead {
  background: var(--color-primary);
  color: white;
}

.layout_paper_7c77 th,
.layout_paper_7c77 td,
.medium-b13a th,
.medium-b13a td,
.center-003d th,
.center-003d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layout_paper_7c77 th,
  .layout_paper_7c77 td,
  .medium-b13a th,
  .medium-b13a td,
  .center-003d th,
  .center-003d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .layout_paper_7c77,
  .medium-b13a,
  .center-003d {
    min-width: 600px;
  }
}

.layout_paper_7c77 th,
.medium-b13a th,
.center-003d th {
  font-weight: 600;
}

.layout_paper_7c77 tbody tr:hover,
.medium-b13a tbody tr:hover,
.center-003d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.list-up-40b6 h4 {
  color: white;
}

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

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

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

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

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

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

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

.menu-58ba:hover {
  text-decoration: underline;
}

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

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

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

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

.modal-fast-a234 {
  list-style: none;
  padding: 0;
}

.modal-fast-a234 li {
  padding: var(--space-xs) 0;
}

.button_selected_396e {
  color: #4caf50;
}

.thick_8dff {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.notice-copper-121f {
  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;
}

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

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

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

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

.sort-fast-19c7 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.slow-0ece {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.overlay-e724 .feature_lower_a6bf {
  width: 100%;
  background: white;
}

.message-3ce1 .feature_lower_a6bf {
  color: #667eea;
}

.hover_5f1d .feature_lower_a6bf {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hover_outer_b710 {
    padding: var(--space-md);
  }
  
  .pagination-1871 {
    padding: var(--space-md);
  }
  
  .gallery_2c51 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.grid-32b7,
.list-fluid-bd99,
.border_75d6,
.module_cool_ce1e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.advanced-17f4:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.menu-focused-ac0d {
  border-color: var(--color-success);
}

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

.hover-current-4d68 {
  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);
}

.menu-focused-ac0d .hover-current-4d68 {
  background: #e8f5e9;
  color: var(--color-success);
}

.primary_middle_8ddb .hover-current-4d68 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-old-c896 {
  text-align: center;
}

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

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

.description-fab9 .tiny_208d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.background-red-0095 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-paper-e094 {
  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;
}

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

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

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

.preview-b362 {
  text-align: right;
}

.preview-b362 .large-1535 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.background-out-9d85 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.notice-88f9 {
  background: #e3f2fd;
  color: #1565c0;
}

.border-6dd1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-85bb,
.mask-563f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tooltip-85bb h4,
.mask-563f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tooltip-85bb ul,
.mask-563f ul {
  list-style: none;
  padding: 0;
}

.tooltip-85bb li,
.mask-563f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.nav-orange-1eaa {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.nav-orange-1eaa ul {
  list-style: none;
  padding: 0;
}

.nav-orange-1eaa li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.item-lower-18f9 {
  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);
}

.menu-2666 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.simple-a04e a:hover {
  color: white;
}

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

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

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

.advanced-720a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.advanced-720a a:hover {
  color: white;
}

.breadcrumb-lower-f4db > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .photo-center-8a49,
  .gallery_cef9 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.avatar-5a00 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.avatar-5a00 .action_4ecb {
  color: #4caf50;
  font-size: 0.875rem;
}

.static-d6e9 {
  list-style: none;
  padding: 0;
}

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

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

.static-d6e9 a:hover {
  color: white;
}

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

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

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

.accordion_pro_c495 a:hover {
  color: white;
}

.breadcrumb-lower-f4db {
  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);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .breadcrumb-lower-f4db {
    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;
  }
  
  .list_tiny_0a33 {
    font-size: 2rem;
  }
  
  .background-orange-f83a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .glass-e1e6,
  .solid_1a6d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accordion-up-6875,
  .hero_77ea,
  .slider-old-1f97,
  .breadcrumb-fixed-ab7b,
  .pagination-ed5b,
  .caption-98aa,
  .info-middle-1a61,
  .photo-center-8a49,
  .gallery_cef9 {
    grid-template-columns: 1fr;
  }
  
  .gradient-52d1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .text_slow_788b {
    padding: var(--space-lg) 0;
  }
  
  .next_dc4b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .next_dc4b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .feature_lower_a6bf {
    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;
  }
  
  .gradient-52d1 {
    grid-template-columns: 1fr;
  }
  
  .thick-f16a,
  .summary-0353,
  .widget-b62a {
    flex-direction: column;
    width: 100%;
  }
  
  .form-copper-9e0b,
  .gradient-2263,
  .thick-f16a .feature_lower_a6bf,
  .summary-0353 .feature_lower_a6bf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .list_tiny_0a33 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .background-orange-f83a {
    font-size: 1.375rem;
  }
  
  .accent-0694 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .input-basic-f1ae,
  .focus-08b7,
  .shadow-c5bb,
  .overlay-active-035a,
  .section_stone_d488 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .table_92b6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .main-cb98 {
    gap: var(--space-xs);
  }
  
  .hero_paper_e2cb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hover_hard_ff9a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .description-fab9 {
    width: 150px;
    height: 150px;
  }
  
  .text-fast-f939 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .layout_d7d0,
  .icon_tiny_3971,
  .thick-f16a,
  .search_8b3c,
  .pattern_hot_1a4c,
  .row-advanced-3e79,
  .content_hot_d198 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .text_slow_788b {
    page-break-inside: avoid;
  }
}

/* css-noise: b23e */
.phantom-card-u9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
