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

.cool-e58c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.breadcrumb-light-ec67,
header,
.module-fluid-bff5,
.footer_small_6b8f,
.frame_d72c,
.content-bright-1aba,
.cold-9d25,
.overlay-north-55d4,
.container_c85f {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.breadcrumb-light-ec67 {
  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);
}

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

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

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

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

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

.fixed-5ef8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.bottom_8f4f {
  flex: 1;
}

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

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

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

.text_4587.fn-active-b3f0 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.light-fa55 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.backdrop-top-0b21 {
  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;
}

.backdrop-top-0b21: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);
}

.backdrop-top-0b21 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .bottom_8f4f {
    display: none;
  }
  
  .solid-f413 {
    display: flex;
  }
  
  .footer_static_b43f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .light-fa55,
  .backdrop-top-0b21 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .light_8343 {
    position: relative;
  }
  
  .last_e50f {
    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;
  }
  
  .clean_21ab[aria-expanded="true"] + .last_e50f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .orange-0675 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .progress-67ac {
    gap: 8px;
  }
  
  .light-fa55 {
    display: none;
  }
  
  .backdrop-top-0b21 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fixed-5ef8 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .backdrop-top-0b21 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .backdrop-top-0b21 svg {
    width: 14px;
    height: 14px;
  }
  
  .button-fresh-f682 {
    gap: var(--space-sm);
  }
}

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

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

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

.tall_c928 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tag-wide-9f80 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tag-wide-9f80 a:hover {
  text-decoration: underline;
}

.layout-lower-145a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.green-165f {
  display: flex;
  gap: var(--space-sm);
}

.filter-9aa4 {
  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;
}

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

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

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

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

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

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

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

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

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

.main-advanced-0f10 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.logo-bronze-5a1e {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .border-fresh-59ec {
    grid-template-columns: 1fr;
  }
  
  .article_a02c {
    font-size: 1.75rem;
  }
  
  .yellow_abc3 {
    order: -1;
    max-width: 100%;
  }
  
  .feature_slow_f835 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .article_a02c {
    font-size: 1.5rem;
  }
  
  .warm-2704 {
    font-size: 1rem;
  }
  
  .tag-wide-9f80 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .feature_slow_f835 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-simple-7473 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.summary-simple-7473 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);
}

.summary-simple-7473 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-brown-fb19 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.nav-brown-fb19 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) {
  .aside_short_77f1 {
    grid-template-columns: 1fr;
  }
  
  .selected-4025 {
    font-size: 1.75rem;
  }
  
  .section_hovered_0d0c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .selected-4025 {
    font-size: 1.5rem;
  }
  
  .section_hovered_0d0c h3 {
    font-size: 1.375rem;
  }
  
  .section_hovered_0d0c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.container_6b1d {
  flex-shrink: 0;
}

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

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

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

.west_9d3b,
.form-6f2b,
.progress_db26 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.west_9d3b thead,
.form-6f2b thead {
  background: var(--color-primary);
  color: white;
}

.west_9d3b th,
.west_9d3b td,
.form-6f2b th,
.form-6f2b td,
.progress_db26 th,
.progress_db26 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .west_9d3b th,
  .west_9d3b td,
  .form-6f2b th,
  .form-6f2b td,
  .progress_db26 th,
  .progress_db26 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .west_9d3b,
  .form-6f2b,
  .progress_db26 {
    min-width: 600px;
  }
}

.west_9d3b th,
.form-6f2b th,
.progress_db26 th {
  font-weight: 600;
}

.west_9d3b tbody tr:hover,
.form-6f2b tbody tr:hover,
.progress_db26 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption_5052 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-orange-af16 {
  color: #4caf50;
}

.focus-under-e8ae {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny_7b8c .section_1359 {
  width: 100%;
  background: white;
}

.button_00e6 .section_1359 {
  color: #667eea;
}

.nav-wood-31e8 .section_1359 {
  color: #f5576c;
}

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

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

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

.message-blue-c080 {
  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);
}

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

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

