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

.gallery_pink_8ba4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.clean-379c):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.clean-379c,
header,
.thumbnail_11ff,
.panel_bright_211d,
.mini_577b,
.module-first-754b,
.hover_6733,
.column_bf18,
.sort-gold-7939 {
  max-width: none;
}

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

.element-0d74 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.clean-379c.carousel_3635 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.list-stone-1a7e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.tabs-3e44 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.bronze-52ef {
  flex: 1;
}

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

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

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

.medium_fe17.fn-active-682e {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-2859 svg {
  flex-shrink: 0;
}

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

.accent-focused-5156: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);
}

.accent-focused-5156 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .bronze-52ef::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .bronze-52ef.slider_silver_df5c {
    display: block;
    right: 0;
  }
  
  .popup-steel-8e83 {
    flex-direction: column;
    gap: 0;
  }
  
  .medium_fe17 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .bronze-52ef::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;
  }
  
  .bronze-52ef.slider_silver_df5c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .bronze-52ef {
    display: none;
  }
  
  .filter_thick_afb8 {
    display: flex;
  }
  
  .info_soft_6fb6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .wrapper-2859,
  .accent-focused-5156 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .notification_over_a786 {
    position: relative;
  }
  
  .box_east_b0ff {
    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;
  }
  
  .iron_2ecd[aria-expanded="true"] + .box_east_b0ff {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .solid-22cf {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .modal-small-ff4f {
    gap: 8px;
  }
  
  .wrapper-2859 {
    display: none;
  }
  
  .accent-focused-5156 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tabs-3e44 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.card-lite-71bc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-lite-71bc svg {
  flex-shrink: 0;
}

.card-lite-71bc a {
  color: var(--color-primary);
  text-decoration: none;
}

.card-lite-71bc a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.input-f56b a:hover {
  text-decoration: underline;
}

.column-3c47 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.row_5def {
  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-up-647e {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

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

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

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

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

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

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

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

.summary-white-8beb {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .carousel-755c {
    grid-template-columns: 1fr;
  }
  
  .next_2b65 {
    font-size: 1.75rem;
  }
  
  .fresh_2c47 {
    order: -1;
    max-width: 100%;
  }
  
  .cool_8af4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .next_2b65 {
    font-size: 1.5rem;
  }
  
  .nav-ab51 {
    font-size: 1rem;
  }
  
  .input-f56b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .cool_8af4 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold-93b7 {
  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);
}

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

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

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

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

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

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

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

.focus-5247 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

.carousel_out_1a0f 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) {
  .hover-15fc {
    grid-template-columns: 1fr;
  }
  
  .pagination_gas_a088 {
    font-size: 1.75rem;
  }
  
  .focus-5247 {
    max-width: 100%;
  }
}

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

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

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

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

.surface-dark-7bc2 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.fluid_fb72 {
  flex-shrink: 0;
}

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

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

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

.middle-4b8f,
.icon-da5b,
.under_b59b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.middle-4b8f thead,
.icon-da5b thead {
  background: var(--color-primary);
  color: white;
}

.middle-4b8f th,
.middle-4b8f td,
.icon-da5b th,
.icon-da5b td,
.under_b59b th,
.under_b59b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .middle-4b8f th,
  .middle-4b8f td,
  .icon-da5b th,
  .icon-da5b td,
  .under_b59b th,
  .under_b59b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .middle-4b8f,
  .icon-da5b,
  .under_b59b {
    min-width: 600px;
  }
}

.middle-4b8f th,
.icon-da5b th,
.under_b59b th {
  font-weight: 600;
}

.middle-4b8f tbody tr:hover,
.icon-da5b tbody tr:hover,
.under_b59b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mask_4ce3 h4 {
  color: white;
}

.disabled-medium-73aa {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper_f17a {
  color: #4caf50;
}

.grid_short_07b6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.preview-slow-a7ab {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.hover-1dc0 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.pagination-west-b4fc .message-6932 {
  width: 100%;
  background: white;
}

.widget-a8bd .message-6932 {
  color: #667eea;
}

.glass-d171 .message-6932 {
  color: #f5576c;
}

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

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

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

.fixed-54c2 {
  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);
}

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

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

@media (max-width: 768px) {
  .top_5e99 {
    padding: var(--space-md);
  }
  
  .avatar_e2bb {
    padding: var(--space-md);
  }
  
  .article_e85b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tall-62a4,
.image-active-4d4a,
.large_dfb0,
.description-fc5f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.shade-warm-6e02 {
  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) {
  .shade-warm-6e02 {
    font-size: 0.625rem;
  }
}

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

.list-clean-d098:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.preview-right-1b51 {
  border-color: var(--color-success);
}

.title-dynamic-19f4 {
  border-color: var(--color-warning);
}

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

.preview-right-1b51 .status_5226 {
  background: #e8f5e9;
  color: var(--color-success);
}

.title-dynamic-19f4 .status_5226 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-b812 {
  text-align: center;
}

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

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

.text-dcc9 .row_easy_6171 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.caption-clean-12d1 {
  margin-bottom: var(--space-xl);
}

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

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

.east-304c {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.hero-narrow-b05e {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.sort_59dc {
  text-align: right;
}

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

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

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

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

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

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

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

.hidden-7959 {
  background: #e3f2fd;
  color: #1565c0;
}

.summary-9f4d {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-38d3 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.motion_661e,
.detail-eaeb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.motion_661e h4,
.detail-eaeb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.motion_661e ul,
.detail-eaeb ul {
  list-style: none;
  padding: 0;
}

.motion_661e li,
.detail-eaeb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .text-small-880e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.tertiary_complex_9a2a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-aa72 .tiny_9611 {
  color: #4caf50;
  font-size: 0.875rem;
}

.sidebar-active-4b72 {
  list-style: none;
  padding: 0;
}

.sidebar-active-4b72 li {
  margin-bottom: var(--space-xs);
}

.sidebar-active-4b72 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.sidebar-active-4b72 a:hover {
  color: white;
}

.highlight-selected-3ebf {
  list-style: none;
  padding: 0;
}

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

.highlight-selected-3ebf a {
  color: #b0b0b0;
  text-decoration: none;
}

.highlight-selected-3ebf a:hover {
  color: white;
}

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

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

.gradient-64ad a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.accordion-e71d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .easy_689e {
    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;
  }
  
  .next_2b65 {
    font-size: 2rem;
  }
  
  .pagination_gas_a088 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .carousel-755c,
  .hover-15fc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .row-copper-f4c8,
  .tabs-narrow-309e,
  .bronze_15c3,
  .border_79ae,
  .paragraph-b923,
  .text-small-880e,
  .copper-0e64,
  .texture-plasma-ea7a {
    grid-template-columns: 1fr;
  }
  
  .pro_5b88 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hover_6733 {
    padding: var(--space-lg) 0;
  }
  
  .short_7ad6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .short_7ad6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .message-6932 {
    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;
  }
  
  .pro_5b88 {
    grid-template-columns: 1fr;
  }
  
  .sort_d386,
  .active_cc15,
  .avatar_light_13ab {
    flex-direction: column;
    width: 100%;
  }
  
  .complex_5ef7,
  .highlight_top_3b44,
  .sort_d386 .message-6932,
  .active_cc15 .message-6932 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .next_2b65 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pagination_gas_a088 {
    font-size: 1.375rem;
  }
  
  .old_e97c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .under_df23,
  .steel_3f99,
  .info-da0b,
  .new-26ba,
  .widget-small-8c53 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .shade-warm-6e02 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .upper_7718 {
    gap: var(--space-xs);
  }
  
  .card-lite-71bc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .advanced_7cab {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .text-dcc9 {
    width: 150px;
    height: 150px;
  }
  
  .focused-6684 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .clean-379c,
  .thumbnail_11ff,
  .sort_d386,
  .stone_2078,
  .column_bf18,
  .sort-gold-7939,
  .filter_thick_afb8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hover_6733 {
    page-break-inside: avoid;
  }
}

/* css-noise: 96c9 */
.shadow-element-k5 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
