/* ============================================
   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)
   ============================================ */
.article-fast-404e {
  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;
}

.article-fast-404e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.caption_1ca3,
header,
.tooltip-8155,
.prev_6e3e,
.list-4ff3,
.border-west-850e,
.tag-in-795d,
.top-6cdd,
.smooth-850c {
  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
   ============================================ */
.caption_1ca3 {
  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);
}

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

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

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

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

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

.widget-south-ab34 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.border-plasma-d222 {
  flex: 1;
}

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

.footer-82b7 {
  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);
}

.footer-82b7:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.footer-82b7.fn-active-1484 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.caption-white-85d9 {
  position: relative;
}

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

.texture-white-59ab svg {
  transition: transform 0.2s ease;
}

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

.shadow-210e {
  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;
}

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

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

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

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

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

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

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

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

.hidden_7331 svg {
  flex-shrink: 0;
}

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

.input-9a00: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);
}

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

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

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

.input-solid-4a0b {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.mask_brown_6ab6[aria-expanded="true"] .input-solid-4a0b:nth-child(2) {
  opacity: 0;
}

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

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

  .border-plasma-d222::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .border-plasma-d222.tooltip-1014 {
    display: block;
    right: 0;
  }
  
  .element_47cf {
    flex-direction: column;
    gap: 0;
  }
  
  .footer-82b7 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .border-plasma-d222::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;
  }
  
  .border-plasma-d222.tooltip-1014::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .border-plasma-d222 {
    display: none;
  }
  
  .mask_brown_6ab6 {
    display: flex;
  }
  
  .yellow_95ea {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hidden_7331,
  .input-9a00 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .caption-white-85d9 {
    position: relative;
  }
  
  .shadow-210e {
    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-white-59ab[aria-expanded="true"] + .shadow-210e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .cool_a6a7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .text-selected-a2ba {
    gap: 8px;
  }
  
  .hidden_7331 {
    display: none;
  }
  
  .input-9a00 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .widget-south-ab34 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.popup-caf6 svg {
  flex-shrink: 0;
}

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

.popup-caf6 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-6e0f {
  display: flex;
  gap: var(--space-sm);
}

.active-dirty-c1e8 {
  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;
}

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

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

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

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

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

.background-76d5 {
  position: relative;
  text-align: center;
}

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

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

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

.panel-orange-7f5a {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .hover-middle-fbb7 {
    grid-template-columns: 1fr;
  }
  
  .center_fa33 {
    font-size: 1.75rem;
  }
  
  .sidebar_upper_a8b4 {
    order: -1;
    max-width: 100%;
  }
  
  .background-76d5 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .center_fa33 {
    font-size: 1.5rem;
  }
  
  .content-down-a235 {
    font-size: 1rem;
  }
  
  .green_05f6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .background-76d5 {
    max-width: 250px;
  }
}

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

.hidden-3afe {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.heading-in-c607 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu_pressed_a466 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.menu_pressed_a466 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.tag-in-795d {
  padding: var(--space-xxl) 0;
}

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

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

.black-52fc {
  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);
}

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

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

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

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

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

.label-1d12 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.label-1d12 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);
}

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

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

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

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

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

.label-1d12 strong {
  font-weight: 600;
  color: var(--color-text);
}

.label-1d12 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.label-1d12 a:hover {
  color: var(--color-primary-dark);
}

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

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

.block-ba56 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) {
  .feature-f36c {
    grid-template-columns: 1fr;
  }
  
  .hard_a4f3 {
    font-size: 1.75rem;
  }
  
  .label-1d12 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hard_a4f3 {
    font-size: 1.5rem;
  }
  
  .label-1d12 h3 {
    font-size: 1.375rem;
  }
  
  .label-1d12 h4 {
    font-size: 1.125rem;
  }
}

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

.mask-north-6224 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.next_d9ec {
  flex-shrink: 0;
}

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

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

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

.disabled_red_7f71,
.warm-4ffe,
.cool-e398 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.disabled_red_7f71 thead,
.warm-4ffe thead {
  background: var(--color-primary);
  color: white;
}

.disabled_red_7f71 th,
.disabled_red_7f71 td,
.warm-4ffe th,
.warm-4ffe td,
.cool-e398 th,
.cool-e398 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .disabled_red_7f71 th,
  .disabled_red_7f71 td,
  .warm-4ffe th,
  .warm-4ffe td,
  .cool-e398 th,
  .cool-e398 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .disabled_red_7f71,
  .warm-4ffe,
  .cool-e398 {
    min-width: 600px;
  }
}

