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

.old-d848:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.backdrop-dim-1f4f,
header,
.silver_4978,
.clean_23ab,
.tooltip-first-f387,
.pink-90cb,
.white-2c85,
.highlight_center_1cae,
.component-3d24 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.backdrop-dim-1f4f {
  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);
}

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

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

/* Scrolled state */
.backdrop-dim-1f4f.smooth-0950 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.border-inner-0b1b {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.gallery_ea1e img {
  height: 36px;
  width: auto;
  display: block;
}

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

.focus_cf30 {
  flex: 1;
}

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

.active-51d4 {
  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);
}

.active-51d4:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.active-51d4.widget_rough_6aab {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-up-eef6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.disabled-slow-ffb3[aria-expanded="true"] .list_thick_e001:nth-child(2) {
  opacity: 0;
}

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

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

  .focus_cf30::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .focus_cf30.prev-7fe9 {
    display: block;
    right: 0;
  }
  
  .title-a406 {
    flex-direction: column;
    gap: 0;
  }
  
  .active-51d4 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .focus_cf30::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;
  }
  
  .focus_cf30.prev-7fe9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .focus_cf30 {
    display: none;
  }
  
  .disabled-slow-ffb3 {
    display: flex;
  }
  
  .short_4ebc {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .row-up-eef6,
  .filter-be47 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .photo_over_b512 {
    position: relative;
  }
  
  .middle_145e {
    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;
  }
  
  .south_154e[aria-expanded="true"] + .middle_145e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .avatar_top_0a4c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .surface_3cdd {
    gap: 8px;
  }
  
  .row-up-eef6 {
    display: none;
  }
  
  .filter-be47 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .gallery_ea1e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dark-5531 svg {
  flex-shrink: 0;
}

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

.dark-5531 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.breadcrumb-dynamic-ddda {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.message-5f56 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-slow-671d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .outline-prev-dad9 {
    grid-template-columns: 1fr;
  }
  
  .notification-old-5959 {
    font-size: 1.75rem;
  }
  
  .module_next_f8a8 {
    order: -1;
    max-width: 100%;
  }
  
  .pressed_376b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification-old-5959 {
    font-size: 1.5rem;
  }
  
  .orange_1ac6 {
    font-size: 1rem;
  }
  
  .soft_345e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pressed_376b {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.search-warm-f30a {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-3bd9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-3449 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) {
  .active-f21e {
    grid-template-columns: 1fr;
  }
  
  .input-89d0 {
    font-size: 1.75rem;
  }
  
  .popup-5233 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .input-89d0 {
    font-size: 1.5rem;
  }
  
  .popup-5233 h3 {
    font-size: 1.375rem;
  }
  
  .popup-5233 h4 {
    font-size: 1.125rem;
  }
}

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

.static-0dbe {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.shade_soft_db76 {
  flex-shrink: 0;
}

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

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

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

.overlay-2658,
.media_rough_cee9,
.bottom-b56b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.overlay-2658 thead,
.media_rough_cee9 thead {
  background: var(--color-primary);
  color: white;
}

.overlay-2658 th,
.overlay-2658 td,
.media_rough_cee9 th,
.media_rough_cee9 td,
.bottom-b56b th,
.bottom-b56b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .overlay-2658 th,
  .overlay-2658 td,
  .media_rough_cee9 th,
  .media_rough_cee9 td,
  .bottom-b56b th,
  .bottom-b56b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .overlay-2658,
  .media_rough_cee9,
  .bottom-b56b {
    min-width: 600px;
  }
}

.overlay-2658 th,
.media_rough_cee9 th,
.bottom-b56b th {
  font-weight: 600;
}

.overlay-2658 tbody tr:hover,
.media_rough_cee9 tbody tr:hover,
.bottom-b56b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mini_4253 h4 {
  color: white;
}

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

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

.picture-a346:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.short-302d {
  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);
}

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

.orange-655a {
  font-weight: 600;
  color: white;
}

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

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

.link-70e7 {
  color: #4caf50;
}

.motion-dfa8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-2f2f {
  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-2f2f {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.table-full-fd68 .stale_e091 {
  width: 100%;
  background: white;
}

.breadcrumb_simple_5def .stale_e091 {
  color: #667eea;
}

.label_dirty_b2ab .stale_e091 {
  color: #f5576c;
}

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

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

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

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

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

.highlight-mini-0125 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .static-d669 {
    padding: var(--space-md);
  }
  
  .highlight-mini-0125 {
    padding: var(--space-md);
  }
  
  .advanced_72b9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.brown-31e8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.media-south-7a07,
.tooltip-clean-7410,
.input_cool_4d2e,
.lower_481b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.element-38e8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.badge_white_7c75 .black_7f6c {
  background: #e8f5e9;
  color: var(--color-success);
}

.old-b40f .black_7f6c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.background-fluid-8b56 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.heading-52b5 {
  margin-top: var(--space-xxl);
}

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

.aside_middle_a591 {
  text-align: center;
}

.media-full-b503 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.media-full-b503 .orange-655a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.tall-0bdd {
  margin-bottom: var(--space-xl);
}

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

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

.modal-5f85 {
  color: var(--color-text-light);
}

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

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

.tiny-527f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

.detail-silver-4a0c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.popup_27db {
  text-align: right;
}

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

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

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

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

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

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

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

.secondary-7800 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.input_07a9 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.in_9554,
.text-glass-66cd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.in_9554 h4,
.text-glass-66cd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.in_9554 ul,
.text-glass-66cd ul {
  list-style: none;
  padding: 0;
}

.in_9554 li,
.text-glass-66cd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.out-f670 {
  font-style: italic;
}

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

.menu-left-99a0 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary_bdae .sidebar_selected_7e45 {
  color: #4caf50;
  font-size: 0.875rem;
}

.focused-2cc2 {
  list-style: none;
  padding: 0;
}

.focused-2cc2 li {
  margin-bottom: var(--space-xs);
}

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

.focused-2cc2 a:hover {
  color: white;
}

.tooltip-e75d {
  list-style: none;
  padding: 0;
}

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

.tooltip-e75d a {
  color: #b0b0b0;
  text-decoration: none;
}

.tooltip-e75d a:hover {
  color: white;
}

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

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

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

.content-south-968d {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.label-warm-faee:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pro-c069 {
    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;
  }
  
  .notification-old-5959 {
    font-size: 2rem;
  }
  
  .input-89d0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .outline-prev-dad9,
  .active-f21e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .element-iron-af3d,
  .gallery_bf63,
  .bronze-2f2f,
  .fluid-de24,
  .hover-d926,
  .left_3000,
  .popup-top-f1bf,
  .current_4fa1 {
    grid-template-columns: 1fr;
  }
  
  .dirty-daf7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .white-2c85 {
    padding: var(--space-lg) 0;
  }
  
  .north_3ce4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .north_3ce4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .stale_e091 {
    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;
  }
  
  .dirty-daf7 {
    grid-template-columns: 1fr;
  }
  
  .chip_over_e985,
  .accent_2f8d,
  .popup_paper_3bdc {
    flex-direction: column;
    width: 100%;
  }
  
  .search-warm-f30a,
  .rough_745b,
  .chip_over_e985 .stale_e091,
  .accent_2f8d .stale_e091 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification-old-5959 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .input-89d0 {
    font-size: 1.375rem;
  }
  
  .frame-9114 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .bright_d794,
  .huge_853c,
  .shade-1122,
  .action-5649,
  .tooltip_0c89 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider-north-bca4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .layout-0c6a {
    gap: var(--space-xs);
  }
  
  .dark-5531 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .short-302d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .media-full-b503 {
    width: 150px;
    height: 150px;
  }
  
  .chip-orange-9cd8 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .backdrop-dim-1f4f,
  .silver_4978,
  .chip_over_e985,
  .menu-left-99a0,
  .highlight_center_1cae,
  .component-3d24,
  .disabled-slow-ffb3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .white-2c85 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 7ef1 */
.phantom-card-t7 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.1;
}
