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

.pattern-420a:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .progress-focused-7f8f {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .progress-focused-7f8f {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.image_tall_837f,
header,
.breadcrumb_liquid_ebdd,
.button_9b55,
.dynamic_cbd1,
.chip-94bd,
.pagination_short_1f14,
.mask_huge_8668,
.shadow_smooth_a077 {
  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
   ============================================ */
.image_tall_837f {
  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);
}

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

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

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

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

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

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

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

.tall_8be3 {
  flex: 1;
}

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

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

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

.carousel_bb15.fn-active-e9e1 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.small-d8d5 {
  position: relative;
}

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

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

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

.badge-light-6d92 {
  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;
}

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

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

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

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

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

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

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

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

.widget_fdf3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .tall_8be3 {
    display: none;
  }
  
  .widget_purple_96d5 {
    display: flex;
  }
  
  .dropdown_c4f3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .widget_fdf3,
  .small_25dd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .small-d8d5 {
    position: relative;
  }
  
  .badge-light-6d92 {
    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;
  }
  
  .mask_fd5e[aria-expanded="true"] + .badge-light-6d92 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .lower_246f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

.tag-hot-c33b {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-hot-c33b svg {
  flex-shrink: 0;
}

.tag-hot-c33b a {
  color: var(--color-primary);
  text-decoration: none;
}

.tag-hot-c33b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.iron-5fc0 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.outline-red-e378 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.section-purple-2caa {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .layout-bd38 {
    grid-template-columns: 1fr;
  }
  
  .accent_e3ed {
    font-size: 1.75rem;
  }
  
  .texture_8e22 {
    order: -1;
    max-width: 100%;
  }
  
  .outline-red-e378 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accent_e3ed {
    font-size: 1.5rem;
  }
  
  .description_e63b {
    font-size: 1rem;
  }
  
  .logo_4b5b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .outline-red-e378 {
    max-width: 250px;
  }
}

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

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

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

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

.link-1b2e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.article-purple-f677 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-static-940d {
  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);
}

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

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

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

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

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

.hard-460f img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.hard-460f 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);
}

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

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

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

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

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

.hard-460f strong {
  font-weight: 600;
  color: var(--color-text);
}

.hard-460f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hard-460f a:hover {
  color: var(--color-primary-dark);
}

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

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

.tiny_d33a 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) {
  .accent-motion-255f {
    grid-template-columns: 1fr;
  }
  
  .progress_white_0b39 {
    font-size: 1.75rem;
  }
  
  .hard-460f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .progress_white_0b39 {
    font-size: 1.5rem;
  }
  
  .hard-460f h3 {
    font-size: 1.375rem;
  }
  
  .hard-460f h4 {
    font-size: 1.125rem;
  }
}

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

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

.secondary-pressed-db8c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.layout-full-a849 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.sidebar_medium_aa22 {
  flex-shrink: 0;
}

.wrapper-right-48e7 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.gas_cbae,
.progress_2109,
.summary-a5a3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gas_cbae thead,
.progress_2109 thead {
  background: var(--color-primary);
  color: white;
}

.gas_cbae th,
.gas_cbae td,
.progress_2109 th,
.progress_2109 td,
.summary-a5a3 th,
.summary-a5a3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gas_cbae th,
  .gas_cbae td,
  .progress_2109 th,
  .progress_2109 td,
  .summary-a5a3 th,
  .summary-a5a3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gas_cbae,
  .progress_2109,
  .summary-a5a3 {
    min-width: 600px;
  }
}

.gas_cbae th,
.progress_2109 th,
.summary-a5a3 th {
  font-weight: 600;
}

.gas_cbae tbody tr:hover,
.progress_2109 tbody tr:hover,
.summary-a5a3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.down_aa77 h4 {
  color: white;
}

.focus-inner-4a46 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.warm-1407:hover {
  text-decoration: underline;
}

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

.overlay-iron-ad26 {
  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);
}

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

.tag-hovered-cbcb {
  font-weight: 600;
  color: white;
}

.nav-0a52 {
  list-style: none;
  padding: 0;
}

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

.white-ae8e {
  color: #4caf50;
}

.focused-4ab8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.backdrop-prev-6bf3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.backdrop-prev-6bf3 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.texture-current-2997 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.wrapper-medium-9401 .panel_5788 {
  width: 100%;
  background: white;
}

.frame_bronze_7e43 .panel_5788 {
  color: #667eea;
}

