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

.dim_b9e9:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.action_4154):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. */
.action_4154,
header,
.preview_active_1ccc,
.widget_b5fc,
.active_167c,
.stale_ac40,
.frame_2f84,
.iron-cc8c,
.dynamic-805d {
  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
   ============================================ */
.action_4154 {
  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-8619 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.text_7128 {
  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_plasma_2064 {
  flex: 1;
}

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

.caption-3bf0 {
  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);
}

.caption-3bf0:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.caption-3bf0.section-iron-3efd {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.row-lite-b87c {
  position: relative;
}

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

.info-tall-08cf svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.chip-a786 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.description-blue-8b2f {
  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;
}

.description-blue-8b2f: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);
}

.description-blue-8b2f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.popup_last_5fa1[aria-expanded="true"] .section-out-fb12:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .accordion_plasma_2064 {
    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_plasma_2064::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .accordion_plasma_2064.small_6369 {
    display: block;
    right: 0;
  }
  
  .mini-0299 {
    flex-direction: column;
    gap: 0;
  }
  
  .caption-3bf0 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .accordion_plasma_2064::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_plasma_2064.small_6369::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .accordion_plasma_2064 {
    display: none;
  }
  
  .popup_last_5fa1 {
    display: flex;
  }
  
  .text_7128 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .chip-a786,
  .description-blue-8b2f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .row-lite-b87c {
    position: relative;
  }
  
  .active_af0e {
    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;
  }
  
  .info-tall-08cf[aria-expanded="true"] + .active_af0e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .item_e0f8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .message_hot_b5f4 {
    gap: 8px;
  }
  
  .chip-a786 {
    display: none;
  }
  
  .description-blue-8b2f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .north_00b9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.row_basic_396b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.south-2b96 {
  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;
}

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

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

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

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

.image-left-fe0c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-b3eb {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .primary_dark_04ec {
    grid-template-columns: 1fr;
  }
  
  .card_clean_a199 {
    font-size: 1.75rem;
  }
  
  .image-left-fe0c {
    order: -1;
    max-width: 100%;
  }
  
  .bottom-b3eb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .card_clean_a199 {
    font-size: 1.5rem;
  }
  
  .mask-complex-105f {
    font-size: 1rem;
  }
  
  .picture_b017 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .bottom-b3eb {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.picture-new-457b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.caption-wide-358c {
  list-style: none;
  counter-reset: toc-counter;
}

.caption-wide-358c li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.caption-wide-358c 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);
}

.caption-wide-358c 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;
}

.caption-wide-358c li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.basic-396e img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.basic-396e 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);
}

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

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

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

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

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

.basic-396e strong {
  font-weight: 600;
  color: var(--color-text);
}

.basic-396e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.basic-396e a:hover {
  color: var(--color-primary-dark);
}

.complex-17ba {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.complex-17ba 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) {
  .hero_green_0bcd {
    grid-template-columns: 1fr;
  }
  
  .dynamic-ce37 {
    font-size: 1.75rem;
  }
  
  .basic-396e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dynamic-ce37 {
    font-size: 1.5rem;
  }
  
  .basic-396e h3 {
    font-size: 1.375rem;
  }
  
  .basic-396e h4 {
    font-size: 1.125rem;
  }
}

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

.backdrop-basic-8f1c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.shade-91c9 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.element-huge-4861 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.shadow-12fa {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.alert-paper-d7b8 {
  flex-shrink: 0;
}

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

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

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

.popup-rough-7849,
.notice-344a,
.surface_iron_2db5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.popup-rough-7849 thead,
.notice-344a thead {
  background: var(--color-primary);
  color: white;
}

.popup-rough-7849 th,
.popup-rough-7849 td,
.notice-344a th,
.notice-344a td,
.surface_iron_2db5 th,
.surface_iron_2db5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .popup-rough-7849 th,
  .popup-rough-7849 td,
  .notice-344a th,
  .notice-344a td,
  .surface_iron_2db5 th,
  .surface_iron_2db5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .popup-rough-7849,
  .notice-344a,
  .surface_iron_2db5 {
    min-width: 600px;
  }
}

.popup-rough-7849 th,
.notice-344a th,
.surface_iron_2db5 th {
  font-weight: 600;
}

