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

.label_slow_0367:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pink_1a67):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. */
.pink_1a67,
header,
.smooth_0c16,
.picture_a3b6,
.cold_03cd,
.mask-e2fb,
.gold_994c,
.message_03d1,
.heading_0f10 {
  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
   ============================================ */
.pink_1a67 {
  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);
}

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

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

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

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

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

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

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

.accent-baa2 {
  flex: 1;
}

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

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

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

.shadow_center_94f8.photo-e83f {
  background: var(--color-primary);
  color: white;
}

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

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

.brown-e691 svg {
  transition: transform 0.2s ease;
}

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

.row-pressed-a411 {
  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;
}

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

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

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

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

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

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

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

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

.copper_e3e1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .accent-baa2 {
    display: none;
  }
  
  .hover_right_7c02 {
    display: flex;
  }
  
  .panel_83cb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .copper_e3e1,
  .alert_c65c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .stone_ce41 {
    position: relative;
  }
  
  .row-pressed-a411 {
    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;
  }
  
  .brown-e691[aria-expanded="true"] + .row-pressed-a411 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .glass_ab09 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.old_5fdc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.accordion-warm-ab0a a {
  color: var(--color-primary);
  text-decoration: none;
}

.accordion-warm-ab0a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.east-8e89 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.east-8e89 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.dirty-423a {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.form-wood-23e2 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .focused_9291 {
    grid-template-columns: 1fr;
  }
  
  .message_copper_214a {
    font-size: 1.75rem;
  }
  
  .dirty-423a {
    order: -1;
    max-width: 100%;
  }
  
  .caption_13da {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .message_copper_214a {
    font-size: 1.5rem;
  }
  
  .link_dfe2 {
    font-size: 1rem;
  }
  
  .accordion-warm-ab0a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .caption_13da {
    max-width: 250px;
  }
}

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

.panel-action-c550 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.menu-cool-7b3d {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-simple-f552 {
  background: var(--color-bg-section);
}

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

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

.search-hovered-b389 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-1952 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) {
  .thumbnail_over_c567 {
    grid-template-columns: 1fr;
  }
  
  .search-hovered-b389 {
    font-size: 1.75rem;
  }
  
  .avatar_d724 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .search-hovered-b389 {
    font-size: 1.5rem;
  }
  
  .avatar_d724 h3 {
    font-size: 1.375rem;
  }
  
  .avatar_d724 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.hero-gas-be9e {
  flex-shrink: 0;
}

.paragraph-down-5dba strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.hidden-hard-7da9,
.list-dfbf,
.wrapper-b2f7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hidden-hard-7da9 thead,
.list-dfbf thead {
  background: var(--color-primary);
  color: white;
}

.hidden-hard-7da9 th,
.hidden-hard-7da9 td,
.list-dfbf th,
.list-dfbf td,
.wrapper-b2f7 th,
.wrapper-b2f7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hidden-hard-7da9 th,
  .hidden-hard-7da9 td,
  .list-dfbf th,
  .list-dfbf td,
  .wrapper-b2f7 th,
  .wrapper-b2f7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hidden-hard-7da9,
  .list-dfbf,
  .wrapper-b2f7 {
    min-width: 600px;
  }
}

.hidden-hard-7da9 th,
.list-dfbf th,
.wrapper-b2f7 th {
  font-weight: 600;
}

.hidden-hard-7da9 tbody tr:hover,
.list-dfbf tbody tr:hover,
.wrapper-b2f7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.nav_wide_b8fe h4 {
  color: white;
}

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

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

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

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

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

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

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

.yellow-bcc1:hover {
  text-decoration: underline;
}

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

.accordion-small-8dc7 {
  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);
}

.accordion-small-8dc7 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.mask-b1b9 {
  font-weight: 600;
  color: white;
}

.inner-8307 {
  list-style: none;
  padding: 0;
}

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

.widget-44cd {
  color: #4caf50;
}