@media (max-width: 768px) {
  .hover-8160 {
    padding: var(--space-md);
  }
  
  .hard_c090 {
    padding: var(--space-md);
  }
  
  .photo-west-985c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.filter-fresh-4e7e ol,
.filter-fresh-4e7e ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.filter-fresh-4e7e li {
  margin-bottom: var(--space-sm);
}

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

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

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

.photo-west-985c {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.alert-17f8,
.input_e56a,
.breadcrumb-d781,
.notice_mini_b6ab {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.full_a751 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-de41 .easy_6997 {
  background: #e8f5e9;
  color: var(--color-success);
}

.nav-fd07 .easy_6997 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.chip-basic-b092 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.section-upper-9a55 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.complex-448a {
  text-align: center;
}

.pattern-prev-5a2a {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.overlay-hot-414f {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.pattern-prev-5a2a .logo_tiny_923c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.row-middle-4b4e {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.link-motion-bef2 p {
  margin-bottom: var(--space-md);
}

.pattern-down-937f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.center-660b {
  margin-bottom: var(--space-xl);
}

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

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

.content-pro-a05d {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.main-liquid-1e61 {
  border: 2px solid #4caf50;
}

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

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

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

.active-iron-968c {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.small_67c6 {
  text-align: right;
}

.small_67c6 .panel-center-3358 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.tabs-9ff8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.gallery-rough-23ff strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-422d {
  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-422d {
    grid-template-columns: 1fr;
  }
}

.row-4538,
.gradient-ca27 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.row-4538 h4,
.gradient-ca27 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.row-4538 ul,
.gradient-ca27 ul {
  list-style: none;
  padding: 0;
}

.row-4538 li,
.gradient-ca27 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .module-green-857c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

.lower-26c2 {
  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);
}

.middle-6e6d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture_orange_7c71 .green-165f {
  color: #4caf50;
  font-size: 0.875rem;
}

.bronze-7f3b {
  list-style: none;
  padding: 0;
}

.bronze-7f3b li {
  margin-bottom: var(--space-xs);
}

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

.bronze-7f3b a:hover {
  color: white;
}

.bronze-3ec0 {
  list-style: none;
  padding: 0;
}

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

.bronze-3ec0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.bronze-3ec0 a:hover {
  color: white;
}

.summary-focused-cf62 {
  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);
}

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

.lite-7b4f a {
  color: #4caf50;
  text-decoration: none;
}

.wide-7c3f {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .summary-focused-cf62 {
    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;
  }
  
  .article_a02c {
    font-size: 2rem;
  }
  
  .selected-4025 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .border-fresh-59ec,
  .aside_short_77f1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box_e562,
  .fixed_5f89,
  .paragraph_303d,
  .gold_6e1d,
  .menu-422d,
  .module-green-857c,
  .hero_8d28,
  .accordion_fbcd {
    grid-template-columns: 1fr;
  }
  
  .card-left-31df {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .cold-9d25 {
    padding: var(--space-lg) 0;
  }
  
  .summary-simple-7473 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .summary-simple-7473 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .section_1359 {
    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;
  }
  
  .card-left-31df {
    grid-template-columns: 1fr;
  }
  
  .stone-ba31,
  .texture-1abc,
  .pattern-bbea {
    flex-direction: column;
    width: 100%;
  }
  
  .mask_4524,
  .accent_e5c8,
  .stone-ba31 .section_1359,
  .texture-1abc .section_1359 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .article_a02c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .selected-4025 {
    font-size: 1.375rem;
  }
  
  .tall-e408 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .narrow-53e8,
  .paragraph_fresh_c4fa,
  .overlay_center_5065,
  .hard-03f4,
  .title_lower_8f29 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .full_a751 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tooltip_short_616b {
    gap: var(--space-xs);
  }
  
  .tall_c928 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .mask_top_8338 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pattern-prev-5a2a {
    width: 150px;
    height: 150px;
  }
  
  .overlay-hot-414f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .breadcrumb-light-ec67,
  .module-fluid-bff5,
  .stone-ba31,
  .gallery_fbdf,
  .overlay-north-55d4,
  .container_c85f,
  .solid-f413 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .cold-9d25 {
    page-break-inside: avoid;
  }
}

/* css-noise: a415 */
.shadow-element-r7 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