.disabled_red_7f71 th,
.warm-4ffe th,
.cool-e398 th {
  font-weight: 600;
}

.disabled_red_7f71 tbody tr:hover,
.warm-4ffe tbody tr:hover,
.cool-e398 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wrapper_hard_8cdd h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.content-a393 {
  font-weight: 600;
  color: white;
}

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

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

.block_active_4c26 {
  color: #4caf50;
}

.current_90d1 {
  color: #ff9800;
}

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

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

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

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

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

.mask-36b0 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.right-1c83 {
  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;
}

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

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

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

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

.list-top-0ca2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fast-8a60 .caption-d222 {
  width: 100%;
  background: white;
}

.pattern_advanced_fe87 .caption-d222 {
  color: #667eea;
}

.photo-top-c35d .caption-d222 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .bright_5819 {
    padding: var(--space-md);
  }
  
  .input_fast_a487 {
    padding: var(--space-md);
  }
  
  .media_3179 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.detail-black-031b,
.mask_c58f,
.hovered_c486,
.new_2cb2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.in-0dda {
  border-color: var(--color-warning);
}

.dim-05ea {
  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);
}

.content_162d .dim-05ea {
  background: #e8f5e9;
  color: var(--color-success);
}

.in-0dda .dim-05ea {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-ef42 {
  text-align: center;
}

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

.widget-last-31f3 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.shadow_action_8358 .content-a393 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.mini-99ef {
  color: var(--color-text-light);
}

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

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

.sort-02ff {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.picture-695b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.basic-e999 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.label-old-4128 {
  text-align: right;
}

.label-old-4128 .brown_1052 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.video-up-91d0 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

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

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

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

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

.menu-wide-9241 {
  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);
}

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

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

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

.glass-926f strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over_4ff4 ul,
.liquid_4ed5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.logo-hard-a4ff ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.slider-first-f4be {
  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);
}

.label_full_8b68 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-mini-50c8 {
  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_351c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.dropdown_7262 a:hover {
  color: white;
}

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

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

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

.avatar-hot-ed07 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.avatar-hot-ed07 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .border-mini-50c8,
  .accent_351c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.chip_iron_f6f3 .card-6e0f {
  color: #4caf50;
  font-size: 0.875rem;
}

.component-paper-8f9d {
  list-style: none;
  padding: 0;
}

.component-paper-8f9d li {
  margin-bottom: var(--space-xs);
}

.component-paper-8f9d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.component-paper-8f9d a:hover {
  color: white;
}

.element-0c01 {
  list-style: none;
  padding: 0;
}

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

.element-0c01 a {
  color: #b0b0b0;
  text-decoration: none;
}

.element-0c01 a:hover {
  color: white;
}

.surface-8b2f {
  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);
}

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

.badge-fresh-d9a1 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .surface-8b2f {
    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;
  }
  
  .center_fa33 {
    font-size: 2rem;
  }
  
  .hard_a4f3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hover-middle-fbb7,
  .feature-f36c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .top-add8,
  .copper-3d9c,
  .easy_54aa,
  .logo_76f3,
  .dropdown_5505,
  .menu-e34f,
  .gallery_6bab,
  .border-mini-50c8,
  .accent_351c {
    grid-template-columns: 1fr;
  }
  
  .header_glass_0b54 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tag-in-795d {
    padding: var(--space-lg) 0;
  }
  
  .menu_pressed_a466 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .menu_pressed_a466 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .caption-d222 {
    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;
  }
  
  .header_glass_0b54 {
    grid-template-columns: 1fr;
  }
  
  .notice_a4c0,
  .image_simple_2689,
  .tertiary_small_f52b {
    flex-direction: column;
    width: 100%;
  }
  
  .heading-in-c607,
  .panel-f01f,
  .notice_a4c0 .caption-d222,
  .image_simple_2689 .caption-d222 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .center_fa33 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hard_a4f3 {
    font-size: 1.375rem;
  }
  
  .short_91ef {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outline_7b67,
  .dim_a9ed,
  .feature_top_1b41,
  .bright-0510,
  .logo_steel_494b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .focused-f1a1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .element-3a83 {
    gap: var(--space-xs);
  }
  
  .popup-caf6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden-7b69 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shadow_action_8358 {
    width: 150px;
    height: 150px;
  }
  
  .widget-last-31f3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .caption_1ca3,
  .tooltip-8155,
  .notice_a4c0,
  .label_0134,
  .top-6cdd,
  .smooth-850c,
  .mask_brown_6ab6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tag-in-795d {
    page-break-inside: avoid;
  }
}

/* css-noise: b30a */
.ghost-box-r5 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
