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

.list-bf16:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.bright-fd1f,
header,
.label_focused_dea1,
.main_19a0,
.focused_d4f7,
.hovered-8d4c,
.hard_3544,
.pagination_pink_5135,
.banner-focused-402d {
  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
   ============================================ */
.bright-fd1f {
  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);
}

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

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

/* Scrolled state */
.bright-fd1f.hidden-c9d6 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.preview-a7b3 {
  flex: 1;
}

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

.advanced-32ba {
  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);
}

.advanced-32ba:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.advanced-32ba.fn-active-cd0c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pro-0005 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.photo_c047 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.photo_c047 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .preview-a7b3::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .preview-a7b3.green_04f6 {
    display: block;
    right: 0;
  }
  
  .list-19a9 {
    flex-direction: column;
    gap: 0;
  }
  
  .advanced-32ba {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .preview-a7b3::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;
  }
  
  .preview-a7b3.green_04f6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .preview-a7b3 {
    display: none;
  }
  
  .overlay_action_2fb9 {
    display: flex;
  }
  
  .shade-9305 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .photo_c047,
  .info_stone_248f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pro-0005 {
    position: relative;
  }
  
  .nav_57ac {
    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;
  }
  
  .carousel_6b41[aria-expanded="true"] + .nav_57ac {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .column-56f1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .caption-e0bc {
    gap: 8px;
  }
  
  .photo_c047 {
    display: none;
  }
  
  .info_stone_248f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .upper_f3ae img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.component_4769 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.heading-7df5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.heading-7df5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.primary-5b34 {
  display: flex;
  gap: var(--space-sm);
}

.inner-22b5 {
  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;
}

.video-dark-dbc3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.video-dark-dbc3 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.search-west-d7ad {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.mini-c15a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.dropdown-pro-064e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .card_over_f0f3 {
    grid-template-columns: 1fr;
  }
  
  .blue_ad55 {
    font-size: 1.75rem;
  }
  
  .video_blue_a5a6 {
    order: -1;
    max-width: 100%;
  }
  
  .mini-c15a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .blue_ad55 {
    font-size: 1.5rem;
  }
  
  .bright-1ba4 {
    font-size: 1rem;
  }
  
  .heading-7df5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mini-c15a {
    max-width: 250px;
  }
}

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

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

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

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

.overlay-62f2:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.border-2afa {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.caption-basic-4b57 {
  list-style: none;
  counter-reset: toc-counter;
}

.caption-basic-4b57 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.caption-basic-4b57 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);
}

.caption-basic-4b57 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;
}

.caption-basic-4b57 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

.notice-medium-4e28 {
  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);
}

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

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

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

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

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

.chip-pro-bb29 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.chip-pro-bb29 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);
}

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

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

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

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

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

.chip-pro-bb29 strong {
  font-weight: 600;
  color: var(--color-text);
}

.chip-pro-bb29 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.chip-pro-bb29 a:hover {
  color: var(--color-primary-dark);
}

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

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

.backdrop_blue_99e3 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) {
  .texture-full-4f80 {
    grid-template-columns: 1fr;
  }
  
  .panel-a6dd {
    font-size: 1.75rem;
  }
  
  .chip-pro-bb29 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .panel-a6dd {
    font-size: 1.5rem;
  }
  
  .chip-pro-bb29 h3 {
    font-size: 1.375rem;
  }
  
  .chip-pro-bb29 h4 {
    font-size: 1.125rem;
  }
}

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

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

.text-up-ffa7 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.footer_down_2d08 {
  flex-shrink: 0;
}

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

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

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

.media_prev_9ce5,
.out-c619,
.row_green_cc80 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media_prev_9ce5 thead,
.out-c619 thead {
  background: var(--color-primary);
  color: white;
}

.media_prev_9ce5 th,
.media_prev_9ce5 td,
.out-c619 th,
.out-c619 td,
.row_green_cc80 th,
.row_green_cc80 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .media_prev_9ce5 th,
  .media_prev_9ce5 td,
  .out-c619 th,
  .out-c619 td,
  .row_green_cc80 th,
  .row_green_cc80 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .media_prev_9ce5,
  .out-c619,
  .row_green_cc80 {
    min-width: 600px;
  }
}

.media_prev_9ce5 th,
.out-c619 th,
.row_green_cc80 th {
  font-weight: 600;
}

.media_prev_9ce5 tbody tr:hover,
.out-c619 tbody tr:hover,
.row_green_cc80 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wrapper_basic_5e09 h4 {
  color: white;
}

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

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

.aside-6b99:last-child {
  border-bottom: none;
}

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

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

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

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

.progress-liquid-cff6:hover {
  text-decoration: underline;
}

.header-middle-5cdc {
  text-align: center;
  margin-bottom: var(--space-md);
}

.tabs-dynamic-03c4 {
  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);
}

