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

.backdrop_5cb1:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.paragraph_smooth_88fb,
header,
.active-6ab5,
.progress_2816,
.block-126f,
.next-1bfb,
.layout-pink-9b27,
.header-315d,
.avatar_inner_4774 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.advanced-5c35 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.hero-336f {
  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;
}

.content_db92 {
  flex: 1;
}

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

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

.banner-e94c:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.banner-e94c.menu_a3c2 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-new-c2c5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .content_db92 {
    display: none;
  }
  
  .sidebar_5778 {
    display: flex;
  }
  
  .hero-336f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .picture-new-c2c5,
  .out_d0e7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .west_9f95 {
    position: relative;
  }
  
  .detail-f5be {
    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;
  }
  
  .primary_basic_6bd7[aria-expanded="true"] + .detail-f5be {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .badge_down_d599 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .active_196a {
    gap: 8px;
  }
  
  .picture-new-c2c5 {
    display: none;
  }
  
  .out_d0e7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .list_4b69 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.out_63df svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-lite-b020 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.mask-327b {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wide_f178 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .preview_dirty_5984 {
    grid-template-columns: 1fr;
  }
  
  .text-f676 {
    font-size: 1.75rem;
  }
  
  .mask-327b {
    order: -1;
    max-width: 100%;
  }
  
  .wide_f178 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .text-f676 {
    font-size: 1.5rem;
  }
  
  .fluid_fb92 {
    font-size: 1rem;
  }
  
  .video_left_d963 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wide_f178 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.text-under-1f0f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask-a990 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.layout-pink-9b27 {
  padding: var(--space-xxl) 0;
}

.article-basic-cb21 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box_action_c274 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) {
  .breadcrumb-582d {
    grid-template-columns: 1fr;
  }
  
  .grid-b7e9 {
    font-size: 1.75rem;
  }
  
  .notification_full_fb6a {
    max-width: 100%;
  }
}

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

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

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

.description-new-9a21 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.over-1e39 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.caption-8b51 {
  flex-shrink: 0;
}

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

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

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

.heading-over-c200,
.outline-static-4b4d,
.up-a2b2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.heading-over-c200 thead,
.outline-static-4b4d thead {
  background: var(--color-primary);
  color: white;
}

.heading-over-c200 th,
.heading-over-c200 td,
.outline-static-4b4d th,
.outline-static-4b4d td,
.up-a2b2 th,
.up-a2b2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .heading-over-c200 th,
  .heading-over-c200 td,
  .outline-static-4b4d th,
  .outline-static-4b4d td,
  .up-a2b2 th,
  .up-a2b2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .heading-over-c200,
  .outline-static-4b4d,
  .up-a2b2 {
    min-width: 600px;
  }
}

.heading-over-c200 th,
.outline-static-4b4d th,
.up-a2b2 th {
  font-weight: 600;
}

.heading-over-c200 tbody tr:hover,
.outline-static-4b4d tbody tr:hover,
.up-a2b2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.medium-326d h4 {
  color: white;
}

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

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

.simple-a4e2:last-child {
  border-bottom: none;
}

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

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

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

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

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

.pattern-clean-68d5 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.form-tiny-63aa {
  font-weight: 600;
  color: white;
}

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

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

.link-b23f {
  color: #4caf50;
}

.logo_95b1 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-tiny-63aa {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel-c5cc .south_3fac {
  width: 100%;
  background: white;
}

.north-7857 .south_3fac {
  color: #667eea;
}

.motion_7668 .south_3fac {
  color: #f5576c;
}

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

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

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

.heading-178a {
  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);
}

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

.item-green-82ea {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .medium_4fc5 {
    padding: var(--space-md);
  }
  
  .item-green-82ea {
    padding: var(--space-md);
  }
  
  .primary-e654 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.shade_440b,
.active-pressed-4d00,
.warm_74a7,
.message_dirty_5bb7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.avatar-thick-63c1 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.input-soft-872b {
  border-color: var(--color-warning);
}

.thumbnail-wood-f47e {
  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);
}

.clean_e304 .thumbnail-wood-f47e {
  background: #e8f5e9;
  color: var(--color-success);
}

.input-soft-872b .thumbnail-wood-f47e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.status-fast-c548 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.east_d053 {
  text-align: center;
}

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

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

.shadow_009f .form-tiny-63aa {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.frame-liquid-6467 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.white-723b {
  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;
}

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

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

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

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

.selected-e7e0 .active-a8e4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.info-clean-cc07 {
  background: #e8f5e9;
  color: #2e7d32;
}

.accordion-7335 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

.frame-large-300c {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.module-8fef {
  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);
}

.module-8fef:hover {
  background: var(--color-bg-alt);
}

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

.module-8fef[aria-expanded="true"] .preview_283c {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-09c9,
.stone-f01c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container-09c9 h4,
.stone-f01c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container-09c9 ul,
.stone-f01c ul {
  list-style: none;
  padding: 0;
}

.container-09c9 li,
.stone-f01c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hover_38d6 {
  font-style: italic;
}

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

.complex-864b {
  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;
}

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

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

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

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

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

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

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

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

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

.column-outer-861e {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

@media (max-width: 768px) {
  .full-c7c0 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.feature_light_3d79 .popup-lite-b020 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.feature_13cc a:hover {
  color: white;
}

.background-33ed {
  list-style: none;
  padding: 0;
}

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

.background-33ed a {
  color: #b0b0b0;
  text-decoration: none;
}

.background-33ed a:hover {
  color: white;
}

.banner-basic-7945 {
  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);
}

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

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

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

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

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

.heading-fresh-ff64:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .banner-basic-7945 {
    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;
  }
  
  .text-f676 {
    font-size: 2rem;
  }
  
  .grid-b7e9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .preview_dirty_5984,
  .breadcrumb-582d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .modal_cold_b1ed,
  .image-f4d3,
  .warm-cdfe,
  .main_3749,
  .west-574e,
  .container_366a,
  .up_32d1,
  .full-c7c0 {
    grid-template-columns: 1fr;
  }
  
  .narrow-8a4e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .layout-pink-9b27 {
    padding: var(--space-lg) 0;
  }
  
  .mask-a990 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .mask-a990 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .south_3fac {
    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;
  }
  
  .narrow-8a4e {
    grid-template-columns: 1fr;
  }
  
  .narrow-f6e3,
  .thumbnail-4ec5,
  .silver_f333 {
    flex-direction: column;
    width: 100%;
  }
  
  .text-under-1f0f,
  .content_cdfa,
  .narrow-f6e3 .south_3fac,
  .thumbnail-4ec5 .south_3fac {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .text-f676 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .grid-b7e9 {
    font-size: 1.375rem;
  }
  
  .notice-4c47 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .content_4ccb,
  .middle-958e,
  .sort-clean-bf90,
  .gas-c0dd,
  .pagination-0a96 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .selected_c7ba {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thumbnail_top_d0e1 {
    gap: var(--space-xs);
  }
  
  .out_63df {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .backdrop_2c2a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shadow_009f {
    width: 150px;
    height: 150px;
  }
  
  .tiny_6bf1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .paragraph_smooth_88fb,
  .active-6ab5,
  .narrow-f6e3,
  .complex-864b,
  .header-315d,
  .avatar_inner_4774,
  .sidebar_5778 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .layout-pink-9b27 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.pagination-784b {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 1103 */
.shadow-element-m0 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
