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

.notification_prev_8780:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.column_30c9,
header,
.complex_968e,
.pattern_pro_15bb,
.label-under-f6e9,
.picture-gold-378a,
.carousel_d895,
.avatar-glass-195d,
.card_31f5 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

.picture-d0c1 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.grid-a594 {
  flex: 1;
}

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

.hard-9eae {
  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-9eae:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hard-9eae.fn-active-9ffe {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pro-b6d1 {
  position: relative;
}

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

.item-new-dde3 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.bronze_f51a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.input_warm_4ba2[aria-expanded="true"] .section-liquid-c113:nth-child(2) {
  opacity: 0;
}

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

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

  .grid-a594::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .grid-a594.notification-warm-0fb4 {
    display: block;
    right: 0;
  }
  
  .summary_light_efd1 {
    flex-direction: column;
    gap: 0;
  }
  
  .hard-9eae {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .grid-a594::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;
  }
  
  .grid-a594.notification-warm-0fb4::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .grid-a594 {
    display: none;
  }
  
  .input_warm_4ba2 {
    display: flex;
  }
  
  .alert_fixed_ea7f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .bronze_f51a,
  .main_slow_9ffc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pro-b6d1 {
    position: relative;
  }
  
  .footer_dynamic_0eb2 {
    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;
  }
  
  .item-new-dde3[aria-expanded="true"] + .footer_dynamic_0eb2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pink_5cf7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .filter_f97f {
    gap: 8px;
  }
  
  .bronze_f51a {
    display: none;
  }
  
  .main_slow_9ffc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture-d0c1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.input-left-de27 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-left-de27 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.dropdown-tall-0774 a {
  color: var(--color-primary);
  text-decoration: none;
}

.dropdown-tall-0774 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .bronze_3fbc {
    grid-template-columns: 1fr;
  }
  
  .slider-dynamic-d7f2 {
    font-size: 1.75rem;
  }
  
  .row_thick_88bd {
    order: -1;
    max-width: 100%;
  }
  
  .wrapper_out_1753 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slider-dynamic-d7f2 {
    font-size: 1.5rem;
  }
  
  .detail_pro_c4c8 {
    font-size: 1rem;
  }
  
  .dropdown-tall-0774 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wrapper_out_1753 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.new-6cff {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.carousel-easy-4d0a {
  list-style: none;
  counter-reset: toc-counter;
}

.carousel-easy-4d0a li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.carousel-easy-4d0a 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);
}

.carousel-easy-4d0a 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;
}

.carousel-easy-4d0a li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

.backdrop-green-5121 {
  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);
}

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

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

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

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

.frame-0a39 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.frame-0a39 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);
}

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

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

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

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

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

.frame-0a39 strong {
  font-weight: 600;
  color: var(--color-text);
}

.frame-0a39 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.frame-0a39 a:hover {
  color: var(--color-primary-dark);
}

.tag-middle-78b4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.tag-middle-78b4 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) {
  .accordion_right_3e4c {
    grid-template-columns: 1fr;
  }
  
  .backdrop-green-5121 {
    font-size: 1.75rem;
  }
  
  .frame-0a39 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .backdrop-green-5121 {
    font-size: 1.5rem;
  }
  
  .frame-0a39 h3 {
    font-size: 1.375rem;
  }
  
  .frame-0a39 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.secondary-south-ab42 {
  flex-shrink: 0;
}

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

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

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

.preview-thick-cb9c,
.media_84a9,
.current_141b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.preview-thick-cb9c thead,
.media_84a9 thead {
  background: var(--color-primary);
  color: white;
}

.preview-thick-cb9c th,
.preview-thick-cb9c td,
.media_84a9 th,
.media_84a9 td,
.current_141b th,
.current_141b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .preview-thick-cb9c th,
  .preview-thick-cb9c td,
  .media_84a9 th,
  .media_84a9 td,
  .current_141b th,
  .current_141b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .preview-thick-cb9c,
  .media_84a9,
  .current_141b {
    min-width: 600px;
  }
}

.preview-thick-cb9c th,
.media_84a9 th,
.current_141b th {
  font-weight: 600;
}

.preview-thick-cb9c tbody tr:hover,
.media_84a9 tbody tr:hover,
.current_141b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.easy_94f8 h4 {
  color: white;
}

