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

.hover-698a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.alert-aa51,
header,
.fixed_1607,
.link-over-6635,
.outline_simple_09ef,
.purple_0cf5,
.component-b1e1,
.secondary-8c51,
.button-6722 {
  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
   ============================================ */
.alert-aa51 {
  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);
}

.info-complex-0c60 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.picture-245b img {
  height: 36px;
  width: auto;
  display: block;
}

.easy-320f {
  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;
}

.light_817a {
  flex: 1;
}

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

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

.filter-simple-0024:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.filter-simple-0024.fn-active-4af9 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.left-63d1 {
  position: relative;
}

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

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

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

.tabs-prev-4777 {
  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;
}

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

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

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

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

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

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

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

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

.purple-f8a0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.old-60db[aria-expanded="true"] .border_53c5:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .light_817a {
    display: none;
  }
  
  .old-60db {
    display: flex;
  }
  
  .easy-320f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .purple-f8a0,
  .static_d86c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .left-63d1 {
    position: relative;
  }
  
  .tabs-prev-4777 {
    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;
  }
  
  .summary_024b[aria-expanded="true"] + .tabs-prev-4777 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .new_69f9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .component_1bf1 {
    gap: 8px;
  }
  
  .purple-f8a0 {
    display: none;
  }
  
  .static_d86c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture-245b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.summary-lite-a35a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.sort-8a91 a {
  color: var(--color-primary);
  text-decoration: none;
}

.sort-8a91 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-white-8352 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .photo_thick_806f {
    grid-template-columns: 1fr;
  }
  
  .card_stone_4f7d {
    font-size: 1.75rem;
  }
  
  .input_6f56 {
    order: -1;
    max-width: 100%;
  }
  
  .tooltip-white-8352 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .card_stone_4f7d {
    font-size: 1.5rem;
  }
  
  .under-aabb {
    font-size: 1rem;
  }
  
  .sort-8a91 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tooltip-white-8352 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.panel-690f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-928f {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.highlight-last-6bba {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.highlight-last-6bba img {
  max-width: 100%;
  height: auto;
  display: block;
}

.highlight-last-6bba pre,
.highlight-last-6bba code {
  overflow-x: auto;
  max-width: 100%;
}

.highlight-last-6bba 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);
}

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

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

.highlight-last-6bba p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.highlight-last-6bba ul,
.highlight-last-6bba ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.highlight-last-6bba li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.highlight-last-6bba strong {
  font-weight: 600;
  color: var(--color-text);
}

.highlight-last-6bba a {
  color: var(--color-primary);
  text-decoration: underline;
}

.highlight-last-6bba a:hover {
  color: var(--color-primary-dark);
}

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

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

.hidden_pro_d413 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) {
  .modal-thick-796a {
    grid-template-columns: 1fr;
  }
  
  .wood_8c96 {
    font-size: 1.75rem;
  }
  
  .highlight-last-6bba {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wood_8c96 {
    font-size: 1.5rem;
  }
  
  .highlight-last-6bba h3 {
    font-size: 1.375rem;
  }
  
  .highlight-last-6bba h4 {
    font-size: 1.125rem;
  }
}

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

.modal-pink-1ede {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.message-c1b4 {
  flex-shrink: 0;
}

.card-short-50e3 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.lower_4aed,
.paragraph-west-969a,
.table_lite_2978 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lower_4aed thead,
.paragraph-west-969a thead {
  background: var(--color-primary);
  color: white;
}

.lower_4aed th,
.lower_4aed td,
.paragraph-west-969a th,
.paragraph-west-969a td,
.table_lite_2978 th,
.table_lite_2978 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lower_4aed th,
  .lower_4aed td,
  .paragraph-west-969a th,
  .paragraph-west-969a td,
  .table_lite_2978 th,
  .table_lite_2978 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .lower_4aed,
  .paragraph-west-969a,
  .table_lite_2978 {
    min-width: 600px;
  }
}

.lower_4aed th,
.paragraph-west-969a th,
.table_lite_2978 th {
  font-weight: 600;
}

.lower_4aed tbody tr:hover,
.paragraph-west-969a tbody tr:hover,
.table_lite_2978 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.header-dirty-29ed {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.hard_a19c h4 {
  color: white;
}

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

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

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

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

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

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

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

.highlight-soft-3256:hover {
  text-decoration: underline;
}

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

.gradient-advanced-f56b {
  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);
}

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

.mini-95f8 {
  font-weight: 600;
  color: white;
}

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

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

.menu-f79f {
  color: #4caf50;
}

.info-7e9c {
  color: #ff9800;
}

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

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

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

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

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

.box-liquid-0850 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out-91b6 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.wide-697f .label_middle_f907 {
  width: 100%;
  background: white;
}

.article_0e95 .label_middle_f907 {
  color: #667eea;
}

.dark_679a .label_middle_f907 {
  color: #f5576c;
}

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

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

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

.main_warm_4844 {
  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_e48b h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .paragraph_e48b {
    padding: var(--space-md);
  }
  
  .hero_062c {
    padding: var(--space-md);
  }
  
  .progress-796b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tag_598a,
.notice-7454,
.paragraph-red-dd50,
.hidden-glass-7591 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_3637 .south-1003 {
  background: #e8f5e9;
  color: var(--color-success);
}

.lite-b758 .south-1003 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.picture-8a0f {
  margin-top: var(--space-xxl);
}

.hard-229b {
  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);
}

.static_6b02 {
  text-align: center;
}

.next-5bd8 {
  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);
}

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

