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

.wood-9632:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.detail-0cb8):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. */
.detail-0cb8,
header,
.list_57c7,
.overlay_dim_9777,
.large_54e4,
.last-d15e,
.picture_ee77,
.current-8a5a,
.sort_6e17 {
  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
   ============================================ */
.detail-0cb8 {
  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);
}

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

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

/* Scrolled state */
.detail-0cb8.modal-73c0 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.layout-short-5756 {
  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;
}

.wrapper_16d9 {
  flex: 1;
}

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

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

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

.summary-df67.logo_east_3014 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_531f svg {
  flex-shrink: 0;
}

/* Header Download Button */
.description_314a {
  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_314a: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_314a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.card-9f33[aria-expanded="true"] .gas_ef7e:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .wrapper_16d9 {
    display: none;
  }
  
  .card-9f33 {
    display: flex;
  }
  
  .layout-short-5756 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .center_531f,
  .description_314a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .heading_pro_d859 {
    position: relative;
  }
  
  .status-d8f0 {
    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;
  }
  
  .nav_2fe4[aria-expanded="true"] + .status-d8f0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .content_plasma_b60b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.text_pro_89ed svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.mini-4fdd a {
  color: var(--color-primary);
  text-decoration: none;
}

.mini-4fdd a:hover {
  text-decoration: underline;
}

.tooltip-3aa3 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.alert-iron-93a7 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.right-08fb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-action-abd7 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .bottom-ecc9 {
    grid-template-columns: 1fr;
  }
  
  .hidden-2788 {
    font-size: 1.75rem;
  }
  
  .right-08fb {
    order: -1;
    max-width: 100%;
  }
  
  .info-action-abd7 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hidden-2788 {
    font-size: 1.5rem;
  }
  
  .pressed-ee44 {
    font-size: 1rem;
  }
  
  .mini-4fdd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .info-action-abd7 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.pagination-78db {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-active-66ae {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.tag-tiny-91e1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out_ef6b 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) {
  .wide_9f24 {
    grid-template-columns: 1fr;
  }
  
  .tag-tiny-91e1 {
    font-size: 1.75rem;
  }
  
  .block-c90a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-tiny-91e1 {
    font-size: 1.5rem;
  }
  
  .block-c90a h3 {
    font-size: 1.375rem;
  }
  
  .block-c90a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.section-9d64 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.cool-9f6a {
  flex-shrink: 0;
}

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

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

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

.avatar_inner_20df,
.nav-new-b913,
.icon-b5ca {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar_inner_20df thead,
.nav-new-b913 thead {
  background: var(--color-primary);
  color: white;
}

.avatar_inner_20df th,
.avatar_inner_20df td,
.nav-new-b913 th,
.nav-new-b913 td,
.icon-b5ca th,
.icon-b5ca td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .avatar_inner_20df th,
  .avatar_inner_20df td,
  .nav-new-b913 th,
  .nav-new-b913 td,
  .icon-b5ca th,
  .icon-b5ca td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .avatar_inner_20df,
  .nav-new-b913,
  .icon-b5ca {
    min-width: 600px;
  }
}

.avatar_inner_20df th,
.nav-new-b913 th,
.icon-b5ca th {
  font-weight: 600;
}

.avatar_inner_20df tbody tr:hover,
.nav-new-b913 tbody tr:hover,
.icon-b5ca tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.center_a2f0 h4 {
  color: white;
}

.panel-steel-18bc {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.element-a81b:last-child {
  border-bottom: none;
}

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

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

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

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

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

.filter-red-302b {
  text-align: center;
  margin-bottom: var(--space-md);
}

.notification-dirty-cc36 {
  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);
}

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

.light-f5e9 {
  font-weight: 600;
  color: white;
}

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

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

.title_simple_97a1 {
  color: #4caf50;
}

.large-30ca {
  color: #ff9800;
}

.block-04bf {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .block-top-737e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.input_559e .button-ca11 {
  width: 100%;
  background: white;
}

.notice-plasma-a48c .button-ca11 {
  color: #667eea;
}

.pagination_6ad2 .button-ca11 {
  color: #f5576c;
}

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

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

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

.huge-729d {
  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);
}

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

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

@media (max-width: 768px) {
  .hot_0aa5 {
    padding: var(--space-md);
  }
  
  .action-7468 {
    padding: var(--space-md);
  }
  
  .text_advanced_6d5a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.huge_7c8e,
.inner_7153,
.yellow-4fbf,
.container_top_a758 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.modal-soft-ef0d:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.tertiary_new_721c .easy_8257 {
  background: #e8f5e9;
  color: var(--color-success);
}

.element_fast_d422 .easy_8257 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_fluid_2f00 {
  text-align: center;
}

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

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

.center_4994 .light-f5e9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.header-prev-f410 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.image-662e {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.sidebar-under-267f {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.thumbnail_dynamic_467e {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

.summary-gas-bbb1 {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.sort-steel-1ec5 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

.widget-new-ab9f li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.white-67f2,
.input-0ced {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.white-67f2 h4,
.input-0ced h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.white-67f2 ul,
.input-0ced ul {
  list-style: none;
  padding: 0;
}

.white-67f2 li,
.input-0ced li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.carousel-506e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.focus-dark-8cef {
  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);
}

.feature-2d30 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.container-9be6 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.link-eae4 .alert-iron-93a7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.black-ade0 {
  list-style: none;
  padding: 0;
}

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

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

.black-ade0 a:hover {
  color: white;
}

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

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

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

.accordion_iron_debd a:hover {
  color: white;
}

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

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

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

.list-warm-da90 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.warm-9c1d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .north-ef76 {
    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;
  }
  
  .hidden-2788 {
    font-size: 2rem;
  }
  
  .tag-tiny-91e1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .bottom-ecc9,
  .wide_9f24 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .outer-b011,
  .card-ffae,
  .block-top-737e,
  .slider_1fc3,
  .caption-light-209a,
  .icon-wood-6381,
  .hidden_tiny_0982,
  .popup-silver-7f1c {
    grid-template-columns: 1fr;
  }
  
  .block_75e0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .picture_ee77 {
    padding: var(--space-lg) 0;
  }
  
  .fluid_c77a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fluid_c77a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .button-ca11 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .block_75e0 {
    grid-template-columns: 1fr;
  }
  
  .avatar_4ed3,
  .tabs_west_a95c,
  .feature-rough-47ff {
    flex-direction: column;
    width: 100%;
  }
  
  .highlight_47d3,
  .pagination-78db,
  .avatar_4ed3 .button-ca11,
  .tabs_west_a95c .button-ca11 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hidden-2788 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-tiny-91e1 {
    font-size: 1.375rem;
  }
  
  .under-b41f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .form-0da1,
  .stone-f021,
  .surface_1f6e,
  .grid_7b7b,
  .preview_black_3fe5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hot-b5bd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .sort-3b1c {
    gap: var(--space-xs);
  }
  
  .text_pro_89ed {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .notification-dirty-cc36 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .center_4994 {
    width: 150px;
    height: 150px;
  }
  
  .hero_cb3a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .detail-0cb8,
  .list_57c7,
  .avatar_4ed3,
  .paper_d12d,
  .current-8a5a,
  .sort_6e17,
  .card-9f33 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .picture_ee77 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9a59 */
.ghost-box-a6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
