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

.label-594d:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.table_bottom_a07d):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. */
.table_bottom_a07d,
header,
.action_0865,
.gallery_hovered_57e0,
.button-7405,
.hero-9f16,
.summary_bright_d07b,
.badge-blue-ca5c,
.form-9c24 {
  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
   ============================================ */
.table_bottom_a07d {
  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);
}

.input-in-1b12 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.info-e572 img {
  height: 36px;
  width: auto;
  display: block;
}

.element-0f27 {
  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;
}

.small_91a9 {
  flex: 1;
}

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

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

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

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

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

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

.wide-9dfe svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.notification_f597 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.over-99c9[aria-expanded="true"] .old_37b8:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .small_91a9 {
    display: none;
  }
  
  .over-99c9 {
    display: flex;
  }
  
  .element-0f27 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .notification_f597,
  .form_smooth_c477 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .image_hard_1ec0 {
    position: relative;
  }
  
  .medium-b7e4 {
    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;
  }
  
  .wide-9dfe[aria-expanded="true"] + .medium-b7e4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .center_eaa8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .summary-b757 {
    gap: 8px;
  }
  
  .notification_f597 {
    display: none;
  }
  
  .form_smooth_c477 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .info-e572 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.thumbnail-0e6d {
  display: flex;
  align-items: center;
  gap: 6px;
}

.thumbnail-0e6d svg {
  flex-shrink: 0;
}

.thumbnail-0e6d a {
  color: var(--color-primary);
  text-decoration: none;
}

.thumbnail-0e6d a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .link-next-913d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.notice-pressed-74d6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.prev-92bb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-fbdd {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .secondary-outer-d565 {
    grid-template-columns: 1fr;
  }
  
  .shade-a077 {
    font-size: 1.75rem;
  }
  
  .prev-92bb {
    order: -1;
    max-width: 100%;
  }
  
  .chip-fbdd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shade-a077 {
    font-size: 1.5rem;
  }
  
  .grid-ceba {
    font-size: 1rem;
  }
  
  .header_b678 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .chip-fbdd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bottom_3315 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) {
  .paragraph_first_4870 {
    grid-template-columns: 1fr;
  }
  
  .selected_fd61 {
    font-size: 1.75rem;
  }
  
  .lite-f884 {
    max-width: 100%;
  }
}

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

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

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

.complex-4ce9 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.primary-huge-9888 {
  flex-shrink: 0;
}

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

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

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

.header-50a1,
.secondary_silver_0599,
.preview_fb95 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.header-50a1 thead,
.secondary_silver_0599 thead {
  background: var(--color-primary);
  color: white;
}

.header-50a1 th,
.header-50a1 td,
.secondary_silver_0599 th,
.secondary_silver_0599 td,
.preview_fb95 th,
.preview_fb95 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header-50a1 th,
  .header-50a1 td,
  .secondary_silver_0599 th,
  .secondary_silver_0599 td,
  .preview_fb95 th,
  .preview_fb95 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .header-50a1,
  .secondary_silver_0599,
  .preview_fb95 {
    min-width: 600px;
  }
}

.header-50a1 th,
.secondary_silver_0599 th,
.preview_fb95 th {
  font-weight: 600;
}

.header-50a1 tbody tr:hover,
.secondary_silver_0599 tbody tr:hover,
.preview_fb95 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.link_silver_b605 h4 {
  color: white;
}

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

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

.link-2761:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.notice-a597 {
  font-weight: 600;
  color: white;
}

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

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

.brown_69f4 {
  color: #4caf50;
}

.frame_bbdd {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.aside_huge_5f9f {
  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_7f47 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element_fluid_b678 .thumbnail_016f {
  width: 100%;
  background: white;
}

.bronze_0f0a .thumbnail_016f {
  color: #667eea;
}

.shade-74dd .thumbnail_016f {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .stale_198a {
    padding: var(--space-md);
  }
  
  .blue_05dd {
    padding: var(--space-md);
  }
  
  .shadow-next-9742 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.iron_e896,
.dynamic_eebc,
.bright-779c,
.border-over-4c8f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-9aca {
  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);
}

.surface_1776 .item-9aca {
  background: #e8f5e9;
  color: var(--color-success);
}

.background_active_33f1 .item-9aca {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-smooth-73ba {
  text-align: center;
}

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

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

.outer_5cd5 .notice-a597 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.media-lite-6373 {
  margin-bottom: var(--space-xl);
}

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

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

.tertiary-5a72 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.outline-46ae {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.green_d902 {
  text-align: right;
}

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

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

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

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

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

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

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

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

.active-7d78 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.border-white-c4b3 {
  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);
}

.border-white-c4b3:hover {
  background: var(--color-bg-alt);
}

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

.border-white-c4b3[aria-expanded="true"] .mini_7895 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-5acb,
.medium-d9e1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.footer-5acb h4,
.medium-d9e1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.footer-5acb ul,
.medium-d9e1 ul {
  list-style: none;
  padding: 0;
}

.footer-5acb li,
.medium-d9e1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.new-66df {
  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);
}

.stale_5623 {
  font-style: italic;
}

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

.grid-solid-0803 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-7d4a .center-d2c1 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.cool_56cf a:hover {
  color: white;
}

.module-ffde {
  list-style: none;
  padding: 0;
}

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

.module-ffde a {
  color: #b0b0b0;
  text-decoration: none;
}

.module-ffde a:hover {
  color: white;
}

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

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

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

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

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

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

.lower-26bc:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .surface_fluid_07a7 {
    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;
  }
  
  .shade-a077 {
    font-size: 2rem;
  }
  
  .selected_fd61 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .secondary-outer-d565,
  .paragraph_first_4870 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .frame_45dd,
  .active_603e,
  .outline_solid_9183,
  .sidebar_under_4e12,
  .article_63ad,
  .filter_4645,
  .upper_5525,
  .outline-dcdf {
    grid-template-columns: 1fr;
  }
  
  .input-d368 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .summary_bright_d07b {
    padding: var(--space-lg) 0;
  }
  
  .gallery_e97a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gallery_e97a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .thumbnail_016f {
    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;
  }
  
  .input-d368 {
    grid-template-columns: 1fr;
  }
  
  .notice-pressed-74d6,
  .sidebar-bright-1731,
  .full_5117 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert_middle_528b,
  .progress-6142,
  .notice-pressed-74d6 .thumbnail_016f,
  .sidebar-bright-1731 .thumbnail_016f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shade-a077 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .selected_fd61 {
    font-size: 1.375rem;
  }
  
  .logo-913e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .fixed_bda6,
  .title_7f47,
  .warm-9452,
  .new_1d9f,
  .summary-tall-c954 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .detail_96c7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .clean-d6fe {
    gap: var(--space-xs);
  }
  
  .thumbnail-0e6d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .component_2bd1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .outer_5cd5 {
    width: 150px;
    height: 150px;
  }
  
  .background-focused-6ee0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .table_bottom_a07d,
  .action_0865,
  .notice-pressed-74d6,
  .grid-solid-0803,
  .badge-blue-ca5c,
  .form-9c24,
  .over-99c9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .summary_bright_d07b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 81ba */
.shadow-element-z8 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.0;
}
