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

.table_right_81c1:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .content-new-238b {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .content-new-238b {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.notification-medium-299b,
header,
.over-a502,
.video_4c73,
.photo_steel_f810,
.tooltip_46b0,
.gallery_8062,
.wrapper_9815,
.focus-prev-1aa6 {
  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
   ============================================ */
.notification-medium-299b {
  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);
}

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

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

/* Scrolled state */
.notification-medium-299b.chip_current_4993 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.solid_b1a7 {
  flex: 1;
}

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

.lite-4ac4 {
  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);
}

.lite-4ac4:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.lite-4ac4.fn-active-74e8 {
  background: var(--color-primary);
  color: white;
}

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

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

.texture-2540 svg {
  transition: transform 0.2s ease;
}

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

.button-glass-2327 {
  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;
}

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

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

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

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

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

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

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

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

.photo-03df svg {
  flex-shrink: 0;
}

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

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

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

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

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

.alert-right-536a {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.dirty-d072[aria-expanded="true"] .alert-right-536a:nth-child(2) {
  opacity: 0;
}

.dirty-d072[aria-expanded="true"] .alert-right-536a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .solid_b1a7 {
    display: none;
  }
  
  .dirty-d072 {
    display: flex;
  }
  
  .detail-0694 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .photo-03df,
  .shade_c679 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .lite_e12d {
    position: relative;
  }
  
  .button-glass-2327 {
    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;
  }
  
  .texture-2540[aria-expanded="true"] + .button-glass-2327 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .progress_438f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .carousel_cc5b {
    gap: 8px;
  }
  
  .photo-03df {
    display: none;
  }
  
  .shade_c679 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .chip_hard_a12e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.section_84f8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over-3150 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .media-f0db {
    grid-template-columns: 1fr;
  }
  
  .container_current_121b {
    font-size: 1.75rem;
  }
  
  .shadow_wide_c390 {
    order: -1;
    max-width: 100%;
  }
  
  .over-3150 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container_current_121b {
    font-size: 1.5rem;
  }
  
  .hidden-0c53 {
    font-size: 1rem;
  }
  
  .title_over_c38e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .over-3150 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-down-1f9b {
  background: var(--color-bg-section);
}

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

.sort-in-78f9 {
  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);
}

.wrapper-61ba {
  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);
}

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

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

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

.header-copper-37a3 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.header-copper-37a3 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header-copper-37a3 pre,
.header-copper-37a3 code {
  overflow-x: auto;
  max-width: 100%;
}

.header-copper-37a3 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);
}

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

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

.header-copper-37a3 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.header-copper-37a3 ul,
.header-copper-37a3 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.header-copper-37a3 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.header-copper-37a3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.header-copper-37a3 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-copper-37a3 a:hover {
  color: var(--color-primary-dark);
}

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

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

.active_ced2 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) {
  .hard-6dc0 {
    grid-template-columns: 1fr;
  }
  
  .wrapper-61ba {
    font-size: 1.75rem;
  }
  
  .header-copper-37a3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wrapper-61ba {
    font-size: 1.5rem;
  }
  
  .header-copper-37a3 h3 {
    font-size: 1.375rem;
  }
  
  .header-copper-37a3 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.tooltip-down-3a03 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.banner_current_e886 {
  flex-shrink: 0;
}

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

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

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

.primary-fresh-c188,
.paragraph_active_666c,
.top_2701 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.primary-fresh-c188 thead,
.paragraph_active_666c thead {
  background: var(--color-primary);
  color: white;
}

.primary-fresh-c188 th,
.primary-fresh-c188 td,
.paragraph_active_666c th,
.paragraph_active_666c td,
.top_2701 th,
.top_2701 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .primary-fresh-c188 th,
  .primary-fresh-c188 td,
  .paragraph_active_666c th,
  .paragraph_active_666c td,
  .top_2701 th,
  .top_2701 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .primary-fresh-c188,
  .paragraph_active_666c,
  .top_2701 {
    min-width: 600px;
  }
}

.primary-fresh-c188 th,
.paragraph_active_666c th,
.top_2701 th {
  font-weight: 600;
}

.primary-fresh-c188 tbody tr:hover,
.paragraph_active_666c tbody tr:hover,
.top_2701 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.narrow-dac2 h4 {
  color: white;
}

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

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

