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

.notification-9bbf:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.surface-west-2463):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. */
.surface-west-2463,
header,
.focused-14a5,
.rough_62e3,
.accent_025c,
.slider_pressed_36e3,
.media-b084,
.gallery-gas-4299,
.small_1bd9 {
  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
   ============================================ */
.surface-west-2463 {
  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);
}

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

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

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

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

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

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

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

.slider-d403 {
  flex: 1;
}

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

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

.white-a682:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.white-a682.header-right-5782 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.slider-43aa {
  position: relative;
}

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

.component-glass-8360 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.pro-5164 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.dark-a54f[aria-expanded="true"] .label-dbf2:nth-child(2) {
  opacity: 0;
}

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

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

  .slider-d403::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .slider-d403.simple-60ee {
    display: block;
    right: 0;
  }
  
  .action_b792 {
    flex-direction: column;
    gap: 0;
  }
  
  .white-a682 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .slider-d403::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;
  }
  
  .slider-d403.simple-60ee::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .slider-d403 {
    display: none;
  }
  
  .dark-a54f {
    display: flex;
  }
  
  .feature_up_da26 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pro-5164,
  .modal_active_e4db {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slider-43aa {
    position: relative;
  }
  
  .current-9405 {
    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;
  }
  
  .component-glass-8360[aria-expanded="true"] + .current-9405 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .search_cool_a408 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .image_huge_a5c3 {
    gap: 8px;
  }
  
  .pro-5164 {
    display: none;
  }
  
  .modal_active_e4db {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .header_static_ffd0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.progress_62ad svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tag-iron-0634 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tag-iron-0634 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.outline-down-b0e6 {
  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;
}

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

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

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

.sort-08ab {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .summary-pro-f483 {
    grid-template-columns: 1fr;
  }
  
  .menu_0e9a {
    font-size: 1.75rem;
  }
  
  .menu_be05 {
    order: -1;
    max-width: 100%;
  }
  
  .fixed_7234 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .menu_0e9a {
    font-size: 1.5rem;
  }
  
  .avatar_tiny_3014 {
    font-size: 1rem;
  }
  
  .tag-iron-0634 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .fixed_7234 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-outer-45fb {
  list-style: none;
  counter-reset: toc-counter;
}

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

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

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

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

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

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

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

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

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

.background-under-7f57 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.image-full-a39b img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

.image-full-a39b strong {
  font-weight: 600;
  color: var(--color-text);
}

.image-full-a39b a {
  color: var(--color-primary);
  text-decoration: underline;
}

.image-full-a39b a:hover {
  color: var(--color-primary-dark);
}

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

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

.background-ea7e 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) {
  .highlight-medium-e941 {
    grid-template-columns: 1fr;
  }
  
  .form_outer_64c7 {
    font-size: 1.75rem;
  }
  
  .image-full-a39b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form_outer_64c7 {
    font-size: 1.5rem;
  }
  
  .image-full-a39b h3 {
    font-size: 1.375rem;
  }
  
  .image-full-a39b h4 {
    font-size: 1.125rem;
  }
}

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

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

.backdrop-east-b5b1 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.plasma-6b3c {
  flex-shrink: 0;
}

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

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

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

.tag-9cbe,
.menu-center-4a2e,
.paragraph_b72d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tag-9cbe thead,
.menu-center-4a2e thead {
  background: var(--color-primary);
  color: white;
}

.tag-9cbe th,
.tag-9cbe td,
.menu-center-4a2e th,
.menu-center-4a2e td,
.paragraph_b72d th,
.paragraph_b72d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tag-9cbe th,
  .tag-9cbe td,
  .menu-center-4a2e th,
  .menu-center-4a2e td,
  .paragraph_b72d th,
  .paragraph_b72d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tag-9cbe,
  .menu-center-4a2e,
  .paragraph_b72d {
    min-width: 600px;
  }
}

.tag-9cbe th,
.menu-center-4a2e th,
.paragraph_b72d th {
  font-weight: 600;
}

.tag-9cbe tbody tr:hover,
.menu-center-4a2e tbody tr:hover,
.paragraph_b72d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.backdrop-fast-25b4 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.shade-plasma-2f1d {
  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);
}

