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

.filter_70e6:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.focus_02c2):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. */
.focus_02c2,
header,
.backdrop-paper-c803,
.last-bdca,
.article-advanced-840c,
.overlay_273f,
.border_blue_f889,
.search_44f4,
.fixed_be6c {
  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
   ============================================ */
.focus_02c2 {
  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);
}

.over-04b5 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.focus_02c2.easy-27e2 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.hovered-1ed8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.slider_044b {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.label-65f1 {
  position: relative;
}

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

.sort-warm-2e50 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.wide-5a43 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .slider_044b {
    display: none;
  }
  
  .form_2fa9 {
    display: flex;
  }
  
  .new_dc84 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .wide-5a43,
  .light_7e69 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .label-65f1 {
    position: relative;
  }
  
  .input-c921 {
    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-warm-2e50[aria-expanded="true"] + .input-c921 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .cold-c044 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .video_north_4821 {
    gap: 8px;
  }
  
  .wide-5a43 {
    display: none;
  }
  
  .light_7e69 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hovered-1ed8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.input-selected-3b4b {
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-selected-3b4b svg {
  flex-shrink: 0;
}

.input-selected-3b4b a {
  color: var(--color-primary);
  text-decoration: none;
}

.input-selected-3b4b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.wrapper-rough-a71a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.background-0ef3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.popup-red-f0a3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pattern-3406 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.nav-yellow-50fc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .dropdown_silver_5236 {
    grid-template-columns: 1fr;
  }
  
  .tertiary-red-bb72 {
    font-size: 1.75rem;
  }
  
  .popup-red-f0a3 {
    order: -1;
    max-width: 100%;
  }
  
  .pattern-3406 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tertiary-red-bb72 {
    font-size: 1.5rem;
  }
  
  .logo_white_da2c {
    font-size: 1rem;
  }
  
  .gallery_e77c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pattern-3406 {
    max-width: 250px;
  }
}

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

.column-warm-1cdb {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.shade-cold-b3b6 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.breadcrumb-feb6 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.description-73a3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.description-73a3 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);
}

.description-73a3 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.large-91d9 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.large-91d9 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) {
  .picture-middle-38b7 {
    grid-template-columns: 1fr;
  }
  
  .notice_dim_e377 {
    font-size: 1.75rem;
  }
  
  .left_c243 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.progress-thick-8fa1 {
  flex-shrink: 0;
}

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

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

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

.button-thick-eaf0,
.sidebar-inner-2d1a,
.tabs-orange-3306 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.button-thick-eaf0 thead,
.sidebar-inner-2d1a thead {
  background: var(--color-primary);
  color: white;
}

.button-thick-eaf0 th,
.button-thick-eaf0 td,
.sidebar-inner-2d1a th,
.sidebar-inner-2d1a td,
.tabs-orange-3306 th,
.tabs-orange-3306 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .button-thick-eaf0 th,
  .button-thick-eaf0 td,
  .sidebar-inner-2d1a th,
  .sidebar-inner-2d1a td,
  .tabs-orange-3306 th,
  .tabs-orange-3306 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .button-thick-eaf0,
  .sidebar-inner-2d1a,
  .tabs-orange-3306 {
    min-width: 600px;
  }
}

.button-thick-eaf0 th,
.sidebar-inner-2d1a th,
.tabs-orange-3306 th {
  font-weight: 600;
}

.button-thick-eaf0 tbody tr:hover,
.sidebar-inner-2d1a tbody tr:hover,
.tabs-orange-3306 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fluid_d061 h4 {
  color: white;
}

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

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

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

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

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

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

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

.last-c697:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.carousel_a71f {
  color: #4caf50;
}

.avatar_f887 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer_small_dc23 .hot_be30 {
  width: 100%;
  background: white;
}

.yellow-28fa .hot_be30 {
  color: #667eea;
}

.panel-cabf .hot_be30 {
  color: #f5576c;
}

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

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

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

.overlay-4e1a {
  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);
}

.tertiary-active-2ded h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.link-smooth-34f2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .tertiary-active-2ded {
    padding: var(--space-md);
  }
  
  .link-smooth-34f2 {
    padding: var(--space-md);
  }
  
  .surface-2e2e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.red_d32f,
.tag_paper_c7ff,
.medium-b530,
.narrow_5194 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.element-0cd6 h4 {
  margin-bottom: var(--space-md);
}

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

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

.sort-west-d231 {
  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-west-d231 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.frame-fdc0 .texture-c1cd {
  background: #e8f5e9;
  color: var(--color-success);
}

.paragraph_east_b649 .texture-c1cd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.overlay-mini-0c29 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.tooltip-motion-c048 {
  margin-top: var(--space-xxl);
}

.menu-hot-50e0 {
  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);
}

.texture_pressed_0bc1 {
  text-align: center;
}

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

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

.search-f4cc .module_6b7f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .menu-hot-50e0 {
    grid-template-columns: 1fr;
  }
}

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

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

.top-2acc {
  margin-bottom: var(--space-xl);
}

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

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

.table-easy-a03a {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.dropdown-cold-ac9a {
  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;
}

.shade-lower-8fcd {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.accordion_medium_6255 {
  text-align: right;
}

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

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

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

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

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

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

.hidden-hovered-f4e3 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

.picture-42a2 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.filter_d287[aria-expanded="true"] .list-daa0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.status_down_cc84,
.down-3e91 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.status_down_cc84 h4,
.down-3e91 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.status_down_cc84 ul,
.down-3e91 ul {
  list-style: none;
  padding: 0;
}

.status_down_cc84 li,
.down-3e91 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.south_e413 {
  font-style: italic;
}

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

.fresh-6d5d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-a178 .carousel_light_237a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.photo_e764 a:hover {
  color: white;
}

.nav-edba {
  list-style: none;
  padding: 0;
}

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

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

.nav-edba a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .wide-e98a {
    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;
  }
  
  .tertiary-red-bb72 {
    font-size: 2rem;
  }
  
  .notice_dim_e377 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dropdown_silver_5236,
  .picture-middle-38b7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .main_63b6,
  .sort-west-d231,
  .item_00bc,
  .new-645f,
  .photo-97fa,
  .section-6acc,
  .table_6232,
  .banner_8de0 {
    grid-template-columns: 1fr;
  }
  
  .menu-dirty-eb45 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .border_blue_f889 {
    padding: var(--space-lg) 0;
  }
  
  .description-73a3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .description-73a3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hot_be30 {
    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;
  }
  
  .menu-dirty-eb45 {
    grid-template-columns: 1fr;
  }
  
  .background-0ef3,
  .south_6a27,
  .solid_1c9d {
    flex-direction: column;
    width: 100%;
  }
  
  .shade-cold-b3b6,
  .breadcrumb-feb6,
  .background-0ef3 .hot_be30,
  .south_6a27 .hot_be30 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tertiary-red-bb72 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notice_dim_e377 {
    font-size: 1.375rem;
  }
  
  .component-73e5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .soft-42b0,
  .widget-3c29,
  .pro_fe71,
  .gas-cf0c,
  .breadcrumb_top_00ab {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dark_5903 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .texture-8bdc {
    gap: var(--space-xs);
  }
  
  .input-selected-3b4b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .paragraph_17cd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .search-f4cc {
    width: 150px;
    height: 150px;
  }
  
  .easy-99d6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focus_02c2,
  .backdrop-paper-c803,
  .background-0ef3,
  .fresh-6d5d,
  .search_44f4,
  .fixed_be6c,
  .form_2fa9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .border_blue_f889 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 1c3a */
.promo-block-o1 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