.video-6c9d:last-child {
  border-bottom: none;
}

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

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

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

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

.breadcrumb-old-2443:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.article-smooth-a5bb {
  color: #4caf50;
}

.aside-hot-2807 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.search-active-2c4e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.input-3fa4 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.frame-stone-c5d4 .south-d73d {
  width: 100%;
  background: white;
}

.center-07fa .south-d73d {
  color: #667eea;
}

.list_easy_610b .south-d73d {
  color: #f5576c;
}

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

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

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

.narrow-27ff {
  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);
}

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

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

@media (max-width: 768px) {
  .orange_ef45 {
    padding: var(--space-md);
  }
  
  .slider_2519 {
    padding: var(--space-md);
  }
  
  .fluid-13a4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.static-f1ef,
.notification_east_2d3b,
.mask_middle_f961,
.card_1804 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.list-dynamic-7a9e {
  border-color: var(--color-success);
}

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

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

.list-dynamic-7a9e .slow-d1d9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.current-4369 .slow-d1d9 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.right-70dc {
  margin-top: var(--space-xxl);
}

.video-pink-0915 {
  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);
}

.message-362c {
  text-align: center;
}

.filter-prev-9420 {
  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);
}

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

.filter-prev-9420 .accordion_under_6150 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo-442b {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.right-a457 {
  border: 2px solid #4caf50;
}

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

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

.progress-5d67 {
  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;
}

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

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

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

.picture-paper-3035 {
  text-align: right;
}

.picture-paper-3035 .nav-115d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.soft-2d04 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.background-dark-6e47 {
  max-width: 900px;
  margin: 0 auto;
}

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

.background-smooth-e732 {
  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);
}

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

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

.background-smooth-e732[aria-expanded="true"] .gallery_7427 {
  transform: rotate(180deg);
}

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

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

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

.tabs-132b li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.last-8c08,
.shade-iron-3698 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.last-8c08 h4,
.shade-iron-3698 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.last-8c08 ul,
.shade-iron-3698 ul {
  list-style: none;
  padding: 0;
}

.last-8c08 li,
.shade-iron-3698 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview_right_d532 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info_d409 .component_slow_eaa6 {
  color: #4caf50;
  font-size: 0.875rem;
}

.right-a5c2 {
  list-style: none;
  padding: 0;
}

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

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

.right-a5c2 a:hover {
  color: white;
}

.orange-c849 {
  list-style: none;
  padding: 0;
}

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

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

.orange-c849 a:hover {
  color: white;
}

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

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

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

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

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

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

.container-3eac:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .preview-cf71 {
    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;
  }
  
  .container_current_121b {
    font-size: 2rem;
  }
  
  .wrapper-61ba {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .media-f0db,
  .hard-6dc0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .plasma_8386,
  .aside_6c22,
  .mask-a112,
  .soft-3277,
  .paper-684c,
  .disabled-focused-5537,
  .photo-1ba4,
  .row-fluid-3cff {
    grid-template-columns: 1fr;
  }
  
  .picture-341e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gallery_8062 {
    padding: var(--space-lg) 0;
  }
  
  .box_bfd7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .box_bfd7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .south-d73d {
    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;
  }
  
  .picture-341e {
    grid-template-columns: 1fr;
  }
  
  .list_448e,
  .border-2e3c,
  .dirty-23f7 {
    flex-direction: column;
    width: 100%;
  }
  
  .wrapper_tall_ab8b,
  .thumbnail_top_0461,
  .list_448e .south-d73d,
  .border-2e3c .south-d73d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .container_current_121b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .wrapper-61ba {
    font-size: 1.375rem;
  }
  
  .thumbnail-0ef0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .north_005a,
  .yellow-87ec,
  .alert_3ecf,
  .fluid-723c,
  .icon-simple-a670 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .nav-black-de33 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .text-green-5d5c {
    gap: var(--space-xs);
  }
  
  .section_84f8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .avatar_1d6b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .filter-prev-9420 {
    width: 150px;
    height: 150px;
  }
  
  .logo_yellow_3688 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notification-medium-299b,
  .over-a502,
  .list_448e,
  .secondary-4116,
  .wrapper_9815,
  .focus-prev-1aa6,
  .dirty-d072 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gallery_8062 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2358 */
.promo-block-q3 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
