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

.mini-e484:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tall-7a4d,
header,
.next-855a,
.yellow-2076,
.up_79b6,
.hover_d126,
.tag_complex_6c2f,
.tabs_smooth_4488,
.sidebar-new-b0e2 {
  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
   ============================================ */
.tall-7a4d {
  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);
}

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

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

/* Scrolled state */
.tall-7a4d.component-top-9dc2 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.photo-hard-ba1e img {
  height: 36px;
  width: auto;
  display: block;
}

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

.summary-dirty-9ede {
  flex: 1;
}

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

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

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

.breadcrumb-eedc.fn-active-1f3e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.block-ed65 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero_ff36 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .summary-dirty-9ede::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .summary-dirty-9ede.description_mini_53fe {
    display: block;
    right: 0;
  }
  
  .carousel-static-3477 {
    flex-direction: column;
    gap: 0;
  }
  
  .breadcrumb-eedc {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .summary-dirty-9ede::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;
  }
  
  .summary-dirty-9ede.description_mini_53fe::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .summary-dirty-9ede {
    display: none;
  }
  
  .selected_bc35 {
    display: flex;
  }
  
  .fresh_78e6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hero_ff36,
  .gallery_9e5e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .block-ed65 {
    position: relative;
  }
  
  .caption_720d {
    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;
  }
  
  .column_huge_732d[aria-expanded="true"] + .caption_720d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notification-south-091e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .label-0f6e {
    gap: 8px;
  }
  
  .hero_ff36 {
    display: none;
  }
  
  .gallery_9e5e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .photo-hard-ba1e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.tag_clean_0c50 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.chip-6d7f a {
  color: var(--color-primary);
  text-decoration: none;
}

.chip-6d7f a:hover {
  text-decoration: underline;
}

.solid-04fd {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.tertiary-wood-cc16 {
  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;
}

.panel-soft-802c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-soft-802c strong {
  font-weight: 600;
  color: var(--color-text);
}

.panel-soft-802c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.paragraph-4c23 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.caption-old-ad71 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .breadcrumb_a121 {
    grid-template-columns: 1fr;
  }
  
  .disabled-4272 {
    font-size: 1.75rem;
  }
  
  .paragraph-4c23 {
    order: -1;
    max-width: 100%;
  }
  
  .caption-old-ad71 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .disabled-4272 {
    font-size: 1.5rem;
  }
  
  .bright-3d4b {
    font-size: 1rem;
  }
  
  .chip-6d7f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .caption-old-ad71 {
    max-width: 250px;
  }
}

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

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

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

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

.notification-34b3:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.last-6d2b {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block_old_4d4b 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) {
  .pagination_bbf5 {
    grid-template-columns: 1fr;
  }
  
  .thick_a5b0 {
    font-size: 1.75rem;
  }
  
  .hover_f7d8 {
    max-width: 100%;
  }
}

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

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

.preview-0b2d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.shadow-8b29 {
  flex-shrink: 0;
}

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

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

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

.green_8e89,
.down_4a02,
.glass-7df1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.green_8e89 thead,
.down_4a02 thead {
  background: var(--color-primary);
  color: white;
}

.green_8e89 th,
.green_8e89 td,
.down_4a02 th,
.down_4a02 td,
.glass-7df1 th,
.glass-7df1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .green_8e89 th,
  .green_8e89 td,
  .down_4a02 th,
  .down_4a02 td,
  .glass-7df1 th,
  .glass-7df1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .green_8e89,
  .down_4a02,
  .glass-7df1 {
    min-width: 600px;
  }
}

.green_8e89 th,
.down_4a02 th,
.glass-7df1 th {
  font-weight: 600;
}

.green_8e89 tbody tr:hover,
.down_4a02 tbody tr:hover,
.glass-7df1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.current-023f h4 {
  color: white;
}

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

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

.static-66d3:last-child {
  border-bottom: none;
}

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

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

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

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

.old-71bf:hover {
  text-decoration: underline;
}

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

.primary-upper-0bd0 {
  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);
}

.primary-upper-0bd0 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.breadcrumb-003e {
  font-weight: 600;
  color: white;
}

.grid-selected-d3a9 {
  list-style: none;
  padding: 0;
}

.grid-selected-d3a9 li {
  padding: var(--space-xs) 0;
}

.module-in-6210 {
  color: #4caf50;
}

