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

.gradient_last_fb54:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.short_a404,
header,
.wide_af6c,
.table_fresh_dec3,
.notice-fluid-e79b,
.cool_084d,
.focus_liquid_de8c,
.carousel_light_692c,
.huge_7523 {
  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
   ============================================ */
.short_a404 {
  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);
}

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

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

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

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

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

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

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

.menu-8528 {
  flex: 1;
}

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

.title-wood-69a5 {
  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);
}

.title-wood-69a5:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.title-wood-69a5.fn-active-8f9a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold_c803 svg {
  flex-shrink: 0;
}

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

.search-9dd0: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);
}

.search-9dd0 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.glass-332b[aria-expanded="true"] .tall_a033:nth-child(2) {
  opacity: 0;
}

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

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

  .menu-8528::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .menu-8528.orange-786a {
    display: block;
    right: 0;
  }
  
  .element_bronze_a1b2 {
    flex-direction: column;
    gap: 0;
  }
  
  .title-wood-69a5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .menu-8528::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;
  }
  
  .menu-8528.orange-786a::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .menu-8528 {
    display: none;
  }
  
  .glass-332b {
    display: flex;
  }
  
  .south-ce00 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gold_c803,
  .search-9dd0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .wood_7c2f {
    position: relative;
  }
  
  .secondary_paper_2cea {
    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;
  }
  
  .banner_29ff[aria-expanded="true"] + .secondary_paper_2cea {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .silver-a297 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .icon-0df3 {
    gap: 8px;
  }
  
  .gold_c803 {
    display: none;
  }
  
  .search-9dd0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .easy_d47f img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.stone-7154 svg {
  flex-shrink: 0;
}

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

.stone-7154 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.old-bf41 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.solid-839e {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.shade-fc04 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gallery_fresh_cd1a {
    grid-template-columns: 1fr;
  }
  
  .brown-1e97 {
    font-size: 1.75rem;
  }
  
  .content_cb07 {
    order: -1;
    max-width: 100%;
  }
  
  .shade-fc04 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .brown-1e97 {
    font-size: 1.5rem;
  }
  
  .north_4617 {
    font-size: 1rem;
  }
  
  .old-bf41 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .shade-fc04 {
    max-width: 250px;
  }
}

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

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

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

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

.notification-in-ef21:hover {
  background: var(--color-primary);
  color: white;
}

.badge-static-5fa5 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.badge-static-5fa5:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.warm-1b1e {
  list-style: none;
  counter-reset: toc-counter;
}

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

.warm-1b1e 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);
}

.warm-1b1e 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;
}

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

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

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

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

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

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

.main-inner-9379 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel-e0ca 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) {
  .hover-ff86 {
    grid-template-columns: 1fr;
  }
  
  .link_cb46 {
    font-size: 1.75rem;
  }
  
  .gallery_pro_6797 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.silver-7456 {
  flex-shrink: 0;
}

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

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

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

.block-plasma-201e,
.text-fresh-e9a2,
.overlay-3f83 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.block-plasma-201e thead,
.text-fresh-e9a2 thead {
  background: var(--color-primary);
  color: white;
}

.block-plasma-201e th,
.block-plasma-201e td,
.text-fresh-e9a2 th,
.text-fresh-e9a2 td,
.overlay-3f83 th,
.overlay-3f83 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .block-plasma-201e th,
  .block-plasma-201e td,
  .text-fresh-e9a2 th,
  .text-fresh-e9a2 td,
  .overlay-3f83 th,
  .overlay-3f83 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .block-plasma-201e,
  .text-fresh-e9a2,
  .overlay-3f83 {
    min-width: 600px;
  }
}

.block-plasma-201e th,
.text-fresh-e9a2 th,
.overlay-3f83 th {
  font-weight: 600;
}

.block-plasma-201e tbody tr:hover,
.text-fresh-e9a2 tbody tr:hover,
.overlay-3f83 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.silver-9150 h4 {
  color: white;
}

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

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

.heading-64ef:last-child {
  border-bottom: none;
}

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

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

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

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

.video-a8d0:hover {
  text-decoration: underline;
}

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

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

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

.solid-78fd {
  font-weight: 600;
  color: white;
}

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

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

.wide_87ce {
  color: #4caf50;
}

