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

.tabs-ca72:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.easy-c197):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. */
.easy-c197,
header,
.fast-92d2,
.large-e1f4,
.aside_7626,
.hidden_fresh_df8c,
.fixed-edc5,
.cool_9663,
.dark-d2df {
  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
   ============================================ */
.easy-c197 {
  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);
}

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

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

/* Scrolled state */
.easy-c197.fresh-325e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.down-51d9 {
  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;
}

.photo-8785 {
  flex: 1;
}

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

.huge-33f1 {
  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);
}

.huge-33f1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.huge-33f1.tiny_d7ea {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.link-focused-1022 {
  position: relative;
}

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

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

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

.picture-dark-9ac6 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.link-focused-1022:hover .picture-dark-9ac6 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.box_blue_fc6e svg {
  flex-shrink: 0;
}

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

.overlay-green-c1fc: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);
}

.overlay-green-c1fc svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .photo-8785 {
    display: none;
  }
  
  .narrow_3f92 {
    display: flex;
  }
  
  .down-51d9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .box_blue_fc6e,
  .overlay-green-c1fc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .link-focused-1022 {
    position: relative;
  }
  
  .picture-dark-9ac6 {
    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;
  }
  
  .last_0665[aria-expanded="true"] + .picture-dark-9ac6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .full_50b8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .rough_38f6 {
    gap: 8px;
  }
  
  .box_blue_fc6e {
    display: none;
  }
  
  .overlay-green-c1fc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .article_slow_cb2a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.element-prev-b904 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.element-prev-b904 svg {
  flex-shrink: 0;
}

.element-prev-b904 a {
  color: var(--color-primary);
  text-decoration: none;
}

.element-prev-b904 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.current-3b20 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-3b20 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.yellow-f460 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .rough_f4ee {
    grid-template-columns: 1fr;
  }
  
  .complex-a9e8 {
    font-size: 1.75rem;
  }
  
  .hero-2731 {
    order: -1;
    max-width: 100%;
  }
  
  .yellow-f460 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .complex-a9e8 {
    font-size: 1.5rem;
  }
  
  .box_f0d0 {
    font-size: 1rem;
  }
  
  .small_0ca8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .yellow-f460 {
    max-width: 250px;
  }
}

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

.picture-in-41eb {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.alert-smooth-95e1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

.steel-beb6 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;
}

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

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

.form-5e99 {
  background: var(--color-bg-section);
}

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

.pattern-5eef {
  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);
}

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

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

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

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

.filter-active-045f {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.filter-active-045f img {
  max-width: 100%;
  height: auto;
  display: block;
}

.filter-active-045f pre,
.filter-active-045f code {
  overflow-x: auto;
  max-width: 100%;
}

.filter-active-045f 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);
}

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

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

.filter-active-045f p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.filter-active-045f ul,
.filter-active-045f ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.filter-active-045f li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.filter-active-045f strong {
  font-weight: 600;
  color: var(--color-text);
}

.filter-active-045f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.filter-active-045f a:hover {
  color: var(--color-primary-dark);
}

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

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

.button_steel_6a9f 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) {
  .north-6490 {
    grid-template-columns: 1fr;
  }
  
  .clean-0966 {
    font-size: 1.75rem;
  }
  
  .filter-active-045f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .clean-0966 {
    font-size: 1.5rem;
  }
  
  .filter-active-045f h3 {
    font-size: 1.375rem;
  }
  
  .filter-active-045f h4 {
    font-size: 1.125rem;
  }
}

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

.chip-5be0 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.steel_4ed4 {
  flex-shrink: 0;
}

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

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

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

.module-plasma-e768,
.background-slow-ff94,
.block_easy_ee33 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.module-plasma-e768 thead,
.background-slow-ff94 thead {
  background: var(--color-primary);
  color: white;
}

.module-plasma-e768 th,
.module-plasma-e768 td,
.background-slow-ff94 th,
.background-slow-ff94 td,
.block_easy_ee33 th,
.block_easy_ee33 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .module-plasma-e768 th,
  .module-plasma-e768 td,
  .background-slow-ff94 th,
  .background-slow-ff94 td,
  .block_easy_ee33 th,
  .block_easy_ee33 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .module-plasma-e768,
  .background-slow-ff94,
  .block_easy_ee33 {
    min-width: 600px;
  }
}

.module-plasma-e768 th,
.background-slow-ff94 th,
.block_easy_ee33 th {
  font-weight: 600;
}

.module-plasma-e768 tbody tr:hover,
.background-slow-ff94 tbody tr:hover,
.block_easy_ee33 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption_south_6642 h4 {
  color: white;
}

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

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

.grid-1c78:last-child {
  border-bottom: none;
}

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

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

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

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

.tabs-mini-d111:hover {
  text-decoration: underline;
}

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