.shade-plasma-2f1d span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.feature_large_0bcc {
  color: #4caf50;
}

.secondary_303a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.footer-west-8361 {
  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;
}

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

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

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

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

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

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

.notification-old-60eb h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_wood_4459 .carousel-right-b748 {
  width: 100%;
  background: white;
}

.tertiary_aea9 .carousel-right-b748 {
  color: #667eea;
}

.smooth_f4d8 .carousel-right-b748 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .widget_short_845e {
    padding: var(--space-md);
  }
  
  .fresh_9dba {
    padding: var(--space-md);
  }
  
  .iron-aa95 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.frame_upper_7f7a,
.pink_3d07,
.banner-outer-cfb1,
.active-bfd7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.table-liquid-5e23 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

.light-6f21:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.feature-f414 .button-e495 {
  background: #e8f5e9;
  color: var(--color-success);
}

.panel_pro_7d19 .button-e495 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus-out-6631 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.warm-38ab {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-5e84 {
  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;
}

.aside-cold-2ea2 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.search_lower_686f {
  text-align: right;
}

.search_lower_686f .input-8dee {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small_b3b5[aria-expanded="true"] .smooth-cde6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-05f1,
.caption-gas-0760 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.photo-05f1 h4,
.caption-gas-0760 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.photo-05f1 ul,
.caption-gas-0760 ul {
  list-style: none;
  padding: 0;
}

.photo-05f1 li,
.caption-gas-0760 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-b3f4 {
  font-style: italic;
}

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

.notice-fluid-ac1b {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-c422 .fluid-fe3f {
  color: #4caf50;
  font-size: 0.875rem;
}

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

.modal-smooth-f679 li {
  margin-bottom: var(--space-xs);
}

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

.modal-smooth-f679 a:hover {
  color: white;
}

.notification-69f6 {
  list-style: none;
  padding: 0;
}

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

.notification-69f6 a {
  color: #b0b0b0;
  text-decoration: none;
}

.notification-69f6 a:hover {
  color: white;
}

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

.thumbnail-copper-4c8b p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.thumbnail-copper-4c8b a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .row_f319 {
    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;
  }
  
  .menu_0e9a {
    font-size: 2rem;
  }
  
  .form_outer_64c7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .summary-pro-f483,
  .highlight-medium-e941 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hard_7d53,
  .table-over-fd4b,
  .form_dirty_ff64,
  .warm_f31a,
  .footer_c207,
  .search_upper_968a,
  .yellow-2765,
  .plasma-9915 {
    grid-template-columns: 1fr;
  }
  
  .logo-f10f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .media-b084 {
    padding: var(--space-lg) 0;
  }
  
  .image-outer-45fb li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .image-outer-45fb li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel-right-b748 {
    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;
  }
  
  .logo-f10f {
    grid-template-columns: 1fr;
  }
  
  .sort-08ab,
  .caption_west_0605,
  .rough_5dcb {
    flex-direction: column;
    width: 100%;
  }
  
  .content-aa0e,
  .list-e52b,
  .sort-08ab .carousel-right-b748,
  .caption_west_0605 .carousel-right-b748 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .menu_0e9a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .form_outer_64c7 {
    font-size: 1.375rem;
  }
  
  .shadow_under_084b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .frame_thick_651a,
  .tertiary_prev_6865,
  .wide_615a,
  .label-ff1b,
  .row-269e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .table_9eaa {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .box_2371 {
    gap: var(--space-xs);
  }
  
  .progress_62ad {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .shade-plasma-2f1d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .orange_111c {
    width: 150px;
    height: 150px;
  }
  
  .paragraph_small_45af {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .surface-west-2463,
  .focused-14a5,
  .sort-08ab,
  .notice-fluid-ac1b,
  .gallery-gas-4299,
  .small_1bd9,
  .dark-a54f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .media-b084 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: bee3 */
.ghost-box-d2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