.focused-39c4 {
  color: #ff9800;
}

.badge-stale-139c {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

.container-wood-1b5a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.container-wood-1b5a p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-2242 .overlay_3aa4 {
  width: 100%;
  background: white;
}

.first_b903 .overlay_3aa4 {
  color: #667eea;
}

.hidden-copper-9ece .overlay_3aa4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .wrapper-white-fbcb {
    padding: var(--space-md);
  }
  
  .brown_54a7 {
    padding: var(--space-md);
  }
  
  .button-action-9b61 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.button-action-9b61 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.left-f820,
.dark_e093,
.narrow_885f,
.image_4378 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-middle-3733 {
  border-color: var(--color-success);
}

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

.notification-fluid-9bd0 {
  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);
}

.gallery-middle-3733 .notification-fluid-9bd0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.paragraph-b77b .notification-fluid-9bd0 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.gallery-6f4a {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.fixed-2d50 {
  text-align: center;
}

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

.button-dark-3aa2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.south_1ca6 .mask-b1b9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.block-solid-b3e7 p {
  margin-bottom: var(--space-md);
}

.sidebar-pressed-594e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.icon-active-a1f8 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.shadow-soft-0bbf {
  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;
}

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

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

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

.pagination_huge_551d {
  text-align: right;
}

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

.list-wood-37ee {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.list-0aee {
  background: #fff3e0;
  color: #e65100;
}

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

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

.fluid-375e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_red_d279,
.paragraph-a814 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.description_red_d279 h4,
.paragraph-a814 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.description_red_d279 ul,
.paragraph-a814 ul {
  list-style: none;
  padding: 0;
}

.description_red_d279 li,
.paragraph-a814 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.notification-purple-e245 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.chip-d40c {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.fixed-8c94 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.basic_7ece .inner_b6f8 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.hover_copper_2cda a:hover {
  color: white;
}

.icon-c11a {
  list-style: none;
  padding: 0;
}

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

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

.icon-c11a a:hover {
  color: white;
}

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

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

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

.status-out-afe8 {
  font-size: 0.75rem;
  color: #666666;
}

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

.video-advanced-628a {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.video-advanced-628a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .shade_under_cf7a {
    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;
  }
  
  .message_copper_214a {
    font-size: 2rem;
  }
  
  .search-hovered-b389 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .focused_9291,
  .thumbnail_over_c567 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .component_cc7e,
  .pattern_dynamic_b743,
  .shade-0b8a,
  .message_tall_c5b4,
  .menu-hard-b5ec,
  .old-76bf,
  .shadow_first_0d7e,
  .badge_fresh_761f {
    grid-template-columns: 1fr;
  }
  
  .outline-f97e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gold_994c {
    padding: var(--space-lg) 0;
  }
  
  .article_eee6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .article_eee6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .overlay_3aa4 {
    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;
  }
  
  .outline-f97e {
    grid-template-columns: 1fr;
  }
  
  .active_7236,
  .message_9b22,
  .row-solid-90e1 {
    flex-direction: column;
    width: 100%;
  }
  
  .menu_plasma_6aca,
  .menu-cool-7b3d,
  .active_7236 .overlay_3aa4,
  .message_9b22 .overlay_3aa4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .message_copper_214a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search-hovered-b389 {
    font-size: 1.375rem;
  }
  
  .section-upper-8845 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hot-3964,
  .container-wood-1b5a,
  .logo_95bd,
  .hover-7ad8,
  .liquid-ac80 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .module-faae {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .disabled-black-a0f3 {
    gap: var(--space-xs);
  }
  
  .old_5fdc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion-small-8dc7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .south_1ca6 {
    width: 150px;
    height: 150px;
  }
  
  .button-dark-3aa2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pink_1a67,
  .smooth_0c16,
  .active_7236,
  .frame_right_ee51,
  .message_03d1,
  .heading_0f10,
  .hover_right_7c02 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gold_994c {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 41ef */
.phantom-card-q2 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
