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

.feature-narrow-dc77:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.sort_391b,
header,
.summary-9b00,
.footer_stale_e2bb,
.button_a703,
.title-hard-6120,
.pro_cc4f,
.outer_4479,
.element_4f5b {
  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
   ============================================ */
.sort_391b {
  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);
}

.tooltip-1a8f {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.huge-804c img {
  height: 36px;
  width: auto;
  display: block;
}

.block-3b7d {
  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;
}

.secondary-right-c90d {
  flex: 1;
}

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

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

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

.smooth_3364.fn-active-2722 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.icon_warm_a197 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.progress-inner-acda svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .secondary-right-c90d {
    display: none;
  }
  
  .pro_447c {
    display: flex;
  }
  
  .block-3b7d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .progress-inner-acda,
  .primary_hard_02f5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .icon_warm_a197 {
    position: relative;
  }
  
  .logo-d494 {
    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;
  }
  
  .tabs_34da[aria-expanded="true"] + .logo-d494 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .up-e0df {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .search_pressed_2fe7 {
    gap: 8px;
  }
  
  .progress-inner-acda {
    display: none;
  }
  
  .primary_hard_02f5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .huge-804c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.active-5c2e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.active-5c2e svg {
  flex-shrink: 0;
}

.active-5c2e a {
  color: var(--color-primary);
  text-decoration: none;
}

.active-5c2e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-4d0b {
  display: flex;
  gap: var(--space-sm);
}

.pattern-bottom-2f89 {
  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;
}

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

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

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

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

.dropdown-b632 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.alert-east-3feb {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.status-liquid-2d6b {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.accent-pink-255e {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .lower-e7c8 {
    grid-template-columns: 1fr;
  }
  
  .tertiary-1c02 {
    font-size: 1.75rem;
  }
  
  .dropdown-b632 {
    order: -1;
    max-width: 100%;
  }
  
  .menu_orange_a365 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tertiary-1c02 {
    font-size: 1.5rem;
  }
  
  .icon-stone-936e {
    font-size: 1rem;
  }
  
  .avatar_orange_68a4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .menu_orange_a365 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.summary-dim-f77f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.alert-67a9 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-bbf1 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;
}

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

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

.yellow-8a9b {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider_f2ac 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) {
  .header_paper_3730 {
    grid-template-columns: 1fr;
  }
  
  .steel-f55f {
    font-size: 1.75rem;
  }
  
  .hard_2953 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.photo-outer-fc3f {
  flex-shrink: 0;
}

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

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

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

.thick_c644,
.row-fresh-840c,
.shade_4c46 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.thick_c644 thead,
.row-fresh-840c thead {
  background: var(--color-primary);
  color: white;
}

.thick_c644 th,
.thick_c644 td,
.row-fresh-840c th,
.row-fresh-840c td,
.shade_4c46 th,
.shade_4c46 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .thick_c644 th,
  .thick_c644 td,
  .row-fresh-840c th,
  .row-fresh-840c td,
  .shade_4c46 th,
  .shade_4c46 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .thick_c644,
  .row-fresh-840c,
  .shade_4c46 {
    min-width: 600px;
  }
}

.thick_c644 th,
.row-fresh-840c th,
.shade_4c46 th {
  font-weight: 600;
}

.thick_c644 tbody tr:hover,
.row-fresh-840c tbody tr:hover,
.shade_4c46 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.preview_c275 h4 {
  color: white;
}

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

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

.grid-pressed-3910:last-child {
  border-bottom: none;
}

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

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

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

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

.widget-1975:hover {
  text-decoration: underline;
}

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

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

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

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

.cold-f418 {
  list-style: none;
  padding: 0;
}

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

.pink-4e29 {
  color: #4caf50;
}

.footer_7a1a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-in-794b h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.highlight-narrow-4fa4 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.narrow_61e9 .tag_c7d8 {
  width: 100%;
  background: white;
}

.breadcrumb-5edf .tag_c7d8 {
  color: #667eea;
}

.mini-5caf .tag_c7d8 {
  color: #f5576c;
}

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

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

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

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

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

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

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

.module-selected-033a ol,
.module-selected-033a ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.module-selected-033a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.module_east_01c9,
.slow-e3e7,
.message-stale-762a,
.up_5f49 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.focus-wide-9ed0:hover {
  background: var(--color-primary-dark);
}

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

.solid-4d5b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.hot-4cba {
  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);
}

.yellow-d94d .hot-4cba {
  background: #e8f5e9;
  color: var(--color-success);
}

.text_clean_2415 .hot-4cba {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery_4e23 {
  text-align: center;
}

.status-2b00 {
  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);
}

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

.status-2b00 .fast_ce0a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.button-tiny-898f {
  margin-bottom: var(--space-xl);
}

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

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

.clean-2e82 {
  color: var(--color-text-light);
}

.pattern-steel-62ac {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.pattern-3d7c {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.pink_f944 {
  text-align: right;
}

.pink_f944 .east-67c7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.preview_left_b968 {
  background: #e3f2fd;
  color: #1565c0;
}

.yellow_4360 {
  background: #fff3e0;
  color: #e65100;
}

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

.picture-stone-9f91 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.filter-short-a3eb {
  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);
}

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

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

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

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

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

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

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

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

.tabs-773b {
  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);
}

.tabs-773b:hover {
  background: var(--color-bg-alt);
}

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

.tabs-773b[aria-expanded="true"] .focus_selected_deae {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border_simple_3667 h4,
.steel_7781 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.border_simple_3667 ul,
.steel_7781 ul {
  list-style: none;
  padding: 0;
}

.border_simple_3667 li,
.steel_7781 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.shade-complex-d1ec ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.image-tiny-8ca5 {
  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);
}

.layout_cbf3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-fixed-1c8c {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-fixed-1c8c li {
  margin-bottom: var(--space-xs);
}

.popup-fixed-1c8c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.popup-fixed-1c8c a:hover {
  color: white;
}

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

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

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

.up-905f {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.up-905f a:hover {
  color: white;
}

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

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

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

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

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

.orange_3a4b .photo-4d0b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.feature_ddef a:hover {
  color: white;
}

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

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

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

.wrapper_up_df01 a:hover {
  color: white;
}

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

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

.carousel-mini-4525 a {
  color: #4caf50;
  text-decoration: none;
}

.alert-current-cd84 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .item_2726 {
    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;
  }
  
  .tertiary-1c02 {
    font-size: 2rem;
  }
  
  .steel-f55f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .lower-e7c8,
  .header_paper_3730 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .dropdown_56bc,
  .description_26f7,
  .black-a96c,
  .media_thick_1b44,
  .container_stale_dc44,
  .paragraph-e5b2,
  .preview_db95,
  .preview_db7d,
  .gradient_large_3d1f {
    grid-template-columns: 1fr;
  }
  
  .sort-45bf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pro_cc4f {
    padding: var(--space-lg) 0;
  }
  
  .shade-bbf1 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade-bbf1 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tag_c7d8 {
    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;
  }
  
  .sort-45bf {
    grid-template-columns: 1fr;
  }
  
  .picture_0893,
  .surface_up_fda3,
  .item_under_cb53 {
    flex-direction: column;
    width: 100%;
  }
  
  .summary-dim-f77f,
  .alert-67a9,
  .picture_0893 .tag_c7d8,
  .surface_up_fda3 .tag_c7d8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tertiary-1c02 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .steel-f55f {
    font-size: 1.375rem;
  }
  
  .heading-ecec {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .basic-13d8,
  .out_e031,
  .tag_soft_0535,
  .status-south-88a2,
  .in_e368 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .soft-c1bc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .main_iron_7a98 {
    gap: var(--space-xs);
  }
  
  .active-5c2e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .popup_static_0254 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .status-2b00 {
    width: 150px;
    height: 150px;
  }
  
  .overlay-white-707b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .sort_391b,
  .summary-9b00,
  .picture_0893,
  .mask_e71a,
  .outer_4479,
  .element_4f5b,
  .pro_447c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pro_cc4f {
    page-break-inside: avoid;
  }
}

/* css-noise: ac9e */
.widget-item-s0 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
