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

.banner-plasma-7b14:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.badge-soft-5bb5):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. */
.badge-soft-5bb5,
header,
.disabled_abe9,
.rough-41af,
.stone-4966,
.filter_6952,
.active_plasma_9026,
.easy_9b9e,
.badge_pro_f625 {
  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
   ============================================ */
.badge-soft-5bb5 {
  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);
}

.alert-action-92fe {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.badge-soft-5bb5.over-9d63 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.hover-089b {
  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;
}

.icon_8f21 {
  flex: 1;
}

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

.glass-775b {
  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);
}

.glass-775b:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.glass-775b.cool_e805 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.avatar-5289 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.button-mini-21a0 {
  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;
}

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

.button-mini-21a0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.text_8114[aria-expanded="true"] .avatar-021b:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .icon_8f21 {
    display: none;
  }
  
  .text_8114 {
    display: flex;
  }
  
  .hover-089b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .button-mini-21a0,
  .list_wood_2ab6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .avatar-5289 {
    position: relative;
  }
  
  .menu_red_5f80 {
    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;
  }
  
  .center_32be[aria-expanded="true"] + .menu_red_5f80 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .top_b8de {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .focus-4f17 {
    gap: 8px;
  }
  
  .button-mini-21a0 {
    display: none;
  }
  
  .list_wood_2ab6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hero_f56e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.content-in-0bab {
  display: flex;
  align-items: center;
  gap: 6px;
}

.content-in-0bab svg {
  flex-shrink: 0;
}

.content-in-0bab a {
  color: var(--color-primary);
  text-decoration: none;
}

.content-in-0bab a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.main-5d64 a {
  color: var(--color-primary);
  text-decoration: none;
}

.main-5d64 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.current-239f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-239f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.header-e3dd {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .south_37f9 {
    grid-template-columns: 1fr;
  }
  
  .detail_cc8d {
    font-size: 1.75rem;
  }
  
  .banner_hovered_6e1e {
    order: -1;
    max-width: 100%;
  }
  
  .header-e3dd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail_cc8d {
    font-size: 1.5rem;
  }
  
  .header-707f {
    font-size: 1rem;
  }
  
  .main-5d64 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .header-e3dd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.media-outer-8b87 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.grid-large-d258 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.outline-fast-0b51:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-07f6 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed_98da 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) {
  .banner_3623 {
    grid-template-columns: 1fr;
  }
  
  .hard_21fd {
    font-size: 1.75rem;
  }
  
  .focus_iron_b56e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hard_21fd {
    font-size: 1.5rem;
  }
  
  .focus_iron_b56e h3 {
    font-size: 1.375rem;
  }
  
  .focus_iron_b56e h4 {
    font-size: 1.125rem;
  }
}

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

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

.tall-5093 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.lite-2df7 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.pressed_76b4 {
  flex-shrink: 0;
}

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

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

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

.highlight_0006,
.table_2feb,
.detail-current-5698 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight_0006 thead,
.table_2feb thead {
  background: var(--color-primary);
  color: white;
}

.highlight_0006 th,
.highlight_0006 td,
.table_2feb th,
.table_2feb td,
.detail-current-5698 th,
.detail-current-5698 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .highlight_0006 th,
  .highlight_0006 td,
  .table_2feb th,
  .table_2feb td,
  .detail-current-5698 th,
  .detail-current-5698 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .highlight_0006,
  .table_2feb,
  .detail-current-5698 {
    min-width: 600px;
  }
}

.highlight_0006 th,
.table_2feb th,
.detail-current-5698 th {
  font-weight: 600;
}

.highlight_0006 tbody tr:hover,
.table_2feb tbody tr:hover,
.detail-current-5698 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.layout-4a64 h4 {
  color: white;
}

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

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

.sidebar-5018:last-child {
  border-bottom: none;
}

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

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

.thumbnail-7b09 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.gallery-slow-fcd9:hover {
  text-decoration: underline;
}

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

