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

.tooltip_bronze_59e1:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.cool_8590):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. */
.cool_8590,
header,
.title-next-1af0,
.dim_3e10,
.progress-9533,
.block-de8a,
.wide_7220,
.status_d78b,
.heading-copper-3c44 {
  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
   ============================================ */
.cool_8590 {
  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);
}

.input-11d4 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.video-c6d6 {
  flex: 1;
}

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

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

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

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

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

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

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

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

.thumbnail-out-0eb9 {
  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;
}

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

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

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

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

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

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

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

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

.cool_2bb5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .video-c6d6 {
    display: none;
  }
  
  .right_6b95 {
    display: flex;
  }
  
  .aside_75ad {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .cool_2bb5,
  .primary_bbea {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .new_ca53 {
    position: relative;
  }
  
  .thumbnail-out-0eb9 {
    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;
  }
  
  .message_4c55[aria-expanded="true"] + .thumbnail-out-0eb9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .backdrop_fixed_629f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .slider-b2aa {
    gap: 8px;
  }
  
  .cool_2bb5 {
    display: none;
  }
  
  .primary_bbea {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .notice_fluid_0888 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.selected_a12a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-copper-4a03 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.fast-0c37 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-narrow-3d37 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .thumbnail_cfd5 {
    grid-template-columns: 1fr;
  }
  
  .prev_5ac2 {
    font-size: 1.75rem;
  }
  
  .fast-0c37 {
    order: -1;
    max-width: 100%;
  }
  
  .card-narrow-3d37 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .prev_5ac2 {
    font-size: 1.5rem;
  }
  
  .huge-a3eb {
    font-size: 1rem;
  }
  
  .accent_a3b6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .card-narrow-3d37 {
    max-width: 250px;
  }
}

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

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

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

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

.primary-large-71aa:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-complex-8c7a {
  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);
}

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

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

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

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

.link-dynamic-f9cb img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.link-dynamic-f9cb 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);
}

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

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

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

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

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

.link-dynamic-f9cb strong {
  font-weight: 600;
  color: var(--color-text);
}

.link-dynamic-f9cb a {
  color: var(--color-primary);
  text-decoration: underline;
}

.link-dynamic-f9cb a:hover {
  color: var(--color-primary-dark);
}

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

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

.tabs_white_026e 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) {
  .container_first_1c98 {
    grid-template-columns: 1fr;
  }
  
  .search-complex-8c7a {
    font-size: 1.75rem;
  }
  
  .link-dynamic-f9cb {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .search-complex-8c7a {
    font-size: 1.5rem;
  }
  
  .link-dynamic-f9cb h3 {
    font-size: 1.375rem;
  }
  
  .link-dynamic-f9cb h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.tooltip-3cdf {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.secondary_7665 {
  flex-shrink: 0;
}

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

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

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

.column_tiny_f7c4,
.motion-7332,
.footer_yellow_134d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.column_tiny_f7c4 thead,
.motion-7332 thead {
  background: var(--color-primary);
  color: white;
}

.column_tiny_f7c4 th,
.column_tiny_f7c4 td,
.motion-7332 th,
.motion-7332 td,
.footer_yellow_134d th,
.footer_yellow_134d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .column_tiny_f7c4 th,
  .column_tiny_f7c4 td,
  .motion-7332 th,
  .motion-7332 td,
  .footer_yellow_134d th,
  .footer_yellow_134d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .column_tiny_f7c4,
  .motion-7332,
  .footer_yellow_134d {
    min-width: 600px;
  }
}

.column_tiny_f7c4 th,
.motion-7332 th,
.footer_yellow_134d th {
  font-weight: 600;
}

.column_tiny_f7c4 tbody tr:hover,
.motion-7332 tbody tr:hover,
.footer_yellow_134d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.in-fae2 h4 {
  color: white;
}

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

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

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

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

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

.nav-small-62c7 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

.full-0b4a {
  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);
}

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

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

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

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

.purple_5888 {
  color: #4caf50;
}

.content_b705 {
  color: #ff9800;
}

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

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

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

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

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

.notice-next-5d32 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_complex_afc4 .primary_5207 {
  width: 100%;
  background: white;
}

.accent-stale-7a42 .primary_5207 {
  color: #667eea;
}

.pagination_1f53 .primary_5207 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .notice_narrow_65a6 {
    padding: var(--space-md);
  }
  
  .medium_4a80 {
    padding: var(--space-md);
  }
  
  .highlight-first-dff7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.dropdown_up_4f86,
.item_next_a1ce,
.image_8629,
.tertiary_2572 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.column-fixed-8e5b {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

.text-0f57:hover {
  background: var(--color-primary-dark);
}

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

.wood-289d h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.tag-left-6301 {
  border-color: var(--color-success);
}

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

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

.tag-left-6301 .search_motion_2d56 {
  background: #e8f5e9;
  color: var(--color-success);
}

.blue_7e8d .search_motion_2d56 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dynamic-944b {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-orange-8b42 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.icon_iron_f0cd {
  text-align: right;
}

.icon_iron_f0cd .card_c6c6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.text-2b59 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-753c {
  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);
}

.media-753c:hover {
  background: var(--color-bg-alt);
}

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

.media-753c[aria-expanded="true"] .overlay-middle-312d {
  transform: rotate(180deg);
}

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

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

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

.section-under-d09b li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup_fba0 ul,
.clean_6d99 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-5bcd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue_0232 .logo_b798 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.row_huge_6fa0 a:hover {
  color: white;
}

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

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

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

.gradient_inner_c314 a:hover {
  color: white;
}

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

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

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

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

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

.list-under-5bad {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.list-under-5bad:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .label-0797 {
    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;
  }
  
  .prev_5ac2 {
    font-size: 2rem;
  }
  
  .search-complex-8c7a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .thumbnail_cfd5,
  .container_first_1c98 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .link-153a,
  .element-87d7,
  .mask-5a00,
  .pattern-4fff,
  .large_76ca,
  .text-current-8302,
  .description-6d9b,
  .blue-23e6 {
    grid-template-columns: 1fr;
  }
  
  .slow_8df9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wide_7220 {
    padding: var(--space-lg) 0;
  }
  
  .progress_8210 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .progress_8210 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .primary_5207 {
    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;
  }
  
  .slow_8df9 {
    grid-template-columns: 1fr;
  }
  
  .highlight-copper-4a03,
  .text-56da,
  .border_1869 {
    flex-direction: column;
    width: 100%;
  }
  
  .steel_2662,
  .paragraph_wood_5a10,
  .highlight-copper-4a03 .primary_5207,
  .text-56da .primary_5207 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .prev_5ac2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search-complex-8c7a {
    font-size: 1.375rem;
  }
  
  .form-tall-06b9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .main_upper_6fae,
  .text_8841,
  .picture-cold-5ba2,
  .hidden_middle_2ce7,
  .article_full_9cae {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .outline_6686 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .overlay_df16 {
    gap: var(--space-xs);
  }
  
  .selected_a12a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .full-0b4a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .paper_316f {
    width: 150px;
    height: 150px;
  }
  
  .picture_solid_0b2f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .cool_8590,
  .title-next-1af0,
  .highlight-copper-4a03,
  .notification-a518,
  .status_d78b,
  .heading-copper-3c44,
  .right_6b95 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wide_7220 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: d291 */
.widget-item-l1 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
