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

.description-cb0b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.search-aa42,
header,
.notice_short_125e,
.aside_6cd0,
.block_fac0,
.outline-3ea8,
.accordion-cold-b9b1,
.next-0e15,
.basic_11a7 {
  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
   ============================================ */
.search-aa42 {
  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);
}

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

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

/* Scrolled state */
.search-aa42.action-fa44 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.breadcrumb-selected-5a54 {
  flex: 1;
}

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

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

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

.middle_c8c1.fn-active-d48a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.aside-orange-0283 {
  position: relative;
}

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

.border-yellow-008e svg {
  transition: transform 0.2s ease;
}

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

.paragraph-glass-2ee3 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.aside-orange-0283:hover .paragraph-glass-2ee3 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.text-74cc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.down-9c21[aria-expanded="true"] .blue_794e:nth-child(2) {
  opacity: 0;
}

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

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

  .breadcrumb-selected-5a54::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .breadcrumb-selected-5a54.backdrop_8e9a {
    display: block;
    right: 0;
  }
  
  .highlight-fixed-8e40 {
    flex-direction: column;
    gap: 0;
  }
  
  .middle_c8c1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .breadcrumb-selected-5a54::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;
  }
  
  .breadcrumb-selected-5a54.backdrop_8e9a::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .breadcrumb-selected-5a54 {
    display: none;
  }
  
  .down-9c21 {
    display: flex;
  }
  
  .card_55dc {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .text-74cc,
  .image-c71b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .aside-orange-0283 {
    position: relative;
  }
  
  .paragraph-glass-2ee3 {
    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;
  }
  
  .border-yellow-008e[aria-expanded="true"] + .paragraph-glass-2ee3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .new_6720 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .text_pink_78a0 {
    gap: 8px;
  }
  
  .text-74cc {
    display: none;
  }
  
  .image-c71b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .list_cool_2941 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.lite-bbc3 svg {
  flex-shrink: 0;
}

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

.lite-bbc3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.bottom-6d63 a {
  color: var(--color-primary);
  text-decoration: none;
}

.bottom-6d63 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-6fd7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.info-clean-a8ba {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .picture-e988 {
    grid-template-columns: 1fr;
  }
  
  .pro-5717 {
    font-size: 1.75rem;
  }
  
  .info-clean-a8ba {
    order: -1;
    max-width: 100%;
  }
  
  .accordion_b34e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pro-5717 {
    font-size: 1.5rem;
  }
  
  .label_lower_7194 {
    font-size: 1rem;
  }
  
  .bottom-6d63 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .accordion_b34e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.outline-yellow-3c69 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-full-223e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool-63dc {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.cool-63dc 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) {
  .filter-inner-78e8 {
    grid-template-columns: 1fr;
  }
  
  .filter-full-223e {
    font-size: 1.75rem;
  }
  
  .bronze-f21e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .filter-full-223e {
    font-size: 1.5rem;
  }
  
  .bronze-f21e h3 {
    font-size: 1.375rem;
  }
  
  .bronze-f21e h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.tertiary-motion-932e {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.texture-pro-1dc7 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.aside_5914 {
  flex-shrink: 0;
}

.summary-hard-20c9 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.copper-9918,
.media_e107,
.down_4280 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.copper-9918 thead,
.media_e107 thead {
  background: var(--color-primary);
  color: white;
}

.copper-9918 th,
.copper-9918 td,
.media_e107 th,
.media_e107 td,
.down_4280 th,
.down_4280 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .copper-9918 th,
  .copper-9918 td,
  .media_e107 th,
  .media_e107 td,
  .down_4280 th,
  .down_4280 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .copper-9918,
  .media_e107,
  .down_4280 {
    min-width: 600px;
  }
}

.copper-9918 th,
.media_e107 th,
.down_4280 th {
  font-weight: 600;
}

.copper-9918 tbody tr:hover,
.media_e107 tbody tr:hover,
.down_4280 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.button_cold_91db h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.tiny-112b {
  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);
}

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

.narrow-58dc {
  font-weight: 600;
  color: white;
}

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

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

.badge-large-305f {
  color: #4caf50;
}

.text_e9b8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-bf7e .info_60e0 {
  width: 100%;
  background: white;
}

.info-small-5722 .info_60e0 {
  color: #667eea;
}

.small_1fec .info_60e0 {
  color: #f5576c;
}

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

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

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

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

.info-tall-c523 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .info-tall-c523 {
    padding: var(--space-md);
  }
  
  .primary_2de9 {
    padding: var(--space-md);
  }
  
  .input-540c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.motion_afdb,
.border_hard_945e,
.card-b69d,
.media-iron-9a26 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.image-active-6a7d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.fixed-fbca:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.label_pink_5be7 .photo_complex_6858 {
  background: #e8f5e9;
  color: var(--color-success);
}

.paragraph_white_2dfe .photo_complex_6858 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.tag-dim-9fca {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.large-d14e {
  text-align: center;
}

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

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

.photo_0b91 .narrow-58dc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.sidebar-14f6 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.hidden-0dff {
  color: var(--color-text-light);
}

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

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

.filter-large-3050 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.notice-fixed-81f8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.clean-b4e9 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.prev_a631 {
  text-align: right;
}

.prev_a631 .popup-lite-7d12 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.element-up-d581 {
  background: #e8f5e9;
  color: #2e7d32;
}

.action-20f2 {
  background: #e3f2fd;
  color: #1565c0;
}

.focus-prev-acb8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.tabs-out-3204 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-97b3 {
  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);
}

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

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

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

.secondary_1ad3,
.tall-3b51 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.secondary_1ad3 h4,
.tall-3b51 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.secondary_1ad3 ul,
.tall-3b51 ul {
  list-style: none;
  padding: 0;
}

.secondary_1ad3 li,
.tall-3b51 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.hidden-blue-7bd2 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.hidden-blue-7bd2 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.sidebar_9561 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.detail-clean-2552 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.modal_large_1b84 a:hover {
  color: white;
}

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

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

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

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

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

.banner_mini_ceeb a:hover {
  color: white;
}

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

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

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

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

.tooltip-prev-5bd6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.tooltip-prev-5bd6 .media_8135 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.message_paper_90e6 a:hover {
  color: white;
}

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

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

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

.smooth_3efc a:hover {
  color: white;
}

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

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

.picture-1b2c a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.component-e36a 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;
}

.box-soft-138f {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.box-soft-138f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hover-action-bdb8 {
    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;
  }
  
  .pro-5717 {
    font-size: 2rem;
  }
  
  .filter-full-223e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .picture-e988,
  .filter-inner-78e8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .menu_lower_adda,
  .content_soft_8c46,
  .hover_a657,
  .border_large_c1cb,
  .highlight_f9b0,
  .current_2b7a,
  .search-033d,
  .out_cae4,
  .preview_fluid_bc47 {
    grid-template-columns: 1fr;
  }
  
  .simple-540d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .accordion-cold-b9b1 {
    padding: var(--space-lg) 0;
  }
  
  .solid_38d0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .solid_38d0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .info_60e0 {
    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;
  }
  
  .simple-540d {
    grid-template-columns: 1fr;
  }
  
  .heading-6fd7,
  .texture-pressed-e9d3,
  .in-692f {
    flex-direction: column;
    width: 100%;
  }
  
  .focus_cold_3045,
  .outline-yellow-3c69,
  .heading-6fd7 .info_60e0,
  .texture-pressed-e9d3 .info_60e0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pro-5717 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .filter-full-223e {
    font-size: 1.375rem;
  }
  
  .complex-2096 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .lower_fde5,
  .right-d039,
  .accent-dim-05b4,
  .sidebar_wood_a031,
  .pink-b5d7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .full_ed23 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .large-023c {
    gap: var(--space-xs);
  }
  
  .lite-bbc3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tiny-112b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .photo_0b91 {
    width: 150px;
    height: 150px;
  }
  
  .title_down_3360 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .search-aa42,
  .notice_short_125e,
  .heading-6fd7,
  .caption-db50,
  .next-0e15,
  .basic_11a7,
  .down-9c21 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .accordion-cold-b9b1 {
    page-break-inside: avoid;
  }
}

/* css-noise: efac */
.ghost-box-d2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
