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

.blue-2232:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.focused_4a4a):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. */
.focused_4a4a,
header,
.outer-86e5,
.dropdown_south_e7df,
.banner_small_5ca5,
.next-6662,
.shadow-in-a0b9,
.box_f307,
.grid_solid_1825 {
  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
   ============================================ */
.focused_4a4a {
  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);
}

.element-steel-985e {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.hero-rough-83a4 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.progress-silver-403a {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-prev-4d05 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.disabled-lite-ca8c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.green-1ac6[aria-expanded="true"] .slow_875d:nth-child(2) {
  opacity: 0;
}

.green-1ac6[aria-expanded="true"] .slow_875d:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .progress-silver-403a::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .progress-silver-403a.footer_0357 {
    display: block;
    right: 0;
  }
  
  .input_dark_2933 {
    flex-direction: column;
    gap: 0;
  }
  
  .gold_1a43 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .progress-silver-403a::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;
  }
  
  .progress-silver-403a.footer_0357::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .progress-silver-403a {
    display: none;
  }
  
  .green-1ac6 {
    display: flex;
  }
  
  .article_hot_cc06 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .disabled-lite-ca8c,
  .wood_218c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tiny_10a1 {
    position: relative;
  }
  
  .full_1ec8 {
    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;
  }
  
  .grid_a975[aria-expanded="true"] + .full_1ec8 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .dynamic_efe8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .outline-prev-4d05 {
    gap: 8px;
  }
  
  .disabled-lite-ca8c {
    display: none;
  }
  
  .wood_218c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hero-rough-83a4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.detail-5e58 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-5e58 svg {
  flex-shrink: 0;
}

.detail-5e58 a {
  color: var(--color-primary);
  text-decoration: none;
}

.detail-5e58 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice-fluid-3e7c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.panel-bronze-23cb {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .pagination_a8c2 {
    grid-template-columns: 1fr;
  }
  
  .column_bright_e121 {
    font-size: 1.75rem;
  }
  
  .glass-2271 {
    order: -1;
    max-width: 100%;
  }
  
  .sort_fresh_7a2b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column_bright_e121 {
    font-size: 1.5rem;
  }
  
  .narrow_3197 {
    font-size: 1rem;
  }
  
  .banner_631e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .sort_fresh_7a2b {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.tabs-north-c033 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.carousel-5b09 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-154b {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-eb38 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) {
  .avatar-36b0 {
    grid-template-columns: 1fr;
  }
  
  .badge_focused_fee3 {
    font-size: 1.75rem;
  }
  
  .list_wide_6474 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.tooltip-narrow-5b65 {
  flex-shrink: 0;
}

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

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

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

.dirty_0781,
.paper-9f7c,
.border_77dc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dirty_0781 thead,
.paper-9f7c thead {
  background: var(--color-primary);
  color: white;
}

.dirty_0781 th,
.dirty_0781 td,
.paper-9f7c th,
.paper-9f7c td,
.border_77dc th,
.border_77dc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dirty_0781 th,
  .dirty_0781 td,
  .paper-9f7c th,
  .paper-9f7c td,
  .border_77dc th,
  .border_77dc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .dirty_0781,
  .paper-9f7c,
  .border_77dc {
    min-width: 600px;
  }
}

.dirty_0781 th,
.paper-9f7c th,
.border_77dc th {
  font-weight: 600;
}

.dirty_0781 tbody tr:hover,
.paper-9f7c tbody tr:hover,
.border_77dc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.blue_cdf1 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mini_2fd3 {
  color: #4caf50;
}

.top-5428 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.highlight-green-9743 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .list-dim-9d14 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.shade_a5b7 .layout-4fea {
  width: 100%;
  background: white;
}

.hard-2a8c .layout-4fea {
  color: #667eea;
}

.west_8284 .layout-4fea {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.preview-clean-62a9 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 768px) {
  .description_stale_9241 {
    padding: var(--space-md);
  }
  
  .tall-db29 {
    padding: var(--space-md);
  }
  
  .header_lower_715b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.container-630d li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.picture-plasma-df55,
.notice-a167,
.accent-740b,
.menu_active_df30 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.feature-pink-de2c {
  border-color: var(--color-success);
}

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

.section-63ac {
  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);
}

.feature-pink-de2c .section-63ac {
  background: #e8f5e9;
  color: var(--color-success);
}

.white_eced .section-63ac {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.logo-small-9c6e {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.media_bright_3aeb {
  text-align: center;
}

.article-80bb {
  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);
}

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

.article-80bb .huge_4702 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.picture-wide-0636 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message_old_e2cb {
  text-align: right;
}

.message_old_e2cb .status-a0a2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.thumbnail-advanced-8dc2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.accordion-7a5c {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.message-cf5f {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.banner-87ab strong {
  color: var(--color-primary);
}

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

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

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

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

.item-copper-5448 {
  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);
}

.item-copper-5448:hover {
  background: var(--color-bg-alt);
}

.element-43cb {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.item-copper-5448[aria-expanded="true"] .element-43cb {
  transform: rotate(180deg);
}

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

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

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

.info-3dba li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.progress_b922,
.header-slow-d19e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.progress_b922 h4,
.header-slow-d19e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.progress_b922 ul,
.header-slow-d19e ul {
  list-style: none;
  padding: 0;
}

.progress_b922 li,
.header-slow-d19e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.pressed-106a {
  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);
}

.heading_lower_9865 {
  font-style: italic;
}

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

.lower-1c14 {
  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;
}

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

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

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

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

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

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

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

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

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

.caption-glass-7d85 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.preview-47d1 .cool-c3e5 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.advanced_0b43 a:hover {
  color: white;
}

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

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

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

.white_d9ff a:hover {
  color: white;
}

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

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

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

.status-large-d1bf {
  font-size: 0.75rem;
  color: #666666;
}

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

.preview-purple-646b {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.preview-purple-646b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .last_e404 {
    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;
  }
  
  .column_bright_e121 {
    font-size: 2rem;
  }
  
  .badge_focused_fee3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pagination_a8c2,
  .avatar-36b0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .lower-4a5e,
  .footer_wide_ef14,
  .list-dim-9d14,
  .down-03b2,
  .info-small-b3ba,
  .filter_7dfe,
  .block-6a38,
  .chip_8f5e {
    grid-template-columns: 1fr;
  }
  
  .pagination_399a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shadow-in-a0b9 {
    padding: var(--space-lg) 0;
  }
  
  .gold_dd93 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gold_dd93 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .layout-4fea {
    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;
  }
  
  .pagination_399a {
    grid-template-columns: 1fr;
  }
  
  .notice-fluid-3e7c,
  .form_medium_b795,
  .accent_tall_e0f8 {
    flex-direction: column;
    width: 100%;
  }
  
  .tabs-north-c033,
  .carousel-5b09,
  .notice-fluid-3e7c .layout-4fea,
  .form_medium_b795 .layout-4fea {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column_bright_e121 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .badge_focused_fee3 {
    font-size: 1.375rem;
  }
  
  .mask-b6ba {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .yellow_6a2b,
  .basic-8009,
  .title-mini-cfba,
  .easy-bf54,
  .accent-b104 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .overlay-selected-f2db {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pattern-0842 {
    gap: var(--space-xs);
  }
  
  .detail-5e58 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .caption_64ae {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .article-80bb {
    width: 150px;
    height: 150px;
  }
  
  .wood-ec33 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focused_4a4a,
  .outer-86e5,
  .notice-fluid-3e7c,
  .lower-1c14,
  .box_f307,
  .grid_solid_1825,
  .green-1ac6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shadow-in-a0b9 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: ba85 */
.phantom-card-h0 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
