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

.item_9830:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .component-outer-49bb {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .component-outer-49bb {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.image-2f3e):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. */
.image-2f3e,
header,
.accent_bronze_4bc7,
.header_ff36,
.highlight-097c,
.old-7798,
.action_2fef,
.tertiary_dark_d0ff,
.container_6257 {
  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
   ============================================ */
.image-2f3e {
  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);
}

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

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

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

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

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

.shade-hovered-f862 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.accordion_4ff5 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-515e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .accordion_4ff5 {
    display: none;
  }
  
  .frame_gas_b2e1 {
    display: flex;
  }
  
  .thumbnail_d02f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .grid-515e,
  .cool-0250 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .west_4c72 {
    position: relative;
  }
  
  .warm_f6f4 {
    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;
  }
  
  .first_ce53[aria-expanded="true"] + .warm_f6f4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module-33fd {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tiny_d7f9 {
    gap: 8px;
  }
  
  .grid-515e {
    display: none;
  }
  
  .cool-0250 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .shade-hovered-f862 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.black_e48c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-mini-d45c {
  display: flex;
  gap: var(--space-sm);
}

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

.popup-brown-d90a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.popup-brown-d90a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.orange-fd66 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .search-e38f {
    grid-template-columns: 1fr;
  }
  
  .card-5e12 {
    font-size: 1.75rem;
  }
  
  .preview_tiny_1b55 {
    order: -1;
    max-width: 100%;
  }
  
  .orange-fd66 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .card-5e12 {
    font-size: 1.5rem;
  }
  
  .wrapper_d6a0 {
    font-size: 1rem;
  }
  
  .paragraph_prev_fd9a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .orange-fd66 {
    max-width: 250px;
  }
}

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

.content-cold-c1cc {
  background: var(--color-primary);
  color: white;
}

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

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

.current-2d25:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.under-903f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-c34d 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;
}

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

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

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

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

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

.tag-lower-8655 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thick_ba6c 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) {
  .pro_b180 {
    grid-template-columns: 1fr;
  }
  
  .tag-lower-8655 {
    font-size: 1.75rem;
  }
  
  .nav_south_fa95 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-lower-8655 {
    font-size: 1.5rem;
  }
  
  .nav_south_fa95 h3 {
    font-size: 1.375rem;
  }
  
  .nav_south_fa95 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.smooth-5f20 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.nav-bd05 {
  flex-shrink: 0;
}

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

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

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

.center-1284,
.soft_b51b,
.mask_hard_e8f6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.center-1284 thead,
.soft_b51b thead {
  background: var(--color-primary);
  color: white;
}

.center-1284 th,
.center-1284 td,
.soft_b51b th,
.soft_b51b td,
.mask_hard_e8f6 th,
.mask_hard_e8f6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .center-1284 th,
  .center-1284 td,
  .soft_b51b th,
  .soft_b51b td,
  .mask_hard_e8f6 th,
  .mask_hard_e8f6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .center-1284,
  .soft_b51b,
  .mask_hard_e8f6 {
    min-width: 600px;
  }
}

.center-1284 th,
.soft_b51b th,
.mask_hard_e8f6 th {
  font-weight: 600;
}

.center-1284 tbody tr:hover,
.soft_b51b tbody tr:hover,
.mask_hard_e8f6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.bottom_5831 h4 {
  color: white;
}

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

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

.form-6546:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.old-886d {
  list-style: none;
  padding: 0;
}

.old-886d li {
  padding: var(--space-xs) 0;
}

.chip_complex_c79b {
  color: #4caf50;
}

.large-db04 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .item-orange-22b0 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container_slow_778f .up_c2b2 {
  width: 100%;
  background: white;
}

.last_903b .up_c2b2 {
  color: #667eea;
}

.over-e38b .up_c2b2 {
  color: #f5576c;
}

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

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

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

.secondary-wide-d3d9 {
  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);
}

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

.solid-90ad {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .layout_stale_b934 {
    padding: var(--space-md);
  }
  
  .solid-90ad {
    padding: var(--space-md);
  }
  
  .main-3e23 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.highlight_soft_abab,
.modal_887f,
.list_8129,
.full_a5dd {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_active_ad99 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.carousel-c9f6 .widget_active_ad99 {
  background: #e8f5e9;
  color: var(--color-success);
}

.clean-b4c3 .widget_active_ad99 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_narrow_6b27 {
  text-align: center;
}

.focused-2e54 {
  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);
}

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

.focused-2e54 .paragraph_956a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-dark-a6d7 {
  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;
}

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

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

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

.texture-light-090f {
  text-align: right;
}

.texture-light-090f .surface-liquid-a8cc {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.paragraph-fluid-2da4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.orange-6bb7 strong {
  color: var(--color-primary);
}

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

.background-hard-181f {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary_2653 ul,
.gallery_wide_8552 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.popup-complex-53f7 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

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

.shade-05e0 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.sidebar-962c {
  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);
}

.red-cb17 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery_slow_797b .grid-mini-d45c {
  color: #4caf50;
  font-size: 0.875rem;
}

.article-basic-82d7 {
  list-style: none;
  padding: 0;
}

.article-basic-82d7 li {
  margin-bottom: var(--space-xs);
}

.article-basic-82d7 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.article-basic-82d7 a:hover {
  color: white;
}

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

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

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

.backdrop_fast_b602 a:hover {
  color: white;
}

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

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

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

.notification-narrow-05ad {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.wide-a457:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .component-outer-c1bc {
    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;
  }
  
  .card-5e12 {
    font-size: 2rem;
  }
  
  .tag-lower-8655 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .search-e38f,
  .pro_b180 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .item-orange-22b0,
  .box_green_fdf8,
  .notification_7ad9,
  .heading_64da,
  .article-d18d,
  .fresh-43ce,
  .notification_bronze_1a69,
  .focus-2ca9 {
    grid-template-columns: 1fr;
  }
  
  .carousel_f6e8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .action_2fef {
    padding: var(--space-lg) 0;
  }
  
  .card-c34d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card-c34d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .up_c2b2 {
    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;
  }
  
  .carousel_f6e8 {
    grid-template-columns: 1fr;
  }
  
  .accent_1e36,
  .label_6daf,
  .description_b14c {
    flex-direction: column;
    width: 100%;
  }
  
  .under-903f,
  .hero_steel_90f8,
  .accent_1e36 .up_c2b2,
  .label_6daf .up_c2b2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .card-5e12 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-lower-8655 {
    font-size: 1.375rem;
  }
  
  .easy-52fe {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container-cool-efd2,
  .cool-7ce4,
  .video_ef3f,
  .hidden_1f5a,
  .photo-down-75db {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .brown_ca23 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .text_full_2be8 {
    gap: var(--space-xs);
  }
  
  .black_e48c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .silver-ce1b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .focused-2e54 {
    width: 150px;
    height: 150px;
  }
  
  .avatar_b530 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .image-2f3e,
  .accent_bronze_4bc7,
  .accent_1e36,
  .green_dcdb,
  .tertiary_dark_d0ff,
  .container_6257,
  .frame_gas_b2e1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .action_2fef {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 878a */
.ghost-box-j6 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
