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

.text_28ee:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dropdown_ba75,
header,
.slow_1857,
.first-2548,
.tag_middle_38af,
.bottom-1a95,
.bright_7c28,
.dim_8f24,
.prev-43c3 {
  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
   ============================================ */
.dropdown_ba75 {
  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);
}

.surface-e81e {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.hover-narrow-c9f5 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.hidden-in-7d41 {
  flex: 1;
}

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

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

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

.search_gold_4690.fn-active-fe9b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.soft-4c09 {
  position: relative;
}

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

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

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

.inner-41a2 {
  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;
}

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

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

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

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

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

.menu-paper-6d04 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.alert_up_9d61 svg {
  flex-shrink: 0;
}

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

.outline-77ba: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);
}

.outline-77ba svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.blue_835f[aria-expanded="true"] .title-focused-c33c:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .hidden-in-7d41 {
    display: none;
  }
  
  .blue_835f {
    display: flex;
  }
  
  .advanced_14ed {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .alert_up_9d61,
  .outline-77ba {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .soft-4c09 {
    position: relative;
  }
  
  .inner-41a2 {
    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;
  }
  
  .avatar_f936[aria-expanded="true"] + .inner-41a2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .shade_selected_34df {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .menu-paper-6d04 {
    gap: 8px;
  }
  
  .alert_up_9d61 {
    display: none;
  }
  
  .outline-77ba {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hover-narrow-c9f5 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.media-082b {
  display: flex;
  align-items: center;
  gap: 6px;
}

.media-082b svg {
  flex-shrink: 0;
}

.media-082b a {
  color: var(--color-primary);
  text-decoration: none;
}

.media-082b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption-last-b077 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.alert-906a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-6772 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tooltip-dirty-9da1 {
    grid-template-columns: 1fr;
  }
  
  .iron-74b6 {
    font-size: 1.75rem;
  }
  
  .alert-906a {
    order: -1;
    max-width: 100%;
  }
  
  .simple-6772 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .iron-74b6 {
    font-size: 1.5rem;
  }
  
  .primary-c114 {
    font-size: 1rem;
  }
  
  .frame_2761 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .simple-6772 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.label-lite-7232 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite-4b40 {
  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);
}

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

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

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

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

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

.sidebar-new-9240 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.sidebar-new-9240 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);
}

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

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

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

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

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

.sidebar-new-9240 strong {
  font-weight: 600;
  color: var(--color-text);
}

.sidebar-new-9240 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.sidebar-new-9240 a:hover {
  color: var(--color-primary-dark);
}

.label-2ac1 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.label-2ac1 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) {
  .simple-b38e {
    grid-template-columns: 1fr;
  }
  
  .hot_81f2 {
    font-size: 1.75rem;
  }
  
  .sidebar-new-9240 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hot_81f2 {
    font-size: 1.5rem;
  }
  
  .sidebar-new-9240 h3 {
    font-size: 1.375rem;
  }
  
  .sidebar-new-9240 h4 {
    font-size: 1.125rem;
  }
}

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

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

.form-0f64 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.module_dim_bd24 {
  flex-shrink: 0;
}

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

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

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

.gallery-west-1daf,
.hot-878c,
.info-motion-fafa {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-west-1daf thead,
.hot-878c thead {
  background: var(--color-primary);
  color: white;
}

.gallery-west-1daf th,
.gallery-west-1daf td,
.hot-878c th,
.hot-878c td,
.info-motion-fafa th,
.info-motion-fafa td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gallery-west-1daf th,
  .gallery-west-1daf td,
  .hot-878c th,
  .hot-878c td,
  .info-motion-fafa th,
  .info-motion-fafa td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gallery-west-1daf,
  .hot-878c,
  .info-motion-fafa {
    min-width: 600px;
  }
}

.gallery-west-1daf th,
.hot-878c th,
.info-motion-fafa th {
  font-weight: 600;
}

.gallery-west-1daf tbody tr:hover,
.hot-878c tbody tr:hover,
.info-motion-fafa tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mask-cf62 h4 {
  color: white;
}

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

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

.shade-wide-0a1e:last-child {
  border-bottom: none;
}

.shade-wide-0a1e dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.shade-wide-0a1e dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.static-2704:hover {
  text-decoration: underline;
}

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

