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

.panel_over_83ed:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pressed_8618):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. */
.pressed_8618,
header,
.texture-f569,
.accent_0938,
.basic_9744,
.component_motion_0885,
.blue_f96a,
.texture-b351,
.old_03ed {
  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
   ============================================ */
.pressed_8618 {
  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);
}

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

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

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

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

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

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

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

.icon-8f36 {
  flex: 1;
}

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

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

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

.card_warm_fdd4.status-f5d4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.large-e439 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.gradient-inner-3edd {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.article_193f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.input-gold-82f2[aria-expanded="true"] .avatar_4290:nth-child(2) {
  opacity: 0;
}

.input-gold-82f2[aria-expanded="true"] .avatar_4290:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .icon-8f36::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .icon-8f36.breadcrumb-tall-6beb {
    display: block;
    right: 0;
  }
  
  .smooth-e3e6 {
    flex-direction: column;
    gap: 0;
  }
  
  .card_warm_fdd4 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .icon-8f36::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;
  }
  
  .icon-8f36.breadcrumb-tall-6beb::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .icon-8f36 {
    display: none;
  }
  
  .input-gold-82f2 {
    display: flex;
  }
  
  .clean_5448 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .article_193f,
  .smooth_ea72 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .large-e439 {
    position: relative;
  }
  
  .advanced-9003 {
    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;
  }
  
  .caption_under_f3f7[aria-expanded="true"] + .advanced-9003 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fixed-ed02 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gradient-inner-3edd {
    gap: 8px;
  }
  
  .article_193f {
    display: none;
  }
  
  .smooth_ea72 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fluid_c7a8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pro_f9d1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused-9d44 {
  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;
}

.inner-296f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inner-296f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .mask-f9f8 {
    grid-template-columns: 1fr;
  }
  
  .mask_lower_8d81 {
    font-size: 1.75rem;
  }
  
  .row_short_6086 {
    order: -1;
    max-width: 100%;
  }
  
  .column_soft_e2cb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .mask_lower_8d81 {
    font-size: 1.5rem;
  }
  
  .shade_bottom_8b8a {
    font-size: 1rem;
  }
  
  .label_warm_361e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .column_soft_e2cb {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.overlay-first-3d5f {
  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;
}

.old-3ff8 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.widget-80a3 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.block-hot-6cb5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.feature-5190 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-complex-e3b6 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.menu-complex-e3b6 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) {
  .caption_current_15f3 {
    grid-template-columns: 1fr;
  }
  
  .sort_rough_aeb0 {
    font-size: 1.75rem;
  }
  
  .notice_aec8 {
    max-width: 100%;
  }
}

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

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

.overlay-light-1431 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.alert_light_61cd {
  flex-shrink: 0;
}

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

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

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

.yellow-7593,
.yellow_a6b4,
.input-dark-0123 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.yellow-7593 thead,
.yellow_a6b4 thead {
  background: var(--color-primary);
  color: white;
}

.yellow-7593 th,
.yellow-7593 td,
.yellow_a6b4 th,
.yellow_a6b4 td,
.input-dark-0123 th,
.input-dark-0123 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .yellow-7593 th,
  .yellow-7593 td,
  .yellow_a6b4 th,
  .yellow_a6b4 td,
  .input-dark-0123 th,
  .input-dark-0123 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .yellow-7593,
  .yellow_a6b4,
  .input-dark-0123 {
    min-width: 600px;
  }
}

.yellow-7593 th,
.yellow_a6b4 th,
.input-dark-0123 th {
  font-weight: 600;
}

.yellow-7593 tbody tr:hover,
.yellow_a6b4 tbody tr:hover,
.input-dark-0123 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pink_fb3c h4 {
  color: white;
}

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

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

.table-92e2:last-child {
  border-bottom: none;
}

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

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

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

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

.wood-1ab2:hover {
  text-decoration: underline;
}