.tabs-dynamic-03c4 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.modal-dec5 {
  list-style: none;
  padding: 0;
}

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

.status_glass_526b {
  color: #4caf50;
}

.link_stale_d92d {
  color: #ff9800;
}

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

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

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

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

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

.element-light-b7d9 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_2c2b .last_5546 {
  width: 100%;
  background: white;
}

.current_520b .last_5546 {
  color: #667eea;
}

.hovered_4bfb .last_5546 {
  color: #f5576c;
}

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

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

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

.media-last-5b7b {
  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);
}

.badge-6f29 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.outline-under-c01e {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .badge-6f29 {
    padding: var(--space-md);
  }
  
  .outline-under-c01e {
    padding: var(--space-md);
  }
  
  .notification_b112 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.progress_7da0,
.table_dynamic_e497,
.tiny-2ac2,
.liquid-c69b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-motion-750f {
  border-color: var(--color-success);
}

.pattern-silver-3ff4 {
  border-color: var(--color-warning);
}

.module-up-96df {
  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);
}

.sidebar-motion-750f .module-up-96df {
  background: #e8f5e9;
  color: var(--color-success);
}

.pattern-silver-3ff4 .module-up-96df {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.detail-south-098b {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.mask_advanced_a3b0 {
  text-align: center;
}

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

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

.preview_top_f13a .breadcrumb_copper_4334 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-fresh-8b6c {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.gradient-1043 {
  border: 2px solid #4caf50;
}

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

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

.avatar-complex-841c {
  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;
}

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

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

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

.selected-c027 {
  text-align: right;
}

.selected-c027 .tooltip-soft-2aa2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.disabled-first-ddff {
  background: #e8f5e9;
  color: #2e7d32;
}

.footer-71c7 {
  background: #e3f2fd;
  color: #1565c0;
}

.north-d6db {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.link-old-6b28 {
  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);
}

.link-old-6b28:hover {
  background: var(--color-bg-alt);
}

.component-plasma-c615 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.link-old-6b28[aria-expanded="true"] .component-plasma-c615 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask-down-c425,
.north-1b6b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.mask-down-c425 h4,
.north-1b6b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.mask-down-c425 ul,
.north-1b6b ul {
  list-style: none;
  padding: 0;
}

.mask-down-c425 li,
.north-1b6b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.element-basic-0d5f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.element-basic-0d5f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.hard-2da9 {
  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);
}

.mask-brown-5fe6 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.highlight-under-4664 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-07ab {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.primary-07ab a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .icon-fresh-3158,
  .wood_f0c4 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.active_af6f .primary-5b34 {
  color: #4caf50;
  font-size: 0.875rem;
}

.easy-65c2 {
  list-style: none;
  padding: 0;
}

.easy-65c2 li {
  margin-bottom: var(--space-xs);
}

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

.easy-65c2 a:hover {
  color: white;
}

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

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

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

.pattern_right_6f2a a:hover {
  color: white;
}

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

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

.active-59f8 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.notice-hovered-0941 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;
}

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

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

@media (max-width: 768px) {
  .layout_iron_33bb {
    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;
  }
  
  .blue_ad55 {
    font-size: 2rem;
  }
  
  .panel-a6dd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .card_over_f0f3,
  .texture-full-4f80 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .current_4482,
  .shade_0c8c,
  .last_773b,
  .center_c9d2,
  .row_e616,
  .picture-9955,
  .status_cool_8e2a,
  .icon-fresh-3158,
  .wood_f0c4 {
    grid-template-columns: 1fr;
  }
  
  .video-0db8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hard_3544 {
    padding: var(--space-lg) 0;
  }
  
  .caption-basic-4b57 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .caption-basic-4b57 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .last_5546 {
    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;
  }
  
  .video-0db8 {
    grid-template-columns: 1fr;
  }
  
  .search-west-d7ad,
  .hero-2c70,
  .plasma-c009 {
    flex-direction: column;
    width: 100%;
  }
  
  .border-2afa,
  .hidden_upper_c6fa,
  .search-west-d7ad .last_5546,
  .hero-2c70 .last_5546 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .blue_ad55 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .panel-a6dd {
    font-size: 1.375rem;
  }
  
  .liquid_fa78 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .short_35e6,
  .large-503e,
  .gallery-clean-1006,
  .menu_ad11,
  .description-brown-87f1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget_edc2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notification-fixed-0526 {
    gap: var(--space-xs);
  }
  
  .component_4769 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tabs-dynamic-03c4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .preview_top_f13a {
    width: 150px;
    height: 150px;
  }
  
  .green_c2bf {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .bright-fd1f,
  .label_focused_dea1,
  .search-west-d7ad,
  .text_advanced_e4ae,
  .pagination_pink_5135,
  .banner-focused-402d,
  .overlay_action_2fb9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hard_3544 {
    page-break-inside: avoid;
  }
}

/* css-noise: 3600 */
.ghost-box-a2 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