.hidden-old-7d84 {
  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);
}

.hidden-old-7d84 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.cold-bdec {
  list-style: none;
  padding: 0;
}

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

.secondary_2b6c {
  color: #4caf50;
}

.lite-d872 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.outer-3e1e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_b9f3 .grid_b7de {
  width: 100%;
  background: white;
}

.list-e31e .grid_b7de {
  color: #667eea;
}

.solid_bb77 .grid_b7de {
  color: #f5576c;
}

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

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

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

.next-5a3e {
  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);
}

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

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

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

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

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

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

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

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

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

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

.accordion-blue-4ad7,
.grid-ee3a,
.hard-e016,
.current-5638 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.advanced-6bfe:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.huge-904f {
  border-color: var(--color-warning);
}

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

.gallery-bb00 .modal-af09 {
  background: #e8f5e9;
  color: var(--color-success);
}

.huge-904f .modal-af09 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-5b1f {
  text-align: center;
}

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

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

.next_c05a .nav_last_e7d3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.gallery-32cf p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.pattern-smooth-b467 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.modal-2ba3 {
  border: 2px solid #4caf50;
}

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

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

.small-2cef {
  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;
}

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

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

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

.cold-9f16 {
  text-align: right;
}

.cold-9f16 .fixed_c95e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.highlight-south-5a69 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.cold-0f8b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.stale-4ced {
  background: #fff3e0;
  color: #e65100;
}

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

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

.active-static-813d {
  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);
}

.active-static-813d:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.button-iron-f1dc {
  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);
}

.button-iron-f1dc:hover {
  background: var(--color-bg-alt);
}

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

.button-iron-f1dc[aria-expanded="true"] .purple_df4d {
  transform: rotate(180deg);
}

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

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

.backdrop-pro-031c ul,
.backdrop-pro-031c ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.backdrop-pro-031c li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_73f8 ul,
.module_a657 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-94c8 {
  font-style: italic;
}

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

.content-active-13d0 {
  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;
}

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

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

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

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

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

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

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

.secondary-lite-0b8a {
  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);
}

.secondary-lite-0b8a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.secondary-lite-0b8a p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

.medium-6a96 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.medium-6a96 .caption-last-b077 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.input_e25a a:hover {
  color: white;
}

.modal-7da0 {
  list-style: none;
  padding: 0;
}

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

.modal-7da0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.modal-7da0 a:hover {
  color: white;
}

.widget-303a {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .widget-303a {
    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;
  }
  
  .iron-74b6 {
    font-size: 2rem;
  }
  
  .hot_81f2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tooltip-dirty-9da1,
  .simple-b38e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .first_0e1b,
  .label-0d21,
  .form_fixed_1408,
  .glass-3a1a,
  .east_30fb,
  .backdrop_tall_d81b,
  .avatar_orange_92f7,
  .sidebar-pressed-9da1 {
    grid-template-columns: 1fr;
  }
  
  .label-clean-4cb9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bright_7c28 {
    padding: var(--space-lg) 0;
  }
  
  .black_9c82 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .black_9c82 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .grid_b7de {
    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;
  }
  
  .label-clean-4cb9 {
    grid-template-columns: 1fr;
  }
  
  .card_e88d,
  .label-f415,
  .warm-b32f {
    flex-direction: column;
    width: 100%;
  }
  
  .card_f994,
  .label-lite-7232,
  .card_e88d .grid_b7de,
  .label-f415 .grid_b7de {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .iron-74b6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hot_81f2 {
    font-size: 1.375rem;
  }
  
  .breadcrumb_0d22 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thumbnail-plasma-ec64,
  .title_b319,
  .heading-bronze-472e,
  .south-2638,
  .card_dirty_b9d2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hero-18f5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .silver-e402 {
    gap: var(--space-xs);
  }
  
  .media-082b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden-old-7d84 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .next_c05a {
    width: 150px;
    height: 150px;
  }
  
  .status-da92 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dropdown_ba75,
  .slow_1857,
  .card_e88d,
  .content-active-13d0,
  .dim_8f24,
  .prev-43c3,
  .blue_835f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bright_7c28 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6dee */
.shadow-element-f0 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