.short_4130 .panel_5788 {
  color: #f5576c;
}

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

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

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

.feature-117a {
  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);
}

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

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

@media (max-width: 768px) {
  .hard-6da6 {
    padding: var(--space-md);
  }
  
  .disabled_d77a {
    padding: var(--space-md);
  }
  
  .progress-b59b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.table_05bc,
.cool_8d42,
.card-smooth-a85c,
.pattern-tall-371f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.widget-076e:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.layout_fast_78a5 .dropdown_first_b4a1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.list_7888 .dropdown_first_b4a1 {
  background: #fff3e0;
  color: var(--color-warning);
}

.texture-center-1a81 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.texture-center-1a81 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.message-07f8 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.photo-9b61 {
  margin-top: var(--space-xxl);
}

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

.black_aeb2 {
  text-align: center;
}

.summary-29ed {
  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);
}

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

.summary-29ed .tag-hovered-cbcb {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.icon-f951 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.component-pink-0541 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.block-center-52a8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.summary-2e83 {
  border: 2px solid #4caf50;
}

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

.outline-8e2d {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.surface-simple-7dee {
  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;
}

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

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

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

.hovered-9686 {
  text-align: right;
}

.hovered-9686 .bottom-3e47 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.over-79f9 {
  background: #fff3e0;
  color: #e65100;
}

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

.hidden-south-3e33 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.accent-32d8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.feature-advanced-4b42 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.lower-aa1a[aria-expanded="true"] .feature-advanced-4b42 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.soft-65c0,
.last-2d92 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.soft-65c0 h4,
.last-2d92 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.soft-65c0 ul,
.last-2d92 ul {
  list-style: none;
  padding: 0;
}

.soft-65c0 li,
.last-2d92 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-copper-c891 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.disabled-44d1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.tertiary-2db5 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tertiary-2db5 li {
  margin-bottom: var(--space-xs);
}

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

.tertiary-2db5 a:hover {
  color: white;
}

.main-9823 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.main-9823 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.main-9823 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.table-6484 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.table-6484 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.table-6484 a:hover {
  color: white;
}

.gradient-3452 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .lite_e646,
  .disabled-44d1 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.east-8881 .iron-5fc0 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.in_a14a a:hover {
  color: white;
}

.highlight-3837 {
  list-style: none;
  padding: 0;
}

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

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

.highlight-3837 a:hover {
  color: white;
}

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

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

.main-over-a26d a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.badge-9a18 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.badge-9a18 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.surface-new-79dd {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.surface-new-79dd:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gradient-3452 {
    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;
  }
  
  .accent_e3ed {
    font-size: 2rem;
  }
  
  .progress_white_0b39 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .layout-bd38,
  .accent-motion-255f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .main-303b,
  .photo_middle_8bd5,
  .large_2d9a,
  .fluid_b126,
  .form-lite-afa8,
  .light_f1d5,
  .header_middle_11f3,
  .lite_e646,
  .disabled-44d1 {
    grid-template-columns: 1fr;
  }
  
  .next-2f42 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pagination_short_1f14 {
    padding: var(--space-lg) 0;
  }
  
  .logo_9bcd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .logo_9bcd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .panel_5788 {
    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;
  }
  
  .next-2f42 {
    grid-template-columns: 1fr;
  }
  
  .panel_stone_e5e4,
  .footer_5edc,
  .focus-fast-1ccf {
    flex-direction: column;
    width: 100%;
  }
  
  .column-7113,
  .article-purple-f677,
  .panel_stone_e5e4 .panel_5788,
  .footer_5edc .panel_5788 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accent_e3ed {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .progress_white_0b39 {
    font-size: 1.375rem;
  }
  
  .east-168c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .description_gold_5f07,
  .backdrop-prev-6bf3,
  .notification-middle-a479,
  .disabled_green_dfc9,
  .advanced-466a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .container-00a9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .block-lower-7d4e {
    gap: var(--space-xs);
  }
  
  .tag-hot-c33b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .overlay-iron-ad26 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .summary-29ed {
    width: 150px;
    height: 150px;
  }
  
  .solid_6925 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .image_tall_837f,
  .breadcrumb_liquid_ebdd,
  .panel_stone_e5e4,
  .progress_small_8d35,
  .mask_huge_8668,
  .shadow_smooth_a077,
  .widget_purple_96d5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pagination_short_1f14 {
    page-break-inside: avoid;
  }
}

/* css-noise: d4b1 */
.widget-item-y8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