.main-9f60 {
  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);
}

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

.badge-fcd8 {
  font-weight: 600;
  color: white;
}

.action-7ce9 {
  list-style: none;
  padding: 0;
}

.action-7ce9 li {
  padding: var(--space-xs) 0;
}

.status-dae6 {
  color: #4caf50;
}

.item-35e0 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-clean-38b2 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.copper-4786 .tall-93e4 {
  width: 100%;
  background: white;
}

.widget-right-d880 .tall-93e4 {
  color: #667eea;
}

.progress-rough-dd6f .tall-93e4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .accent_94e0 {
    padding: var(--space-md);
  }
  
  .tooltip-d8a7 {
    padding: var(--space-md);
  }
  
  .menu_0dee {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.container-0ac8,
.layout-top-742b,
.fixed-4dad,
.header_0b06 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .footer-dim-0dcc {
    grid-template-columns: 1fr;
  }
}

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

.carousel-dynamic-ee08 {
  border-color: var(--color-success);
}

.liquid-1c11 {
  border-color: var(--color-warning);
}

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

.carousel-dynamic-ee08 .accent_tall_cecd {
  background: #e8f5e9;
  color: var(--color-success);
}

.liquid-1c11 .accent_tall_cecd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.filter-2b85 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.hover-149c {
  margin-top: var(--space-xxl);
}

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

.table_30ce {
  text-align: center;
}

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

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

.south-3744 .badge-fcd8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.tag-lite-0cb0 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

.hidden-solid-8ba7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.nav-793c {
  border: 2px solid #4caf50;
}

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

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

.panel-narrow-3b55 {
  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-c69b {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.shade-upper-2235 {
  text-align: right;
}

.shade-upper-2235 .hidden_4066 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.breadcrumb-large-4fda {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.west-1370 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.motion-840e {
  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);
}

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

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

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

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

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

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

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

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

.status-advanced-6d4e {
  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);
}

.status-advanced-6d4e:hover {
  background: var(--color-bg-alt);
}

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

.status-advanced-6d4e[aria-expanded="true"] .overlay-0065 {
  transform: rotate(180deg);
}

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

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

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

.sidebar-dynamic-f080 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.status_b9fa ul,
.brown_1da3 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-cold-9cae {
  font-style: italic;
}

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

.secondary_green_62eb {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

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

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

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

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

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

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

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

.gold-3dbf {
  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);
}

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

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

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

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

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

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

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

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

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

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

.hover-soft-fa26 .background_light_f555 {
  color: #4caf50;
  font-size: 0.875rem;
}

.block-fb1e {
  list-style: none;
  padding: 0;
}

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

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

.block-fb1e a:hover {
  color: white;
}

.first-2e3a {
  list-style: none;
  padding: 0;
}

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

.first-2e3a a {
  color: #b0b0b0;
  text-decoration: none;
}

.first-2e3a a:hover {
  color: white;
}

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

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

.mask-static-6c10 a {
  color: #4caf50;
  text-decoration: none;
}

.tooltip-active-bfe7 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .hover_south_d720 {
    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;
  }
  
  .complex-a9e8 {
    font-size: 2rem;
  }
  
  .clean-0966 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .rough_f4ee,
  .north-6490 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .fixed-6886,
  .footer-dim-0dcc,
  .hero-7ec0,
  .dark_a608,
  .icon_3b7d,
  .copper_a8f0,
  .column_99bf,
  .hovered-90b1 {
    grid-template-columns: 1fr;
  }
  
  .title_mini_6dfd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .fixed-edc5 {
    padding: var(--space-lg) 0;
  }
  
  .steel-beb6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .steel-beb6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tall-93e4 {
    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;
  }
  
  .title_mini_6dfd {
    grid-template-columns: 1fr;
  }
  
  .video-2082,
  .gallery_gas_8dca,
  .element-hot-819f {
    flex-direction: column;
    width: 100%;
  }
  
  .slider-a76c,
  .feature-4366,
  .video-2082 .tall-93e4,
  .gallery_gas_8dca .tall-93e4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .complex-a9e8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .clean-0966 {
    font-size: 1.375rem;
  }
  
  .center-ed79 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .alert-smooth-95e1,
  .hover-5157,
  .over_7177,
  .input_first_0dcc,
  .tag_slow_26ca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .middle_7630 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thumbnail-smooth-7d4e {
    gap: var(--space-xs);
  }
  
  .element-prev-b904 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .main-9f60 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .south-3744 {
    width: 150px;
    height: 150px;
  }
  
  .modal-dirty-8568 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .easy-c197,
  .fast-92d2,
  .video-2082,
  .secondary_green_62eb,
  .cool_9663,
  .dark-d2df,
  .narrow_3f92 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .fixed-edc5 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.fast-86d8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 52af */
.ghost-box-s1 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