.active-fluid-4d8b {
  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);
}

.active-fluid-4d8b span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.background-hard-dad4 {
  font-weight: 600;
  color: white;
}

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

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

.south_0c50 {
  color: #4caf50;
}

.background-left-69ee {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.list-north-f8eb {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .secondary-new-3b9e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.summary_smooth_8c57 .header-f694 {
  width: 100%;
  background: white;
}

.container-lite-ca0d .header-f694 {
  color: #667eea;
}

.feature-636d .header-f694 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.frame-hot-287f {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.message-small-e910 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .slow_e314 {
    padding: var(--space-md);
  }
  
  .message-small-e910 {
    padding: var(--space-md);
  }
  
  .pressed_dc45 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.footer-cool-ef71 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.right_bd95,
.dim-1486,
.footer-brown-a467,
.pattern_bottom_6c21 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.easy-4a5b:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.media-static-e0cd {
  border-color: var(--color-warning);
}

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

.plasma_3ef7 .main_6880 {
  background: #e8f5e9;
  color: var(--color-success);
}

.media-static-e0cd .main_6880 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-683d {
  margin-top: var(--space-xxl);
}

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

.slow_431f {
  text-align: center;
}

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

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

.nav_48f3 .background-hard-dad4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.media-upper-f9ae {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.banner-2f6d {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.tooltip-plasma-bfed {
  text-align: right;
}

.tooltip-plasma-bfed .overlay-1507 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.under-0550 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.backdrop-4bf3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_f169 ul,
.widget_add9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.footer-84e0 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.banner-tiny-483f {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-soft-a844 .photo_8aaf {
  color: #4caf50;
  font-size: 0.875rem;
}

.background-paper-997c {
  list-style: none;
  padding: 0;
}

.background-paper-997c li {
  margin-bottom: var(--space-xs);
}

.background-paper-997c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.background-paper-997c a:hover {
  color: white;
}

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

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

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

.cool_8c5f a:hover {
  color: white;
}

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

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

.main-wood-b223 a {
  color: #4caf50;
  text-decoration: none;
}

.green-6c85 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .status_a6b0 {
    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;
  }
  
  .detail_cc8d {
    font-size: 2rem;
  }
  
  .hard_21fd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .south_37f9,
  .banner_3623 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tag-paper-0640,
  .border_3d3a,
  .secondary-new-3b9e,
  .sidebar_d524,
  .status_inner_2d7e,
  .widget-f206,
  .under-1f81,
  .breadcrumb_7b7b {
    grid-template-columns: 1fr;
  }
  
  .badge_704b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .active_plasma_9026 {
    padding: var(--space-lg) 0;
  }
  
  .texture_brown_13d3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .texture_brown_13d3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .header-f694 {
    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;
  }
  
  .badge_704b {
    grid-template-columns: 1fr;
  }
  
  .action_3fe2,
  .avatar_active_5c8e,
  .clean_4bf1 {
    flex-direction: column;
    width: 100%;
  }
  
  .media-outer-8b87,
  .grid-large-d258,
  .action_3fe2 .header-f694,
  .avatar_active_5c8e .header-f694 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail_cc8d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hard_21fd {
    font-size: 1.375rem;
  }
  
  .large_2529 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outline-fast-0b51,
  .highlight_motion_f18d,
  .narrow_4888,
  .wrapper-new-5527,
  .tertiary_focused_5641 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .menu_copper_46af {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .section_in_8ad7 {
    gap: var(--space-xs);
  }
  
  .content-in-0bab {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .active-fluid-4d8b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .nav_48f3 {
    width: 150px;
    height: 150px;
  }
  
  .gradient_b27f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .badge-soft-5bb5,
  .disabled_abe9,
  .action_3fe2,
  .slider_003b,
  .easy_9b9e,
  .badge_pro_f625,
  .text_8114 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .active_plasma_9026 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a642 */
.phantom-card-f4 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