.next-5bd8 .mini-95f8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.component-2cef p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-active-453a {
  text-align: right;
}

.tertiary-active-453a .header_ecbe {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.filter-fast-e7e0 {
  background: #e8f5e9;
  color: #2e7d32;
}

.grid-pressed-88bd {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

.carousel-98fd {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.tooltip-medium-2b80 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tooltip-medium-2b80:hover {
  background: var(--color-bg-alt);
}

.form-tiny-70b3 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tooltip-medium-2b80[aria-expanded="true"] .form-tiny-70b3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-soft-db60,
.copper-d9db {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.feature-soft-db60 h4,
.copper-d9db h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.feature-soft-db60 ul,
.copper-d9db ul {
  list-style: none;
  padding: 0;
}

.feature-soft-db60 li,
.copper-d9db li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.heading-white-f00a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.progress_prev_da70 {
  font-style: italic;
}

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

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

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

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

.mask-left-977f {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-white-bc13 .disabled-d8b0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.image-9275 {
  list-style: none;
  padding: 0;
}

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

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

.image-9275 a:hover {
  color: white;
}

.shadow-2b78 {
  list-style: none;
  padding: 0;
}

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

.shadow-2b78 a {
  color: #b0b0b0;
  text-decoration: none;
}

.shadow-2b78 a:hover {
  color: white;
}

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

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

.hover-cool-37c7 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.liquid-8bd3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .popup-d01f {
    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;
  }
  
  .card_stone_4f7d {
    font-size: 2rem;
  }
  
  .wood_8c96 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .photo_thick_806f,
  .modal-thick-796a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accordion_gold_6d62,
  .paragraph_85ed,
  .slow_bba2,
  .article-steel-3410,
  .chip-soft-d140,
  .cold_e0f5,
  .grid_iron_4cb5,
  .link-d822 {
    grid-template-columns: 1fr;
  }
  
  .shade_pink_8e26 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .component-b1e1 {
    padding: var(--space-lg) 0;
  }
  
  .menu_91aa li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .menu_91aa li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .label_middle_f907 {
    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;
  }
  
  .shade_pink_8e26 {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb_prev_da25,
  .mask-left-977f,
  .section-out-7d73 {
    flex-direction: column;
    width: 100%;
  }
  
  .panel-690f,
  .photo_last_ab27,
  .breadcrumb_prev_da25 .label_middle_f907,
  .mask-left-977f .label_middle_f907 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .card_stone_4f7d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .wood_8c96 {
    font-size: 1.375rem;
  }
  
  .summary_simple_3774 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wide_7279,
  .clean-b759,
  .message-fluid-89d6,
  .highlight-1e6b,
  .motion-4aba {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .highlight_dfc9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .purple-9fec {
    gap: var(--space-xs);
  }
  
  .summary-lite-a35a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gradient-advanced-f56b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .next-5bd8 {
    width: 150px;
    height: 150px;
  }
  
  .active_top_ca38 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .alert-aa51,
  .fixed_1607,
  .breadcrumb_prev_da25,
  .active_8327,
  .secondary-8c51,
  .button-6722,
  .old-60db {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .component-b1e1 {
    page-break-inside: avoid;
  }
}

/* css-noise: d718 */
.phantom-card-q1 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
