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

.table_soft_f348:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.element-blue-5901):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. */
.element-blue-5901,
header,
.stale-afea,
.motion_2d33,
.tertiary-action-3ff4,
.hero_cold_1895,
.slider_81d8,
.banner-next-961f,
.info_bright_a0f7 {
  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
   ============================================ */
.element-blue-5901 {
  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);
}

.tertiary-active-2597 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.element-blue-5901.banner_99c0 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.title-7ab5 img {
  height: 36px;
  width: auto;
  display: block;
}

.list-3c7a {
  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;
}

.motion_3f44 {
  flex: 1;
}

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

.notice-west-b063 {
  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);
}

.notice-west-b063:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.notice-west-b063.hot-a26e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.hovered-94e6 {
  position: relative;
}

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

.sort-huge-a0a9 svg {
  transition: transform 0.2s ease;
}

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

.fast-06c4 {
  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;
}

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

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

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

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

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

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

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

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

.section_711f svg {
  flex-shrink: 0;
}

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

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

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

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

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

.thumbnail-wood-6acd {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.item_ad68[aria-expanded="true"] .thumbnail-wood-6acd:nth-child(2) {
  opacity: 0;
}

.item_ad68[aria-expanded="true"] .thumbnail-wood-6acd:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .motion_3f44::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .motion_3f44.title-clean-2df0 {
    display: block;
    right: 0;
  }
  
  .border_820f {
    flex-direction: column;
    gap: 0;
  }
  
  .notice-west-b063 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .motion_3f44::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;
  }
  
  .motion_3f44.title-clean-2df0::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .motion_3f44 {
    display: none;
  }
  
  .item_ad68 {
    display: flex;
  }
  
  .list-3c7a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .section_711f,
  .white_0753 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hovered-94e6 {
    position: relative;
  }
  
  .fast-06c4 {
    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;
  }
  
  .sort-huge-a0a9[aria-expanded="true"] + .fast-06c4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .element-left-302d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .light_f6af {
    gap: 8px;
  }
  
  .section_711f {
    display: none;
  }
  
  .white_0753 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .title-7ab5 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.overlay_8565 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.rough-8396 a:hover {
  text-decoration: underline;
}

.east-7cff {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.lite-5c16 {
  display: flex;
  gap: var(--space-sm);
}

.container-pressed-bb4b {
  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;
}

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

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

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

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

.hero-bottom-3030 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .full-b42c {
    grid-template-columns: 1fr;
  }
  
  .pagination-hovered-f598 {
    font-size: 1.75rem;
  }
  
  .hero-bottom-3030 {
    order: -1;
    max-width: 100%;
  }
  
  .primary_simple_5667 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pagination-hovered-f598 {
    font-size: 1.5rem;
  }
  
  .logo_purple_71ee {
    font-size: 1rem;
  }
  
  .rough-8396 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .primary_simple_5667 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.disabled-88c4 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.notice-bright-95bf {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.texture-liquid-6b4c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.thick-e8f8 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;
}

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

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

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

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

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

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

.badge-pressed-7dc4 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-ab8f 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) {
  .tiny-87af {
    grid-template-columns: 1fr;
  }
  
  .block_cold_5eb3 {
    font-size: 1.75rem;
  }
  
  .up-fd76 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.alert-down-06b3 {
  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;
}

.mask-rough-1da3 {
  flex-shrink: 0;
}

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

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

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

.sidebar_upper_4627,
.overlay_e7fc,
.pattern-focused-cf13 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sidebar_upper_4627 thead,
.overlay_e7fc thead {
  background: var(--color-primary);
  color: white;
}

.sidebar_upper_4627 th,
.sidebar_upper_4627 td,
.overlay_e7fc th,
.overlay_e7fc td,
.pattern-focused-cf13 th,
.pattern-focused-cf13 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sidebar_upper_4627 th,
  .sidebar_upper_4627 td,
  .overlay_e7fc th,
  .overlay_e7fc td,
  .pattern-focused-cf13 th,
  .pattern-focused-cf13 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .sidebar_upper_4627,
  .overlay_e7fc,
  .pattern-focused-cf13 {
    min-width: 600px;
  }
}

.sidebar_upper_4627 th,
.overlay_e7fc th,
.pattern-focused-cf13 th {
  font-weight: 600;
}

.sidebar_upper_4627 tbody tr:hover,
.overlay_e7fc tbody tr:hover,
.pattern-focused-cf13 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.message_46c3 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.tertiary-pro-ce6a {
  font-weight: 600;
  color: white;
}

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

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

