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

.focused_6ec1:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fresh_cb66,
header,
.popup_336d,
.mini-8425,
.table-tiny-9359,
.hovered_599a,
.iron-ae8d,
.medium-f87f,
.complex_befe {
  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
   ============================================ */
.fresh_cb66 {
  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);
}

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

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

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

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

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

.menu-311e img {
  height: 36px;
  width: auto;
  display: block;
}

.focused-9aaa {
  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;
}

.white-654b {
  flex: 1;
}

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

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

.progress-7903:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.progress-7903.fn-active-bbc1 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.heading-first-6f89 {
  position: relative;
}

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

.thumbnail-44ea svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.icon-ff40 svg {
  flex-shrink: 0;
}

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

.tiny-03a2: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);
}

.tiny-03a2 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .white-654b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .white-654b.notification-basic-1832 {
    display: block;
    right: 0;
  }
  
  .panel-hovered-7c20 {
    flex-direction: column;
    gap: 0;
  }
  
  .progress-7903 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .white-654b::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;
  }
  
  .white-654b.notification-basic-1832::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .white-654b {
    display: none;
  }
  
  .shadow_right_9313 {
    display: flex;
  }
  
  .focused-9aaa {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .icon-ff40,
  .tiny-03a2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .heading-first-6f89 {
    position: relative;
  }
  
  .action-f4e7 {
    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;
  }
  
  .thumbnail-44ea[aria-expanded="true"] + .action-f4e7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hard_07f2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .down-a507 {
    gap: 8px;
  }
  
  .icon-ff40 {
    display: none;
  }
  
  .tiny-03a2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .menu-311e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.wrapper-hovered-b6ab {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wrapper-hovered-b6ab svg {
  flex-shrink: 0;
}

.wrapper-hovered-b6ab a {
  color: var(--color-primary);
  text-decoration: none;
}

.wrapper-hovered-b6ab a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.gallery-9f62 {
  color: var(--color-text-lighter);
}

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

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

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

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

@media (max-width: 768px) {
  .highlight-liquid-67b2 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

.highlight-fixed-0557 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .green_44da {
    grid-template-columns: 1fr;
  }
  
  .thumbnail_action_fe06 {
    font-size: 1.75rem;
  }
  
  .focus_7180 {
    order: -1;
    max-width: 100%;
  }
  
  .highlight-fixed-0557 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .thumbnail_action_fe06 {
    font-size: 1.5rem;
  }
  
  .component_clean_7966 {
    font-size: 1rem;
  }
  
  .module_slow_dccc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .highlight-fixed-0557 {
    max-width: 250px;
  }
}

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

.red-06f9 {
  background: var(--color-primary);
  color: white;
}

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

.highlight-hard-1fa2 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.highlight-hard-1fa2:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-7908 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;
}

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

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

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

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

.card-0ad8 {
  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);
}

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

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

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

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

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

.border-orange-d78c img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.border-orange-d78c 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);
}

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

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

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

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

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

.border-orange-d78c strong {
  font-weight: 600;
  color: var(--color-text);
}

.border-orange-d78c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.border-orange-d78c a:hover {
  color: var(--color-primary-dark);
}

.breadcrumb-brown-a3ed {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.breadcrumb-brown-a3ed li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .modal-soft-8c43 {
    grid-template-columns: 1fr;
  }
  
  .media_bd15 {
    font-size: 1.75rem;
  }
  
  .border-orange-d78c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .media_bd15 {
    font-size: 1.5rem;
  }
  
  .border-orange-d78c h3 {
    font-size: 1.375rem;
  }
  
  .border-orange-d78c h4 {
    font-size: 1.125rem;
  }
}

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

.rough-73e7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.smooth-75f1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.container-west-923b {
  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;
}

.texture-tall-a323 {
  flex-shrink: 0;
}

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

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

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

.overlay-gas-5065,
.slider-1260,
.alert_right_130e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.overlay-gas-5065 thead,
.slider-1260 thead {
  background: var(--color-primary);
  color: white;
}

.overlay-gas-5065 th,
.overlay-gas-5065 td,
.slider-1260 th,
.slider-1260 td,
.alert_right_130e th,
.alert_right_130e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .overlay-gas-5065 th,
  .overlay-gas-5065 td,
  .slider-1260 th,
  .slider-1260 td,
  .alert_right_130e th,
  .alert_right_130e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .overlay-gas-5065,
  .slider-1260,
  .alert_right_130e {
    min-width: 600px;
  }
}

.overlay-gas-5065 th,
.slider-1260 th,
.alert_right_130e th {
  font-weight: 600;
}

.overlay-gas-5065 tbody tr:hover,
.slider-1260 tbody tr:hover,
.alert_right_130e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.media-bcd6 h4 {
  color: white;
}

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

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

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

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

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

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

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

