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

.row-b15a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.mask-b93d,
header,
.list_first_20d8,
.cold-4f79,
.basic-0134,
.media-b1c7,
.title_983f,
.input-silver-406c,
.summary_cool_d06a {
  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
   ============================================ */
.mask-b93d {
  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);
}

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

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

/* Scrolled state */
.mask-b93d.widget-large-eddd {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.aside-steel-8f31 {
  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;
}

.modal_cf84 {
  flex: 1;
}

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

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

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

.photo_fluid_66e0.fn-active-5916 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.tertiary-10e4 {
  position: relative;
}

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

.pattern-short-1275 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.layout_center_a981 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.layout_center_a981 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .modal_cf84 {
    display: none;
  }
  
  .picture_light_5f52 {
    display: flex;
  }
  
  .aside-steel-8f31 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .layout_center_a981,
  .complex_bcdc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tertiary-10e4 {
    position: relative;
  }
  
  .slow-e862 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .pattern-short-1275[aria-expanded="true"] + .slow-e862 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .easy-9c91 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pressed_760a {
    gap: 8px;
  }
  
  .layout_center_a981 {
    display: none;
  }
  
  .complex_bcdc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .soft_d849 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.search-outer-2a54 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-outer-2a54 svg {
  flex-shrink: 0;
}

.search-outer-2a54 a {
  color: var(--color-primary);
  text-decoration: none;
}

.search-outer-2a54 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hovered-2200 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.west-9298 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .warm_43e1 {
    grid-template-columns: 1fr;
  }
  
  .outline_b7b5 {
    font-size: 1.75rem;
  }
  
  .hovered-2200 {
    order: -1;
    max-width: 100%;
  }
  
  .west-9298 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .outline_b7b5 {
    font-size: 1.5rem;
  }
  
  .active_d784 {
    font-size: 1rem;
  }
  
  .banner_b3bf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .west-9298 {
    max-width: 250px;
  }
}

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

.pink-0ff0 {
  background: var(--color-primary);
  color: white;
}

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

.link-light-25bf {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.link-light-25bf:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-8a9d {
  list-style: none;
  counter-reset: toc-counter;
}

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

.sidebar-8a9d 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);
}

.sidebar-8a9d 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;
}

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

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

.focused-4d77 {
  background: var(--color-bg-section);
}

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

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

.info-action-35f9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block_a6a3 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) {
  .large-de99 {
    grid-template-columns: 1fr;
  }
  
  .info-action-35f9 {
    font-size: 1.75rem;
  }
  
  .background_bf92 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .info-action-35f9 {
    font-size: 1.5rem;
  }
  
  .background_bf92 h3 {
    font-size: 1.375rem;
  }
  
  .background_bf92 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.layout-cold-a251 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.table_a129 {
  flex-shrink: 0;
}

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

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

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

.mask-middle-eb65,
.description-last-7edf,
.list-d49b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mask-middle-eb65 thead,
.description-last-7edf thead {
  background: var(--color-primary);
  color: white;
}

.mask-middle-eb65 th,
.mask-middle-eb65 td,
.description-last-7edf th,
.description-last-7edf td,
.list-d49b th,
.list-d49b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mask-middle-eb65 th,
  .mask-middle-eb65 td,
  .description-last-7edf th,
  .description-last-7edf td,
  .list-d49b th,
  .list-d49b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .mask-middle-eb65,
  .description-last-7edf,
  .list-d49b {
    min-width: 600px;
  }
}

.mask-middle-eb65 th,
.description-last-7edf th,
.list-d49b th {
  font-weight: 600;
}

.mask-middle-eb65 tbody tr:hover,
.description-last-7edf tbody tr:hover,
.list-d49b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fixed-1e08 h4 {
  color: white;
}

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

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

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

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

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

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

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

.background-lower-6073:hover {
  text-decoration: underline;
}

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

.summary-hot-4205 {
  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);
}

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

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

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

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

.accent_d463 {
  color: #4caf50;
}

.inner-999c {
  color: #ff9800;
}

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

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

.hover-stale-8a70 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .progress-silver-2f4d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.basic_e43d .article_d4e6 {
  width: 100%;
  background: white;
}

.outer_8951 .article_d4e6 {
  color: #667eea;
}

