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

.backdrop-7a23:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.highlight-89ea,
header,
.wood-37bd,
.carousel_black_487f,
.prev_73fc,
.box_warm_c3e5,
.full-fc6d,
.input-plasma-0868,
.outer_501a {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.highlight-89ea {
  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);
}

.footer-new-82e1 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.highlight-89ea.light_13df {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.upper_36a4 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_db52 svg {
  flex-shrink: 0;
}

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

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

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

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

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

.highlight-dark-0ecb {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.basic-807a[aria-expanded="true"] .highlight-dark-0ecb:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.basic-807a[aria-expanded="true"] .highlight-dark-0ecb:nth-child(2) {
  opacity: 0;
}

.basic-807a[aria-expanded="true"] .highlight-dark-0ecb:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .upper_36a4 {
    display: none;
  }
  
  .basic-807a {
    display: flex;
  }
  
  .widget_wide_11a8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dropdown_db52,
  .glass_8810 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .backdrop_ed3a {
    position: relative;
  }
  
  .west-a49e {
    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;
  }
  
  .chip_2dab[aria-expanded="true"] + .west-a49e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .warm_5c0f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.pattern_thick_4507 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-orange-394a {
  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;
}

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

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

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

.accent-medium-a0d5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.input-ab91 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .component-purple-5d97 {
    grid-template-columns: 1fr;
  }
  
  .old_89a0 {
    font-size: 1.75rem;
  }
  
  .border_8431 {
    order: -1;
    max-width: 100%;
  }
  
  .input-ab91 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .old_89a0 {
    font-size: 1.5rem;
  }
  
  .hovered_0da6 {
    font-size: 1rem;
  }
  
  .aside_2e4a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .input-ab91 {
    max-width: 250px;
  }
}

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

.tertiary-1d0c {
  background: var(--color-primary);
  color: white;
}

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

.shadow-focused-9a36 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.shadow-focused-9a36:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.icon-small-755b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.carousel-inner-376c {
  list-style: none;
  counter-reset: toc-counter;
}

.carousel-inner-376c li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.carousel-inner-376c 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);
}

.carousel-inner-376c 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;
}

.carousel-inner-376c li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-f442 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) {
  .grid-153e {
    grid-template-columns: 1fr;
  }
  
  .sort_small_b161 {
    font-size: 1.75rem;
  }
  
  .cool-d6a0 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sort_small_b161 {
    font-size: 1.5rem;
  }
  
  .cool-d6a0 h3 {
    font-size: 1.375rem;
  }
  
  .cool-d6a0 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.item_ba91 {
  flex-shrink: 0;
}

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

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

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

.tooltip_motion_7531,
.summary-liquid-5a27,
.full-f112 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tooltip_motion_7531 thead,
.summary-liquid-5a27 thead {
  background: var(--color-primary);
  color: white;
}

.tooltip_motion_7531 th,
.tooltip_motion_7531 td,
.summary-liquid-5a27 th,
.summary-liquid-5a27 td,
.full-f112 th,
.full-f112 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tooltip_motion_7531 th,
  .tooltip_motion_7531 td,
  .summary-liquid-5a27 th,
  .summary-liquid-5a27 td,
  .full-f112 th,
  .full-f112 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tooltip_motion_7531,
  .summary-liquid-5a27,
  .full-f112 {
    min-width: 600px;
  }
}

.tooltip_motion_7531 th,
.summary-liquid-5a27 th,
.full-f112 th {
  font-weight: 600;
}

.tooltip_motion_7531 tbody tr:hover,
.summary-liquid-5a27 tbody tr:hover,
.full-f112 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.lite-8e7e h4 {
  color: white;
}

.main-silver-1ea0 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.notice-middle-586f {
  text-align: center;
  margin-bottom: var(--space-md);
}

.caption-2cc0 {
  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);
}

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

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

.description-2040 {
  list-style: none;
  padding: 0;
}

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

.container_wide_918a {
  color: #4caf50;
}

.mask-629d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_a60a .primary_192c {
  width: 100%;
  background: white;
}

.warm-83ee .primary_192c {
  color: #667eea;
}

.link-bcd3 .primary_192c {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .primary-b9a3 {
    padding: var(--space-md);
  }
  
  .advanced_8cb7 {
    padding: var(--space-md);
  }
  
  .border_c94a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.rough_3bf3,
.fluid_4298,
.banner-full-1f77,
.background_6e4f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.row-yellow-42e1 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.input-slow-2430 {
  border-color: var(--color-success);
}

.label-145f {
  border-color: var(--color-warning);
}

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

.input-slow-2430 .dark_5de5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.label-145f .dark_5de5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_09ab {
  text-align: center;
}

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

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

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

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

.over-8bc8 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.row-west-2020 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.fast_5007 {
  text-align: right;
}

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

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

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

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

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

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

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

.panel-3f51 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.banner-down-0d84 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.frame-2f2d strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.south-5c1d {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tooltip_outer_c366[aria-expanded="true"] .south-5c1d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.smooth_f5db ul,
.grid_b3a7 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.accordion-cold-7606 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.form-df68 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list_basic_c43a .gallery_f753 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.medium_2077 a:hover {
  color: white;
}

.first-f10a {
  list-style: none;
  padding: 0;
}

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

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

.first-f10a a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .prev_0502 {
    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;
  }
  
  .old_89a0 {
    font-size: 2rem;
  }
  
  .sort_small_b161 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .component-purple-5d97,
  .grid-153e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .clean_7640,
  .list_under_f549,
  .info_light_59fd,
  .tall_d6a5,
  .dropdown-tall-bad7,
  .slow-a6c1,
  .inner_81cf,
  .gallery_cacd {
    grid-template-columns: 1fr;
  }
  
  .link_tall_fe6e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .full-fc6d {
    padding: var(--space-lg) 0;
  }
  
  .carousel-inner-376c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .carousel-inner-376c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .primary_192c {
    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;
  }
  
  .link_tall_fe6e {
    grid-template-columns: 1fr;
  }
  
  .accent-medium-a0d5,
  .header_east_5518,
  .button-1502 {
    flex-direction: column;
    width: 100%;
  }
  
  .active_hard_2b82,
  .hard_3c58,
  .accent-medium-a0d5 .primary_192c,
  .header_east_5518 .primary_192c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .old_89a0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sort_small_b161 {
    font-size: 1.375rem;
  }
  
  .modal-18db {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hidden_short_c847,
  .dropdown-black-4531,
  .black-fa3c,
  .photo-8071,
  .rough_333b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .form-middle-c209 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .search-selected-142a {
    gap: var(--space-xs);
  }
  
  .pattern_thick_4507 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .caption-2cc0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .module_liquid_5db8 {
    width: 150px;
    height: 150px;
  }
  
  .layout-f36f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .highlight-89ea,
  .wood-37bd,
  .accent-medium-a0d5,
  .badge_0a23,
  .input-plasma-0868,
  .outer_501a,
  .basic-807a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .full-fc6d {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.primary-706e {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

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