.column-under-767b {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.tag_445c {
  color: #4caf50;
}

.under_4231 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.pagination-clean-3dfc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.pagination-clean-3dfc p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.progress-60cf {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.down_fdcb .overlay-first-3d5f {
  width: 100%;
  background: white;
}

.outline-072a .overlay-first-3d5f {
  color: #667eea;
}

.solid_6bcb .overlay-first-3d5f {
  color: #f5576c;
}

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

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

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

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

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

.slider-5bde {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .first-e26c {
    padding: var(--space-md);
  }
  
  .slider-5bde {
    padding: var(--space-md);
  }
  
  .banner_d9fa {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.main-north-1cc6,
.huge-0ce9,
.block_left_edc9,
.logo_0775 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.info-177a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.button-blue-1b5f {
  border-color: var(--color-warning);
}

.notification-670d {
  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);
}

.wide_b2a3 .notification-670d {
  background: #e8f5e9;
  color: var(--color-success);
}

.button-blue-1b5f .notification-670d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-warm-57f7 {
  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);
}

.slow-bd97 {
  text-align: center;
}

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

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

.motion-ff6e .footer_6762 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.form-outer-c885 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.grid-green-ed48 {
  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;
}

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

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

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

.label-dirty-110a {
  text-align: right;
}

.label-dirty-110a .yellow_e97e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.detail-yellow-731e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.south-de1e {
  background: #e8f5e9;
  color: #2e7d32;
}

.backdrop-brown-a790 {
  background: #e3f2fd;
  color: #1565c0;
}

.smooth-204f {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.fixed-112f {
  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);
}

.fixed-112f:hover {
  background: var(--color-bg-alt);
}

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

.fixed-112f[aria-expanded="true"] .progress_white_3894 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite-29de,
.chip-light-52b1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.lite-29de h4,
.chip-light-52b1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.lite-29de ul,
.chip-light-52b1 ul {
  list-style: none;
  padding: 0;
}

.lite-29de li,
.chip-light-52b1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.photo-4b6e {
  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);
}

.backdrop_4334 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block_middle_5142 .pink_431b {
  color: #4caf50;
  font-size: 0.875rem;
}

.filter-bright-05f8 {
  list-style: none;
  padding: 0;
}

.filter-bright-05f8 li {
  margin-bottom: var(--space-xs);
}

.filter-bright-05f8 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.filter-bright-05f8 a:hover {
  color: white;
}

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

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

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

.pattern_8cf5 a:hover {
  color: white;
}

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

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

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

.secondary-bronze-8061 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.breadcrumb-60d5:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dropdown_86bd {
    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;
  }
  
  .mask_lower_8d81 {
    font-size: 2rem;
  }
  
  .sort_rough_aeb0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .mask-f9f8,
  .caption_current_15f3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .inner-b29d,
  .article_purple_af7f,
  .copper_6903,
  .lower_3e20,
  .caption_b465,
  .in-3cc2,
  .link_hard_d4e8,
  .focused_256e {
    grid-template-columns: 1fr;
  }
  
  .block_wide_1b6b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .blue_f96a {
    padding: var(--space-lg) 0;
  }
  
  .input_293e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .input_293e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .overlay-first-3d5f {
    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;
  }
  
  .block_wide_1b6b {
    grid-template-columns: 1fr;
  }
  
  .accent_19d9,
  .feature_aaba,
  .bronze_ed5c {
    flex-direction: column;
    width: 100%;
  }
  
  .container_soft_a48f,
  .widget-80a3,
  .accent_19d9 .overlay-first-3d5f,
  .feature_aaba .overlay-first-3d5f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .mask_lower_8d81 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sort_rough_aeb0 {
    font-size: 1.375rem;
  }
  
  .top_8a56 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .block-hot-6cb5,
  .pagination-clean-3dfc,
  .gallery_baad,
  .prev_24ef,
  .nav_a428 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .description_hard_fb6c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .bottom-f389 {
    gap: var(--space-xs);
  }
  
  .pro_f9d1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .layout_hovered_ec48 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .motion-ff6e {
    width: 150px;
    height: 150px;
  }
  
  .gradient_95f5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pressed_8618,
  .texture-f569,
  .accent_19d9,
  .list_b254,
  .texture-b351,
  .old_03ed,
  .input-gold-82f2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .blue_f96a {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9b06 */
.promo-block-n5 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.2;
}