.hidden-d482 .article_d4e6 {
  color: #f5576c;
}

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

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

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

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

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

.description-dim-2677 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .table_68b3 {
    padding: var(--space-md);
  }
  
  .description-dim-2677 {
    padding: var(--space-md);
  }
  
  .backdrop_active_b054 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.complex_26a8,
.icon_selected_9718,
.pressed_aa6a,
.new-6ed9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.header-gas-8f46:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.container_paper_31f2 .hero_rough_5e76 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notice-b529 .hero_rough_5e76 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.panel-new-4af4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.tag-brown-ea15 {
  text-align: center;
}

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

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

.solid_4856 .accordion_3f93 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.item-9cb9 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.filter-top-1221 {
  border: 2px solid #4caf50;
}

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

.silver-8c8a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.tertiary_focused_4fdc {
  text-align: right;
}

.tertiary_focused_4fdc .icon_stale_f7a6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.module-lower-9ef1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.wood-f2d1 {
  background: #e3f2fd;
  color: #1565c0;
}

.dark-d643 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.shadow-tall-f8fa strong {
  color: var(--color-primary);
}

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

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

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

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

.tag-basic-d391 {
  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);
}

.tag-basic-d391:hover {
  background: var(--color-bg-alt);
}

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

.tag-basic-d391[aria-expanded="true"] .layout-cdf8 {
  transform: rotate(180deg);
}

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

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

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

.out-196c li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.photo-49f1 {
  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);
}

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

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

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

.table-dynamic-9f14,
.pro-17cd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.table-dynamic-9f14 h4,
.pro-17cd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.table-dynamic-9f14 ul,
.pro-17cd ul {
  list-style: none;
  padding: 0;
}

.table-dynamic-9f14 li,
.pro-17cd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_4738 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.photo-out-14dc {
  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);
}

.photo-out-14dc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.photo-out-14dc p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.gallery_large_ff33 a:hover {
  color: white;
}

.heading-narrow-5cff {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.heading-narrow-5cff 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);
}

.heading-narrow-5cff a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.paragraph_mini_790f a:hover {
  color: white;
}

.white-b1ad > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.white-b6ec .upper-9003 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.rough_6070 a:hover {
  color: white;
}

.mask-f990 {
  list-style: none;
  padding: 0;
}

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

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

.mask-f990 a:hover {
  color: white;
}

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

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

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

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

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

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

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

.widget-tall-1dc0 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.widget-tall-1dc0:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .white-b1ad {
    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;
  }
  
  .outline_b7b5 {
    font-size: 2rem;
  }
  
  .info-action-35f9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .warm_43e1,
  .large-de99 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .icon_last_eb8d,
  .carousel-a4e3,
  .progress-silver-2f4d,
  .image-1253,
  .inner_9b2f,
  .accordion-49d6,
  .shade-f049,
  .clean_c7e0,
  .preview_focused_0017 {
    grid-template-columns: 1fr;
  }
  
  .gradient-pressed-65ad {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .title_983f {
    padding: var(--space-lg) 0;
  }
  
  .sidebar-8a9d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .sidebar-8a9d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .article_d4e6 {
    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-pressed-65ad {
    grid-template-columns: 1fr;
  }
  
  .summary_first_1edd,
  .wood-598d,
  .yellow-db0a {
    flex-direction: column;
    width: 100%;
  }
  
  .lite_c5bd,
  .warm-f482,
  .summary_first_1edd .article_d4e6,
  .wood-598d .article_d4e6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .outline_b7b5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .info-action-35f9 {
    font-size: 1.375rem;
  }
  
  .grid-left-b3be {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort_cold_4e4d,
  .frame_220d,
  .section-inner-ce1e,
  .popup-702d,
  .badge-upper-4dc4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .panel_tall_3610 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .detail-gold-e1ce {
    gap: var(--space-xs);
  }
  
  .search-outer-2a54 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .summary-hot-4205 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .solid_4856 {
    width: 150px;
    height: 150px;
  }
  
  .form-158d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .mask-b93d,
  .list_first_20d8,
  .summary_first_1edd,
  .surface_stone_4b5e,
  .input-silver-406c,
  .summary_cool_d06a,
  .picture_light_5f52 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .title_983f {
    page-break-inside: avoid;
  }
}

/* css-noise: 601c */
.shadow-element-z4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
