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

.grid_e3ff:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.light-1d26):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.light-1d26,
header,
.notification_b435,
.hover_5edf,
.stone-7262,
.white-fcd8,
.action-f4b0,
.heading_90e3,
.frame_30cf {
  max-width: none;
}

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

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

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

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

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

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

.detail-center-e971 img {
  height: 36px;
  width: auto;
  display: block;
}

.status-65dd {
  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_ef26 {
  flex: 1;
}

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

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

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

.button_black_f1ea.fn-active-66c6 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.filter-hard-9b07 {
  position: relative;
}

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

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

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

.inner-99fa {
  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;
}

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

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

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

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

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

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

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

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

.copper_dac7 svg {
  flex-shrink: 0;
}

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

.inner-05d5: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);
}

.inner-05d5 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.row-2dd9[aria-expanded="true"] .bright-f8bc:nth-child(2) {
  opacity: 0;
}

.row-2dd9[aria-expanded="true"] .bright-f8bc:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

@media (max-width: 1100px) {
  .accordion_ef26 {
    display: none;
  }
  
  .row-2dd9 {
    display: flex;
  }
  
  .status-65dd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .copper_dac7,
  .inner-05d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .filter-hard-9b07 {
    position: relative;
  }
  
  .inner-99fa {
    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;
  }
  
  .header_black_eccf[aria-expanded="true"] + .inner-99fa {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .paragraph_static_6d18 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .status-copper-fd3e {
    gap: 8px;
  }
  
  .copper_dac7 {
    display: none;
  }
  
  .inner-05d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .detail-center-e971 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.badge-ba12 svg {
  flex-shrink: 0;
}

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

.badge-ba12 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.light-42a5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.light-42a5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.avatar-1d6a {
  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;
}

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

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

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

.title-liquid-554c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.form-14e7 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .clean-8b2c {
    grid-template-columns: 1fr;
  }
  
  .grid_ae27 {
    font-size: 1.75rem;
  }
  
  .form-14e7 {
    order: -1;
    max-width: 100%;
  }
  
  .tabs_3987 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid_ae27 {
    font-size: 1.5rem;
  }
  
  .header-1edc {
    font-size: 1rem;
  }
  
  .light-42a5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tabs_3987 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.article-complex-9344 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-selected-da3f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-gas-700d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.preview-gas-700d 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) {
  .steel-ca86 {
    grid-template-columns: 1fr;
  }
  
  .article-selected-da3f {
    font-size: 1.75rem;
  }
  
  .section_22d7 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .article-selected-da3f {
    font-size: 1.5rem;
  }
  
  .section_22d7 h3 {
    font-size: 1.375rem;
  }
  
  .section_22d7 h4 {
    font-size: 1.125rem;
  }
}

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

.article-next-198e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.wide-c4d9 {
  flex-shrink: 0;
}

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

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

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

.preview-lite-aa3f,
.panel_orange_ea81,
.text-silver-2082 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.preview-lite-aa3f thead,
.panel_orange_ea81 thead {
  background: var(--color-primary);
  color: white;
}

.preview-lite-aa3f th,
.preview-lite-aa3f td,
.panel_orange_ea81 th,
.panel_orange_ea81 td,
.text-silver-2082 th,
.text-silver-2082 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .preview-lite-aa3f th,
  .preview-lite-aa3f td,
  .panel_orange_ea81 th,
  .panel_orange_ea81 td,
  .text-silver-2082 th,
  .text-silver-2082 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .preview-lite-aa3f,
  .panel_orange_ea81,
  .text-silver-2082 {
    min-width: 600px;
  }
}

.preview-lite-aa3f th,
.panel_orange_ea81 th,
.text-silver-2082 th {
  font-weight: 600;
}

.preview-lite-aa3f tbody tr:hover,
.panel_orange_ea81 tbody tr:hover,
.text-silver-2082 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.chip_orange_7aac h4 {
  color: white;
}

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

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

.description-dim-7028:last-child {
  border-bottom: none;
}

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

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

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

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

.pattern-black-510d:hover {
  text-decoration: underline;
}

.photo-steel-3b0f {
  text-align: center;
  margin-bottom: var(--space-md);
}

.hover-soft-74b5 {
  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);
}

