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

.clean_cfa4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.layout-93e2):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. */
.layout-93e2,
header,
.shade-static-901b,
.panel_cold_d1a6,
.picture-6978,
.south_a5f5,
.slider_192f,
.link-e85d,
.complex-30f8 {
  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
   ============================================ */
.layout-93e2 {
  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);
}

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

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

/* Scrolled state */
.layout-93e2.modal-e7e7 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.hard_bbe3 {
  flex: 1;
}

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

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

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

.photo_bottom_584e.link-soft-f3f6 {
  background: var(--color-primary);
  color: white;
}

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

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

.texture-b2f8 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.primary-fde6 svg {
  flex-shrink: 0;
}

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

.west-8fd9: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);
}

.west-8fd9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.feature-8f77[aria-expanded="true"] .gradient_clean_cfa3:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .hard_bbe3 {
    display: none;
  }
  
  .feature-8f77 {
    display: flex;
  }
  
  .secondary_92c9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .primary-fde6,
  .west-8fd9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .popup_stale_60b6 {
    position: relative;
  }
  
  .warm-9291 {
    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;
  }
  
  .texture-b2f8[aria-expanded="true"] + .warm-9291 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .label-bright-e563 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .west_8ac0 {
    gap: 8px;
  }
  
  .primary-fde6 {
    display: none;
  }
  
  .west-8fd9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .media_gas_4fb3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.overlay-3998 svg {
  flex-shrink: 0;
}

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

.overlay-3998 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.image-3fcb {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.notification-gas-b0df {
  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;
}

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

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

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

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

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

.tooltip-upper-21f4 {
  position: relative;
  text-align: center;
}

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

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

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

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

.description-thick-2d06 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .pink-bb82 {
    grid-template-columns: 1fr;
  }
  
  .list_clean_0953 {
    font-size: 1.75rem;
  }
  
  .stale_0e63 {
    order: -1;
    max-width: 100%;
  }
  
  .tooltip-upper-21f4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .list_clean_0953 {
    font-size: 1.5rem;
  }
  
  .hard-3bce {
    font-size: 1rem;
  }
  
  .feature_purple_d868 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tooltip-upper-21f4 {
    max-width: 250px;
  }
}

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

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

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

.tag-clean-10a8 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.tag-clean-10a8:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.message-first-7e06 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper-ee52 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar_f4ba 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) {
  .selected_0d64 {
    grid-template-columns: 1fr;
  }
  
  .paragraph_b47d {
    font-size: 1.75rem;
  }
  
  .slider_4a34 {
    max-width: 100%;
  }
}

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

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

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

.modal-1e5d {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.search-db31 {
  flex-shrink: 0;
}

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

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

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

.avatar-ea43,
.filter_a846,
.logo_fluid_effa {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar-ea43 thead,
.filter_a846 thead {
  background: var(--color-primary);
  color: white;
}

.avatar-ea43 th,
.avatar-ea43 td,
.filter_a846 th,
.filter_a846 td,
.logo_fluid_effa th,
.logo_fluid_effa td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .avatar-ea43 th,
  .avatar-ea43 td,
  .filter_a846 th,
  .filter_a846 td,
  .logo_fluid_effa th,
  .logo_fluid_effa td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .avatar-ea43,
  .filter_a846,
  .logo_fluid_effa {
    min-width: 600px;
  }
}

.avatar-ea43 th,
.filter_a846 th,
.logo_fluid_effa th {
  font-weight: 600;
}

.avatar-ea43 tbody tr:hover,
.filter_a846 tbody tr:hover,
.logo_fluid_effa tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.list_c42d h4 {
  color: white;
}

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

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

.focus-focused-1514:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.form-top-b1de {
  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);
}

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

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

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

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

.alert_514f {
  color: #4caf50;
}

.main-bright-c3d7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-dirty-7ff0 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.outline-4e63 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.content-liquid-fdae .bronze-d607 {
  width: 100%;
  background: white;
}

.article-outer-01ca .bronze-d607 {
  color: #667eea;
}

.header-red-d059 .bronze-d607 {
  color: #f5576c;
}

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

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

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

.detail-purple-51ad {
  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);
}

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

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

@media (max-width: 768px) {
  .heading_6e73 {
    padding: var(--space-md);
  }
  
  .short_49c4 {
    padding: var(--space-md);
  }
  
  .badge_5188 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.mask-1760,
.south-871c,
.orange-b55a,
.card_1b65 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.label-gold-6fa8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.east-2828 .dirty-d6f1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tooltip_1277 .dirty-d6f1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.shadow-50b7 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.accent-basic-da4f {
  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);
}

.notification_dc9a {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.link-471b {
  margin-bottom: var(--space-xl);
}

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

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

.shade-71a8 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.hover-green-b357 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.steel-3aa5 {
  text-align: right;
}

.steel-3aa5 .section-liquid-b9a1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.text-current-f8ab {
  background: #e3f2fd;
  color: #1565c0;
}

.container-pressed-7ce4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

.alert-pressed-5d67 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-copper-0b0f,
.thick_74a0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.gallery-copper-0b0f h4,
.thick_74a0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.gallery-copper-0b0f ul,
.thick_74a0 ul {
  list-style: none;
  padding: 0;
}

.gallery-copper-0b0f li,
.thick_74a0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.hover-076f {
  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);
}

.pro-9719 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.next-d4ed {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

.popup_medium_6759 .box_tiny_513a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.gas_e60a a:hover {
  color: white;
}

.message-c53a {
  list-style: none;
  padding: 0;
}

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

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

.message-c53a a:hover {
  color: white;
}

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

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

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

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

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

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

.row-purple-9947:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .outer_fa48 {
    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;
  }
  
  .list_clean_0953 {
    font-size: 2rem;
  }
  
  .paragraph_b47d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pink-bb82,
  .selected_0d64 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .notice-05df,
  .card_easy_0cbc,
  .active-f7ed,
  .photo-e89a,
  .header_63c7,
  .chip-fixed-4829,
  .paragraph_bottom_f8bf,
  .purple-2a1d {
    grid-template-columns: 1fr;
  }
  
  .aside_new_92fa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slider_192f {
    padding: var(--space-lg) 0;
  }
  
  .button_2503 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .button_2503 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .bronze-d607 {
    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;
  }
  
  .aside_new_92fa {
    grid-template-columns: 1fr;
  }
  
  .outline_e47b,
  .form-b589,
  .progress_0ce3 {
    flex-direction: column;
    width: 100%;
  }
  
  .icon-1295,
  .message-first-7e06,
  .outline_e47b .bronze-d607,
  .form-b589 .bronze-d607 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .list_clean_0953 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .paragraph_b47d {
    font-size: 1.375rem;
  }
  
  .popup_6498 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tooltip_paper_ccc8,
  .caption_6152,
  .focused-bc85,
  .image_blue_7099,
  .preview-d1c9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .column-tiny-b5ea {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .green-666a {
    gap: var(--space-xs);
  }
  
  .overlay-3998 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .form-top-b1de {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .link_0498 {
    width: 150px;
    height: 150px;
  }
  
  .row-c0ea {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .layout-93e2,
  .shade-static-901b,
  .outline_e47b,
  .logo-c799,
  .link-e85d,
  .complex-30f8,
  .feature-8f77 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slider_192f {
    page-break-inside: avoid;
  }
}

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

/* css-noise: fcfb */
.ghost-box-a7 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