.hot-c7f1 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-left-8d12 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink-c59f .wrapper-paper-f629 {
  width: 100%;
  background: white;
}

.top_e4e7 .wrapper-paper-f629 {
  color: #667eea;
}

.heading_dim_e75e .wrapper-paper-f629 {
  color: #f5576c;
}

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

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

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

.copper-303b {
  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);
}

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

.status-70d2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .east_9387 {
    padding: var(--space-md);
  }
  
  .status-70d2 {
    padding: var(--space-md);
  }
  
  .gradient-brown-7dc8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.gradient-brown-7dc8 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.large-6621,
.element-12e8,
.main-first-d37a,
.sidebar_6710 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.caption-large-56dd h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.easy-cc48 .orange-8534 {
  background: #e8f5e9;
  color: var(--color-success);
}

.texture_e824 .orange-8534 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.grid-cold-55a8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

.lite-20db {
  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);
}

.medium_77e6 {
  text-align: center;
}

.chip-25df {
  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);
}

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

.chip-25df .breadcrumb-003e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_93a9 {
  text-align: right;
}

.shadow_93a9 .stale-99b2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.main-over-e4d6 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-pink-881e {
  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);
}

.carousel-pink-881e:hover {
  background: var(--color-bg-alt);
}

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

.carousel-pink-881e[aria-expanded="true"] .content-b6f3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_d0cc,
.heading-tall-8956 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.notification_d0cc h4,
.heading-tall-8956 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.notification_d0cc ul,
.heading-tall-8956 ul {
  list-style: none;
  padding: 0;
}

.notification_d0cc li,
.heading-tall-8956 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.layout_b234 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.in-1ab1 {
  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) */
.accent-16da {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.highlight-3016 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.highlight-3016 a:hover {
  color: white;
}

.thick_2fef {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

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

.thick_2fef a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.disabled_short_d00a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.disabled_short_d00a a:hover {
  color: white;
}

.filter_new_f38f > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .in-1ab1,
  .accent-16da {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.sidebar_dc13 .component_green_b457 {
  color: #4caf50;
  font-size: 0.875rem;
}

.heading-smooth-4813 {
  list-style: none;
  padding: 0;
}

.heading-smooth-4813 li {
  margin-bottom: var(--space-xs);
}

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

.heading-smooth-4813 a:hover {
  color: white;
}

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

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

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

.layout_2d1e a:hover {
  color: white;
}

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

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

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

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

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

.texture-dark-5beb a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.texture-dark-5beb 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;
}

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

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

@media (max-width: 768px) {
  .filter_new_f38f {
    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;
  }
  
  .disabled-4272 {
    font-size: 2rem;
  }
  
  .thick_a5b0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .breadcrumb_a121,
  .pagination_bbf5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .header-8600,
  .layout-paper-ccee,
  .title-c3ef,
  .media-0278,
  .button-3278,
  .border_6bb5,
  .tooltip_thick_f69d,
  .in-1ab1,
  .accent-16da {
    grid-template-columns: 1fr;
  }
  
  .tag-97b7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tag_complex_6c2f {
    padding: var(--space-lg) 0;
  }
  
  .focused_f968 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .focused_f968 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wrapper-paper-f629 {
    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;
  }
  
  .tag-97b7 {
    grid-template-columns: 1fr;
  }
  
  .picture_bf8f,
  .chip_first_dcdd,
  .dark-126a {
    flex-direction: column;
    width: 100%;
  }
  
  .focus_411e,
  .layout_bright_d5ed,
  .picture_bf8f .wrapper-paper-f629,
  .chip_first_dcdd .wrapper-paper-f629 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .disabled-4272 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .thick_a5b0 {
    font-size: 1.375rem;
  }
  
  .detail_stone_541e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort_5bda,
  .full-df44,
  .copper-9754,
  .tabs_d09e,
  .in_bb1d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mask-pressed-1924 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .caption_608e {
    gap: var(--space-xs);
  }
  
  .tag_clean_0c50 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .primary-upper-0bd0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip-25df {
    width: 150px;
    height: 150px;
  }
  
  .wood_e695 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tall-7a4d,
  .next-855a,
  .picture_bf8f,
  .action-b3ef,
  .tabs_smooth_4488,
  .sidebar-new-b0e2,
  .selected_bc35 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tag_complex_6c2f {
    page-break-inside: avoid;
  }
}

/* css-noise: 5aba */
.phantom-card-p6 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
