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

.slider-3ade:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.outline_8efd):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. */
.outline_8efd,
header,
.narrow-3180,
.thumbnail-plasma-460d,
.shade-hot-d99e,
.accent_thick_2737,
.image_f338,
.picture-warm-f6f6,
.hard-04f4 {
  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
   ============================================ */
.outline_8efd {
  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);
}

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

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

/* Scrolled state */
.outline_8efd.article-smooth-d0a0 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.hover-47d3 img {
  height: 36px;
  width: auto;
  display: block;
}

.main-orange-0c38 {
  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;
}

.new_ce1c {
  flex: 1;
}

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

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

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

.label_8f78.progress-199e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.tag-inner-0b41 {
  position: relative;
}

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

.out-6773 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.stone_4779 svg {
  flex-shrink: 0;
}

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

.fixed-4c7e: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);
}

.fixed-4c7e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .new_ce1c {
    display: none;
  }
  
  .simple_6bbb {
    display: flex;
  }
  
  .main-orange-0c38 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .stone_4779,
  .fixed-4c7e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tag-inner-0b41 {
    position: relative;
  }
  
  .border_b0e3 {
    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;
  }
  
  .out-6773[aria-expanded="true"] + .border_b0e3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .media_bottom_d8b7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery_fast_164b {
    gap: 8px;
  }
  
  .stone_4779 {
    display: none;
  }
  
  .fixed-4c7e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hover-47d3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.block_e020 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.smooth-a1b1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.row-hard-dbf9 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .picture_clean_3b2a {
    grid-template-columns: 1fr;
  }
  
  .west-149f {
    font-size: 1.75rem;
  }
  
  .clean-f4b4 {
    order: -1;
    max-width: 100%;
  }
  
  .module_17bd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .west-149f {
    font-size: 1.5rem;
  }
  
  .photo_16ab {
    font-size: 1rem;
  }
  
  .smooth-a1b1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .module_17bd {
    max-width: 250px;
  }
}

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

.motion-25f1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.popup-6a9c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.green-7b4e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.first-9b2f {
  list-style: none;
  counter-reset: toc-counter;
}

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

.first-9b2f 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);
}

.first-9b2f 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;
}

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

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

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

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

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

.logo-mini-be14 {
  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);
}

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

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

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

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

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

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

.focus_503a 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_503a h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

.west_cd39 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) {
  .large-0455 {
    grid-template-columns: 1fr;
  }
  
  .logo-mini-be14 {
    font-size: 1.75rem;
  }
  
  .focus_503a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-mini-be14 {
    font-size: 1.5rem;
  }
  
  .focus_503a h3 {
    font-size: 1.375rem;
  }
  
  .focus_503a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.focused-ab13 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.component_be76 {
  flex-shrink: 0;
}

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

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

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

.list_dbca,
.white-b59a,
.south_3cbb {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_dbca thead,
.white-b59a thead {
  background: var(--color-primary);
  color: white;
}

.list_dbca th,
.list_dbca td,
.white-b59a th,
.white-b59a td,
.south_3cbb th,
.south_3cbb td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_dbca th,
  .list_dbca td,
  .white-b59a th,
  .white-b59a td,
  .south_3cbb th,
  .south_3cbb td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_dbca,
  .white-b59a,
  .south_3cbb {
    min-width: 600px;
  }
}

.list_dbca th,
.white-b59a th,
.south_3cbb th {
  font-weight: 600;
}

.list_dbca tbody tr:hover,
.white-b59a tbody tr:hover,
.south_3cbb tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.list-3a96 h4 {
  color: white;
}

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

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

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

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

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

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

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

.east-c22e:hover {
  text-decoration: underline;
}

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

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

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

.button-8fce {
  font-weight: 600;
  color: white;
}

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

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

.banner_cool_cdf5 {
  color: #4caf50;
}

.dropdown_cool_c72a {
  color: #ff9800;
}

.cold-5e65 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.title-blue-077f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip_23f2 .orange-9c5d {
  width: 100%;
  background: white;
}

.table_9dc2 .orange-9c5d {
  color: #667eea;
}

.carousel_1427 .orange-9c5d {
  color: #f5576c;
}

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

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

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

.under-968c {
  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);
}

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

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