.message-rough-18d9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.article-down-3a30 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.item-355c {
  list-style: none;
  padding: 0;
}

.item-355c li {
  padding: var(--space-xs) 0;
}

.focus_basic_a630 {
  color: #4caf50;
}

.aside_paper_b422 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .form-stale-5cb7 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.highlight-b612 .notification_cool_8938 {
  width: 100%;
  background: white;
}

.fresh_d2ba .notification_cool_8938 {
  color: #667eea;
}

.status-fixed-1bc9 .notification_cool_8938 {
  color: #f5576c;
}

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

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

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

.module-silver-bfbc {
  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);
}

.widget-6c28 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .widget-6c28 {
    padding: var(--space-md);
  }
  
  .preview_c183 {
    padding: var(--space-md);
  }
  
  .tertiary_54f0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.thumbnail-2ad5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.copper_979d,
.tag_5a26,
.gallery-c83b,
.purple_034b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-4a7e {
  border-color: var(--color-success);
}

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

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

.wrapper-4a7e .bronze_0dab {
  background: #e8f5e9;
  color: var(--color-success);
}

.out_9c93 .bronze_0dab {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .block-solid-5d7e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.focus_d5a3 {
  text-align: center;
}

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

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

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

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

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

.title-cool-590e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.hovered-6f86 {
  margin-bottom: var(--space-xl);
}

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

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

.element-in-cefb {
  color: var(--color-text-light);
}

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

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

.breadcrumb-advanced-9c22 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gallery_bottom_c6f1 {
  text-align: right;
}

.gallery_bottom_c6f1 .info-2bcf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-paper-1cc6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dim_179c[aria-expanded="true"] .popup-paper-1cc6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_complex_4054 ul,
.black_eb7d ul {
  list-style: none;
  padding: 0;
}

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

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

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

.input-in-6d84 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.input-in-6d84 ul {
  list-style: none;
  padding: 0;
}

.input-in-6d84 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.info_out_bcde {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text_east_5d1a .short-9394 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.shade_da8a a:hover {
  color: white;
}

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

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

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

.nav_warm_1301 a:hover {
  color: white;
}

.plasma-69dc {
  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);
}

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

.slider-9a2c a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.tertiary-05b7:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .plasma-69dc {
    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;
  }
  
  .slider-dynamic-d7f2 {
    font-size: 2rem;
  }
  
  .backdrop-green-5121 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .bronze_3fbc,
  .accordion_right_3e4c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .overlay-soft-ef8e,
  .highlight-ec64,
  .form-stale-5cb7,
  .block-solid-5d7e,
  .surface_cb09,
  .pagination_static_bf8e,
  .heading_10eb,
  .layout-basic-bf53 {
    grid-template-columns: 1fr;
  }
  
  .hard-ffac {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .carousel_d895 {
    padding: var(--space-lg) 0;
  }
  
  .carousel-easy-4d0a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .carousel-easy-4d0a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notification_cool_8938 {
    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;
  }
  
  .hard-ffac {
    grid-template-columns: 1fr;
  }
  
  .accent_f144,
  .tertiary_focused_55e5,
  .last_f85d {
    flex-direction: column;
    width: 100%;
  }
  
  .banner_top_8300,
  .new-6cff,
  .accent_f144 .notification_cool_8938,
  .tertiary_focused_55e5 .notification_cool_8938 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slider-dynamic-d7f2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .backdrop-green-5121 {
    font-size: 1.375rem;
  }
  
  .row-rough-f24f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .progress_wood_60c2,
  .message_static_3259,
  .easy_a3d0,
  .column_8245,
  .search-yellow-4989 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .video-47db {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .steel_9301 {
    gap: var(--space-xs);
  }
  
  .input-left-de27 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .main_dim_8ecd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .stale_01e3 {
    width: 150px;
    height: 150px;
  }
  
  .texture_afb2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .column_30c9,
  .complex_968e,
  .accent_f144,
  .item_tiny_2c5b,
  .avatar-glass-195d,
  .card_31f5,
  .input_warm_4ba2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .carousel_d895 {
    page-break-inside: avoid;
  }
}

/* css-noise: 09f8 */
.shadow-element-l9 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