.tag-6e38 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-88a1 .black_7449 {
  width: 100%;
  background: white;
}

.down-d684 .black_7449 {
  color: #667eea;
}

.aside_d224 .black_7449 {
  color: #f5576c;
}

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

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

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

.status-6f16 {
  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);
}

.paragraph-cold-9b23 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .paragraph-cold-9b23 {
    padding: var(--space-md);
  }
  
  .pressed-3946 {
    padding: var(--space-md);
  }
  
  .icon_narrow_c667 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.prev_510f,
.hard-c3ac,
.static-9fca,
.section_purple_62f7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_red_7e75 .short_7e2a {
  background: #e8f5e9;
  color: var(--color-success);
}

.texture_advanced_73e0 .short_7e2a {
  background: #fff3e0;
  color: var(--color-warning);
}

.sort-black-85ee h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.sort-black-85ee p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.button_29e5 {
  text-align: center;
}

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

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

.simple-6147 .solid-78fd {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.block-bottom-949c {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.narrow-f046 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-31d8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.tag-5eab {
  text-align: right;
}

.tag-5eab .up-fb20 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.shadow-7753 {
  background: #e8f5e9;
  color: #2e7d32;
}

.easy-97d8 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_narrow_37c5 ul,
.pink_bf1f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.background-523f {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

.popup-85d9 {
  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);
}

.accent_a04a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.modal_blue_4686 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.sidebar-smooth-32fa {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-smooth-32fa li {
  margin-bottom: var(--space-xs);
}

.sidebar-smooth-32fa a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.sidebar-smooth-32fa a:hover {
  color: white;
}

.widget-fluid-2c98 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.widget-fluid-2c98 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.widget-fluid-2c98 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.button-dirty-63f0 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.button-dirty-63f0 a:hover {
  color: white;
}

.popup-brown-07d4 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.dark_eb77 .solid-839e {
  color: #4caf50;
  font-size: 0.875rem;
}

.media-691b {
  list-style: none;
  padding: 0;
}

.media-691b li {
  margin-bottom: var(--space-xs);
}

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

.media-691b a:hover {
  color: white;
}

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

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

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

.box_liquid_df23 a:hover {
  color: white;
}

.popup-brown-07d4 {
  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);
}

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

.sort-83a3 a {
  color: #4caf50;
  text-decoration: none;
}

.dropdown-inner-6be4 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.secondary_fluid_2327 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.link-liquid-79a6 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.link-liquid-79a6:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .popup-brown-07d4 {
    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;
  }
  
  .brown-1e97 {
    font-size: 2rem;
  }
  
  .link_cb46 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gallery_fresh_cd1a,
  .hover-ff86 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .alert_0aea,
  .alert-8591,
  .link_6229,
  .cool_bd89,
  .easy-4998,
  .icon_upper_6cc8,
  .plasma-860e,
  .frame_hovered_73f1,
  .modal_blue_4686 {
    grid-template-columns: 1fr;
  }
  
  .pattern-blue-eb3e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .focus_liquid_de8c {
    padding: var(--space-lg) 0;
  }
  
  .warm-1b1e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .warm-1b1e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .black_7449 {
    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;
  }
  
  .pattern-blue-eb3e {
    grid-template-columns: 1fr;
  }
  
  .cold_f8f8,
  .chip-old-ce15,
  .shade_fresh_955a {
    flex-direction: column;
    width: 100%;
  }
  
  .action_f753,
  .backdrop_58de,
  .cold_f8f8 .black_7449,
  .chip-old-ce15 .black_7449 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .brown-1e97 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .link_cb46 {
    font-size: 1.375rem;
  }
  
  .cold-96e8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .blue_f25b,
  .image_small_fef1,
  .preview-f643,
  .description-dab3,
  .old-a8a6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .prev_87f5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .input-4a98 {
    gap: var(--space-xs);
  }
  
  .stone-7154 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .cool_05ca {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .simple-6147 {
    width: 150px;
    height: 150px;
  }
  
  .frame-soft-cb60 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .short_a404,
  .wide_af6c,
  .cold_f8f8,
  .media-7a2d,
  .carousel_light_692c,
  .huge_7523,
  .glass-332b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .focus_liquid_de8c {
    page-break-inside: avoid;
  }
}

/* css-noise: 1e2a */
.phantom-card-c0 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