.popup-rough-7849 tbody tr:hover,
.notice-344a tbody tr:hover,
.surface_iron_2db5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tertiary_3dc8 h4 {
  color: white;
}

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

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

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

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

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

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

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

.shadow-thick-06b6:hover {
  text-decoration: underline;
}

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

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

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

.input-paper-aac3 {
  font-weight: 600;
  color: white;
}

.current-86a9 {
  list-style: none;
  padding: 0;
}

.current-86a9 li {
  padding: var(--space-xs) 0;
}

.wide-f052 {
  color: #4caf50;
}

.popup_wood_b7f8 {
  color: #ff9800;
}

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

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

.feature-gas-14f6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

.focus-action-0f9d {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

.disabled-liquid-285d h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-bright-c07c .media_01bb {
  width: 100%;
  background: white;
}

.pro_1f3e .media_01bb {
  color: #667eea;
}

.input-gas-6bd9 .media_01bb {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

.sidebar-806b li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.block-853b,
.dropdown_dim_3f34,
.description-liquid-bc52,
.element-fast-d957 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard_fd40 .link-c6b5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.east_8599 .link-c6b5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.wrapper-motion-66a8 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.blue-864d {
  margin-top: var(--space-xxl);
}

.video-fresh-827a {
  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);
}

.sidebar_0bad {
  text-align: center;
}

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

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

.outer_6b06 .input-paper-aac3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.layout-green-1a9c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-30b5 {
  border: 2px solid #4caf50;
}

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

.notification-fast-fe89 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.cold-46b5 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.overlay-61fb {
  text-align: right;
}

.overlay-61fb .north-030f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.stone-e50e {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.element-de8d {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.texture-pressed-71c5 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.silver-82a6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.box_brown_d8bc[aria-expanded="true"] .silver-82a6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature_18c6,
.outline-1487 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.feature_18c6 h4,
.outline-1487 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.feature_18c6 ul,
.outline-1487 ul {
  list-style: none;
  padding: 0;
}

.feature_18c6 li,
.outline-1487 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

.logo-action-e919 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

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

.hidden-old-6050 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.green_b459 {
  font-style: italic;
}

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

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

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

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

.button-first-8e2a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow_960c .widget-e294 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.video_26cc a:hover {
  color: white;
}

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

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

.box-blue-8878 a {
  color: #b0b0b0;
  text-decoration: none;
}

.box-blue-8878 a:hover {
  color: white;
}

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

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

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

.texture-09d2 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .hovered-d850 {
    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_clean_a199 {
    font-size: 2rem;
  }
  
  .dynamic-ce37 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .primary_dark_04ec,
  .hero_green_0bcd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .background-0c30,
  .badge-de82,
  .preview_hovered_1348,
  .row_south_f35d,
  .pagination-iron-0d98,
  .column_8720,
  .grid_tiny_10ef,
  .photo-8133 {
    grid-template-columns: 1fr;
  }
  
  .info-b5aa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .frame_2f84 {
    padding: var(--space-lg) 0;
  }
  
  .caption-wide-358c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .caption-wide-358c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .media_01bb {
    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;
  }
  
  .info-b5aa {
    grid-template-columns: 1fr;
  }
  
  .short-d233,
  .button-first-8e2a,
  .pressed-e7f0 {
    flex-direction: column;
    width: 100%;
  }
  
  .layout_plasma_b67e,
  .media_under_7363,
  .short-d233 .media_01bb,
  .button-first-8e2a .media_01bb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .card_clean_a199 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dynamic-ce37 {
    font-size: 1.375rem;
  }
  
  .tabs-glass-b49a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .picture-new-457b,
  .box-steel-b4db,
  .shade-up-5558,
  .in_89ab,
  .paragraph_3964 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wrapper_blue_4d70 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .steel-e441 {
    gap: var(--space-xs);
  }
  
  .row_basic_396b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .in_cff0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .outer_6b06 {
    width: 150px;
    height: 150px;
  }
  
  .orange_420a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .action_4154,
  .preview_active_1ccc,
  .short-d233,
  .icon-e4e4,
  .iron-cc8c,
  .dynamic-805d,
  .popup_last_5fa1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .frame_2f84 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 7f90 */
.widget-item-a8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