.lite-bd8a:hover {
  text-decoration: underline;
}

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

.accent-pro-693d {
  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);
}

.accent-pro-693d span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.upper-9ade {
  font-weight: 600;
  color: white;
}

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

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

.input_up_a47b {
  color: #4caf50;
}

.sidebar_fixed_5a48 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.yellow-9b84 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .section-small-04a4 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.image-8b82 .wrapper-3c38 {
  width: 100%;
  background: white;
}

.box_purple_be38 .wrapper-3c38 {
  color: #667eea;
}

.footer-d0a5 .wrapper-3c38 {
  color: #f5576c;
}

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

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

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

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

.module-bronze-4c85 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .module-bronze-4c85 {
    padding: var(--space-md);
  }
  
  .gas-f0a5 {
    padding: var(--space-md);
  }
  
  .carousel_dynamic_365f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.focus-6caa,
.summary-b333,
.column_tall_0688,
.outline-purple-d782 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.purple-35b5 {
  border-color: var(--color-success);
}

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

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

.purple-35b5 .media_1c4f {
  background: #e8f5e9;
  color: var(--color-success);
}

.slider-d003 .media_1c4f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.menu-6e95 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.west-1453 {
  text-align: center;
}

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

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

.caption-c8cc .upper-9ade {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-pro-feae {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.column-0e96 {
  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;
}

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

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

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

.content-834e {
  text-align: right;
}

.content-834e .photo_eecd {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hard-64bb {
  background: #e8f5e9;
  color: #2e7d32;
}

.up-efed {
  background: #e3f2fd;
  color: #1565c0;
}

.wood-c3db {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.tag-last-3720 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bottom-1a6b {
  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);
}

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

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

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

.container_0e96,
.nav-east-f0d1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container_0e96 h4,
.nav-east-f0d1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container_0e96 ul,
.nav-east-f0d1 ul {
  list-style: none;
  padding: 0;
}

.container_0e96 li,
.nav-east-f0d1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.component-7d6b ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.current_262a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.next-73b9 {
  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);
}

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

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

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

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

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

.progress-ac01 {
  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) */
.up-6ec0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.mini_4ef9 a:hover {
  color: white;
}

.filter-outer-42ac {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.filter-outer-42ac 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);
}

.filter-outer-42ac a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.title_east_b1c0 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .progress-ac01,
  .up-6ec0 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.pink-7cb5 .outline-ddab {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.status_dark_3368 a:hover {
  color: white;
}

.gallery-basic-e0a3 {
  list-style: none;
  padding: 0;
}

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

.gallery-basic-e0a3 a {
  color: #b0b0b0;
  text-decoration: none;
}

.gallery-basic-e0a3 a:hover {
  color: white;
}

.fast-5cdc {
  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);
}

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

.frame-0af5 a {
  color: #4caf50;
  text-decoration: none;
}

.frame-3a23 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.narrow-5b43:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fast-5cdc {
    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;
  }
  
  .thumbnail_action_fe06 {
    font-size: 2rem;
  }
  
  .media_bd15 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .green_44da,
  .modal-soft-8c43 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .texture_under_9238,
  .section_5dbf,
  .section-small-04a4,
  .backdrop_7fca,
  .secondary_focused_66d8,
  .current-2f57,
  .gradient-37b6,
  .progress-ac01,
  .up-6ec0 {
    grid-template-columns: 1fr;
  }
  
  .description_liquid_b3ce {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .iron-ae8d {
    padding: var(--space-lg) 0;
  }
  
  .image-7908 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .image-7908 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wrapper-3c38 {
    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;
  }
  
  .description_liquid_b3ce {
    grid-template-columns: 1fr;
  }
  
  .button_inner_e832,
  .gradient_4389,
  .wood-47b0 {
    flex-direction: column;
    width: 100%;
  }
  
  .south_14b9,
  .backdrop_fast_dfa5,
  .button_inner_e832 .wrapper-3c38,
  .gradient_4389 .wrapper-3c38 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .thumbnail_action_fe06 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .media_bd15 {
    font-size: 1.375rem;
  }
  
  .disabled-08b6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .paragraph-698e,
  .slow-7a84,
  .text_0ea7,
  .stale_2792,
  .center-c0c6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .input_ec6a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .action-f953 {
    gap: var(--space-xs);
  }
  
  .wrapper-hovered-b6ab {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accent-pro-693d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .caption-c8cc {
    width: 150px;
    height: 150px;
  }
  
  .shadow-10d8 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fresh_cb66,
  .popup_336d,
  .button_inner_e832,
  .hot_db42,
  .medium-f87f,
  .complex_befe,
  .shadow_right_9313 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .iron-ae8d {
    page-break-inside: avoid;
  }
}

/* css-noise: 36fb */
.widget-item-w3 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