@media (max-width: 768px) {
  .new_bfdc {
    padding: var(--space-md);
  }
  
  .tiny_0c0b {
    padding: var(--space-md);
  }
  
  .short-2ab1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tag_pink_2aa5,
.button-5fc9,
.grid-tall-fbfe,
.soft-8d36 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.row-tall-6be3 {
  border-color: var(--color-success);
}

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

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

.row-tall-6be3 .logo-c0cb {
  background: #e8f5e9;
  color: var(--color-success);
}

.article_motion_5b2f .logo-c0cb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out-176d {
  text-align: center;
}

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

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

.left_14e5 .button-8fce {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.gallery-8c6b p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.content-thick-dbc4 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.tag-solid-fa42 {
  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;
}

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

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

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

.accordion-14e8 {
  text-align: right;
}

.accordion-14e8 .down-9e04 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.orange-6ab9 {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.surface-gold-546a {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.new-5775[aria-expanded="true"] .backdrop_fluid_7ec8 {
  transform: rotate(180deg);
}

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

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

.slider-last-358b ul,
.slider-last-358b ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.slider-last-358b li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .surface-small-8da5 {
    grid-template-columns: 1fr;
  }
}

.alert-motion-afe5,
.red_3b7e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.alert-motion-afe5 h4,
.red_3b7e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.alert-motion-afe5 ul,
.red_3b7e ul {
  list-style: none;
  padding: 0;
}

.alert-motion-afe5 li,
.red_3b7e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.grid-motion-dcec ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.info_silver_fda0 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.sort-motion-052f {
  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);
}

.sort-motion-052f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.sort-motion-052f p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.status-tiny-4847 .grid_397c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.warm_4fa2 a:hover {
  color: white;
}

.info-over-7c18 {
  list-style: none;
  padding: 0;
}

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

.info-over-7c18 a {
  color: #b0b0b0;
  text-decoration: none;
}

.info-over-7c18 a:hover {
  color: white;
}

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

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

.item-mini-69fe a {
  color: #4caf50;
  text-decoration: none;
}

.breadcrumb-fresh-f6fe {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .description_cool_6eb1 {
    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;
  }
  
  .west-149f {
    font-size: 2rem;
  }
  
  .logo-mini-be14 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .picture_clean_3b2a,
  .large-0455 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .summary-simple-5260,
  .sort_c1eb,
  .pagination_tall_fd98,
  .panel_tall_d57b,
  .surface-small-8da5,
  .tabs-3ec3,
  .panel-down-7804,
  .container_614f {
    grid-template-columns: 1fr;
  }
  
  .avatar-b57d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .image_f338 {
    padding: var(--space-lg) 0;
  }
  
  .first-9b2f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .first-9b2f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .orange-9c5d {
    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;
  }
  
  .avatar-b57d {
    grid-template-columns: 1fr;
  }
  
  .panel_cool_db22,
  .up_ce26,
  .table_7545 {
    flex-direction: column;
    width: 100%;
  }
  
  .tabs_smooth_0560,
  .popup-6a9c,
  .panel_cool_db22 .orange-9c5d,
  .up_ce26 .orange-9c5d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .west-149f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo-mini-be14 {
    font-size: 1.375rem;
  }
  
  .search-stone-5fa4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .green-7b4e,
  .media_orange_07b3,
  .border_brown_da47,
  .stale_85d2,
  .tooltip_large_fe0b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .down_c501 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .container_be88 {
    gap: var(--space-xs);
  }
  
  .block_e020 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .outline_center_0020 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .left_14e5 {
    width: 150px;
    height: 150px;
  }
  
  .current-95a6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outline_8efd,
  .narrow-3180,
  .panel_cool_db22,
  .module-bf01,
  .picture-warm-f6f6,
  .hard-04f4,
  .simple_6bbb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .image_f338 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: f544 */
.phantom-card-t5 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.1;
}