.hover-soft-74b5 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.hover-7e86 {
  color: #4caf50;
}

.border_pink_8d66 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-glass-5fec {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.tag-28cb {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.outline-88b4 .complex_3a21 {
  width: 100%;
  background: white;
}

.hero_smooth_060b .complex_3a21 {
  color: #667eea;
}

.short_6717 .complex_3a21 {
  color: #f5576c;
}

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

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

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

.purple-3f58 {
  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);
}

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

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

@media (max-width: 768px) {
  .active_53d3 {
    padding: var(--space-md);
  }
  
  .footer_silver_52e0 {
    padding: var(--space-md);
  }
  
  .sidebar-middle-953c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.sidebar-middle-953c {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.pattern_smooth_5c04,
.shade_motion_6a06,
.over_28e8,
.list_b774 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.simple-955c h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.surface-4c4a {
  border-color: var(--color-warning);
}

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

.slider_down_6f23 .gallery_blue_58d4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.surface-4c4a .gallery_blue_58d4 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.row-wide-2e74 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

.component-paper-6d5e {
  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);
}

.media-paper-d6b0 {
  text-align: center;
}

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

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

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

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

.grid-03ce p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out-1ac8 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.basic_346d {
  text-align: right;
}

.basic_346d .badge-1461 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.sidebar-d11c {
  background: #e3f2fd;
  color: #1565c0;
}

.red-b5ab {
  background: #fff3e0;
  color: #e65100;
}

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

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

.small-2e74 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.section_a5a1[aria-expanded="true"] .photo-b0fa {
  transform: rotate(180deg);
}

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

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

.surface-stone-2dc0 ul,
.surface-stone-2dc0 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.surface-stone-2dc0 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.thick-117c,
.chip-soft-9e3e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.thick-117c h4,
.chip-soft-9e3e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.thick-117c ul,
.chip-soft-9e3e ul {
  list-style: none;
  padding: 0;
}

.thick-117c li,
.chip-soft-9e3e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.description_smooth_f3e5 {
  font-style: italic;
}

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

.dark-757e {
  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;
}

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

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

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

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

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

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

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

.in-21d5 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.small-1cd2 .heading_54b6 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.box_cad4 a:hover {
  color: white;
}

.green-a939 {
  list-style: none;
  padding: 0;
}

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

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

.green-a939 a:hover {
  color: white;
}

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

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

.thumbnail-47e1 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.modal-cc62:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .video_ec44 {
    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;
  }
  
  .grid_ae27 {
    font-size: 2rem;
  }
  
  .article-selected-da3f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .clean-8b2c,
  .steel-ca86 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .over_ae58,
  .down_86e8,
  .clean-a829,
  .picture-tiny-f464,
  .filter_6ab7,
  .gas-f64f,
  .popup_bottom_066d,
  .header-thick-4c45 {
    grid-template-columns: 1fr;
  }
  
  .wood-9ff0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .action-f4b0 {
    padding: var(--space-lg) 0;
  }
  
  .steel_b2f2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .steel_b2f2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .complex_3a21 {
    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;
  }
  
  .wood-9ff0 {
    grid-template-columns: 1fr;
  }
  
  .title-liquid-554c,
  .breadcrumb-30d2,
  .action-55bb {
    flex-direction: column;
    width: 100%;
  }
  
  .slow-d97b,
  .article-complex-9344,
  .title-liquid-554c .complex_3a21,
  .breadcrumb-30d2 .complex_3a21 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid_ae27 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .article-selected-da3f {
    font-size: 1.375rem;
  }
  
  .block_0bb1 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .plasma-c0c5,
  .summary_9a25,
  .layout-fluid-f954,
  .action-9b2a,
  .aside-679f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .small_bdc4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .widget_1d44 {
    gap: var(--space-xs);
  }
  
  .badge-ba12 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hover-soft-74b5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .box_tall_726e {
    width: 150px;
    height: 150px;
  }
  
  .detail_brown_e18c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .light-1d26,
  .notification_b435,
  .title-liquid-554c,
  .dark-757e,
  .heading_90e3,
  .frame_30cf,
  .row-2dd9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .action-f4b0 {
    page-break-inside: avoid;
  }
}

/* css-noise: d9de */
.phantom-card-b6 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
