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

.wrapper-c9e3:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.rough_4a28):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. */
.rough_4a28,
header,
.tall_4019,
.pink-04fe,
.filter-2e4c,
.label-07fe,
.secondary-large-efcb,
.accordion-cold-70ec,
.tabs-d9d3 {
  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
   ============================================ */
.rough_4a28 {
  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);
}

.lower-4fc3 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.button-ecb4 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.button-caa4 {
  flex: 1;
}

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

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

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

.hard_e938.pro-21c2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.next-875d {
  position: relative;
}

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

.card-dark-d4fa svg {
  transition: transform 0.2s ease;
}

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

.gallery-clean-6121 {
  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;
}

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

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

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

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

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

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

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

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

.advanced-8521 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.form-30a3 {
  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-30a3: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-30a3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .button-caa4 {
    display: none;
  }
  
  .mask_99f0 {
    display: flex;
  }
  
  .shadow_blue_1230 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .advanced-8521,
  .form-30a3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .next-875d {
    position: relative;
  }
  
  .gallery-clean-6121 {
    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;
  }
  
  .card-dark-d4fa[aria-expanded="true"] + .gallery-clean-6121 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .alert_silver_6a19 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .panel_glass_bbe5 {
    gap: 8px;
  }
  
  .advanced-8521 {
    display: none;
  }
  
  .form-30a3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .button-ecb4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.nav-cb94 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cb94 svg {
  flex-shrink: 0;
}

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

.nav-cb94 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.stale-6cbe a {
  color: var(--color-primary);
  text-decoration: none;
}

.stale-6cbe a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.menu-easy-e694 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.dark-32c6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-ba03 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.outline-focused-9c1d {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .link_light_aa23 {
    grid-template-columns: 1fr;
  }
  
  .image-c553 {
    font-size: 1.75rem;
  }
  
  .dark-32c6 {
    order: -1;
    max-width: 100%;
  }
  
  .notification-ba03 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .image-c553 {
    font-size: 1.5rem;
  }
  
  .nav_silver_0782 {
    font-size: 1rem;
  }
  
  .stale-6cbe {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notification-ba03 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool-fd75 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image_outer_4529 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) {
  .sort-379d {
    grid-template-columns: 1fr;
  }
  
  .active-e1af {
    font-size: 1.75rem;
  }
  
  .heading_3178 {
    max-width: 100%;
  }
}

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

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

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

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

.block-iron-f640 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.bottom-b897 {
  flex-shrink: 0;
}

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

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

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

.tabs-rough-e482,
.paragraph-e4df,
.advanced-0e9b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tabs-rough-e482 thead,
.paragraph-e4df thead {
  background: var(--color-primary);
  color: white;
}

.tabs-rough-e482 th,
.tabs-rough-e482 td,
.paragraph-e4df th,
.paragraph-e4df td,
.advanced-0e9b th,
.advanced-0e9b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tabs-rough-e482 th,
  .tabs-rough-e482 td,
  .paragraph-e4df th,
  .paragraph-e4df td,
  .advanced-0e9b th,
  .advanced-0e9b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tabs-rough-e482,
  .paragraph-e4df,
  .advanced-0e9b {
    min-width: 600px;
  }
}

.tabs-rough-e482 th,
.paragraph-e4df th,
.advanced-0e9b th {
  font-weight: 600;
}

.tabs-rough-e482 tbody tr:hover,
.paragraph-e4df tbody tr:hover,
.advanced-0e9b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.accordion-focused-d4ac h4 {
  color: white;
}

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

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

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

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

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

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

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

.video-outer-7735:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.tag-8511 {
  color: #4caf50;
}

.outer_afaa {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.panel-under-274b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.panel-under-274b p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.item-83f2 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.table_caf8 .filter_2790 {
  width: 100%;
  background: white;
}

.surface_bottom_d2fa .filter_2790 {
  color: #667eea;
}

.secondary_hovered_4c4e .filter_2790 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_purple_35fb,
.texture_plasma_768d,
.widget_965f,
.module_fb23 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.filter-hovered-9015 {
  border-color: var(--color-success);
}

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

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

.filter-hovered-9015 .tag_dark_d64a {
  background: #e8f5e9;
  color: var(--color-success);
}

.aside-b6aa .tag_dark_d64a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-purple-48e4 {
  text-align: center;
}

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

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

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

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

.light-4aa9 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.primary-first-f522 {
  margin-bottom: var(--space-xl);
}

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

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

.up-0e93 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.frame-inner-8e32 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.grid-gas-d9ce {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.picture_light_4249 {
  text-align: right;
}

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

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

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

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

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

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

.progress-cool-d6f6 {
  background: #e8f5e9;
  color: #2e7d32;
}

.disabled-b876 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.hidden-brown-632a span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.photo-8fc0 strong {
  color: var(--color-primary);
}

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

.video-last-495f {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

.menu-center-a83d {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.copper_186b[aria-expanded="true"] .menu-center-a83d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.short-5fc6 {
  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);
}

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

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

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

.slider_4b76,
.accordion-gas-e21e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.slider_4b76 h4,
.accordion-gas-e21e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.slider_4b76 ul,
.accordion-gas-e21e ul {
  list-style: none;
  padding: 0;
}

.slider_4b76 li,
.accordion-gas-e21e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.breadcrumb-new-9db1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.breadcrumb-new-9db1 ul {
  list-style: none;
  padding: 0;
}

.breadcrumb-new-9db1 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.outline-next-e7d8 {
  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);
}

.pattern-bea9 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_81e8 .frame_ece4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.accordion-6e4b {
  list-style: none;
  padding: 0;
}

.accordion-6e4b li {
  margin-bottom: var(--space-xs);
}

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

.accordion-6e4b a:hover {
  color: white;
}

.west-e155 {
  list-style: none;
  padding: 0;
}

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

.west-e155 a {
  color: #b0b0b0;
  text-decoration: none;
}

.west-e155 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .wide_bbe6 {
    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;
  }
  
  .image-c553 {
    font-size: 2rem;
  }
  
  .active-e1af {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .link_light_aa23,
  .sort-379d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accordion-d393,
  .tag-4f53,
  .fixed_4c84,
  .title_upper_59e1,
  .out-7188,
  .shadow_6823,
  .form_new_fbad,
  .fresh_9e3b {
    grid-template-columns: 1fr;
  }
  
  .lite_5ea5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .secondary-large-efcb {
    padding: var(--space-lg) 0;
  }
  
  .cool-fd75 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .cool-fd75 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .filter_2790 {
    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;
  }
  
  .lite_5ea5 {
    grid-template-columns: 1fr;
  }
  
  .menu-easy-e694,
  .new-6752,
  .media_short_90e5 {
    flex-direction: column;
    width: 100%;
  }
  
  .silver_ca42,
  .selected_4254,
  .menu-easy-e694 .filter_2790,
  .new-6752 .filter_2790 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .image-c553 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .active-e1af {
    font-size: 1.375rem;
  }
  
  .tabs-ed57 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .orange-30b0,
  .panel-under-274b,
  .background-glass-22d8,
  .black_5fb7,
  .warm-0bd5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .fluid_80cf {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus-action-9e8a {
    gap: var(--space-xs);
  }
  
  .nav-cb94 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .footer-b389 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shade_out_27c4 {
    width: 150px;
    height: 150px;
  }
  
  .lower_b901 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .rough_4a28,
  .tall_4019,
  .menu-easy-e694,
  .chip_3567,
  .accordion-cold-70ec,
  .tabs-d9d3,
  .mask_99f0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .secondary-large-efcb {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 155d */
.ghost-box-n6 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