.item_087b {
  color: #4caf50;
}

.texture-f6b2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.texture-focused-79b5 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-green-628f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.pagination-green-628f ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.pagination-green-628f li {
  padding: var(--space-xs) 0;
  color: white;
}

.pagination-green-628f .slider-bottom-4367 {
  width: 100%;
  background: white;
}

.cold-f30e .slider-bottom-4367 {
  color: #667eea;
}

.gold_6f5f .slider-bottom-4367 {
  color: #f5576c;
}

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

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

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

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

.container-62cc h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .container-62cc {
    padding: var(--space-md);
  }
  
  .thumbnail_huge_cfa2 {
    padding: var(--space-md);
  }
  
  .shadow-medium-0e74 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.shadow-medium-0e74 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.shade-88c5,
.picture-dbf3,
.old-a408,
.logo_9a5b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-large-d4c3 {
  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);
}

.soft_b1aa .tag-large-d4c3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notice_light_8812 .tag-large-d4c3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.out-3c22 {
  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);
}

.alert_46df {
  text-align: center;
}

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

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

.aside_hovered_7add .tertiary-pro-ce6a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused-3a3b {
  border: 2px solid #4caf50;
}

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

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

.focus-2ec1 {
  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;
}

.notice-plasma-556e {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.accordion-769e {
  text-align: right;
}

.accordion-769e .action_165d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.dirty-b00f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-narrow-4b44 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.input-be42[aria-expanded="true"] .surface-narrow-4b44 {
  transform: rotate(180deg);
}

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

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

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

.icon-53fe li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.texture-18b3,
.slider-center-0cf8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.texture-18b3 h4,
.slider-center-0cf8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.texture-18b3 ul,
.slider-center-0cf8 ul {
  list-style: none;
  padding: 0;
}

.texture-18b3 li,
.slider-center-0cf8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.clean-8ab0 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.hover_gold_f88d {
  font-style: italic;
}

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

.focused-89e8 {
  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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .outline-blue-40ad {
    grid-template-columns: 1fr;
  }
}

.highlight-lite-bdf2 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.prev-efe9 .lite-5c16 {
  color: #4caf50;
  font-size: 0.875rem;
}

.picture-in-cd04 {
  list-style: none;
  padding: 0;
}

.picture-in-cd04 li {
  margin-bottom: var(--space-xs);
}

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

.picture-in-cd04 a:hover {
  color: white;
}

.surface-thick-f91e {
  list-style: none;
  padding: 0;
}

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

.surface-thick-f91e a {
  color: #b0b0b0;
  text-decoration: none;
}

.surface-thick-f91e a:hover {
  color: white;
}

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

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

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

.badge-728b {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.shade-b7f4:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .item_d4a9 {
    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;
  }
  
  .pagination-hovered-f598 {
    font-size: 2rem;
  }
  
  .block_cold_5eb3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .full-b42c,
  .tiny-87af {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .active-dc8d,
  .wrapper-clean-10fa,
  .video_blue_38e6,
  .north_2312,
  .element_e44e,
  .hero-882c,
  .outline-blue-40ad,
  .slider_e525 {
    grid-template-columns: 1fr;
  }
  
  .dropdown_selected_bd29 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slider_81d8 {
    padding: var(--space-lg) 0;
  }
  
  .thick-e8f8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .thick-e8f8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .slider-bottom-4367 {
    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;
  }
  
  .dropdown_selected_bd29 {
    grid-template-columns: 1fr;
  }
  
  .avatar_current_5497,
  .copper_f313,
  .plasma_998a {
    flex-direction: column;
    width: 100%;
  }
  
  .disabled-88c4,
  .notice-bright-95bf,
  .avatar_current_5497 .slider-bottom-4367,
  .copper_f313 .slider-bottom-4367 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pagination-hovered-f598 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .block_cold_5eb3 {
    font-size: 1.375rem;
  }
  
  .info_last_18a0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .filter_yellow_c49d,
  .filter-5f62,
  .yellow_83df,
  .title-d230,
  .active_pink_7d1b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .layout-current-c685 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .advanced-76d0 {
    gap: var(--space-xs);
  }
  
  .overlay_8565 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .white_2678 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .aside_hovered_7add {
    width: 150px;
    height: 150px;
  }
  
  .chip-b914 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .element-blue-5901,
  .stale-afea,
  .avatar_current_5497,
  .focused-89e8,
  .banner-next-961f,
  .info_bright_a0f7,
  .item_ad68 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slider_81d8 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: bbbb */
.ghost-box-s2 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
