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

.column_silver_f6d3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.shadow-upper-b441,
header,
.active-0a4d,
.complex_32e1,
.item_slow_d055,
.badge-pro-b4f6,
.module_down_e22f,
.last_241a,
.widget_7f2e {
  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
   ============================================ */
.shadow-upper-b441 {
  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);
}

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

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

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

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

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

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

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

.yellow_f95e {
  flex: 1;
}

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

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

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

.cold-c937.fn-active-0d9a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.north_a01b {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

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

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

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

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

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

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

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

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

.video_new_7b2f svg {
  flex-shrink: 0;
}

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

.stone-0b27: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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .yellow_f95e {
    display: none;
  }
  
  .gradient_2076 {
    display: flex;
  }
  
  .progress_yellow_6e9d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .video_new_7b2f,
  .stone-0b27 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pro-4790 {
    position: relative;
  }
  
  .north_a01b {
    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;
  }
  
  .hard_c014[aria-expanded="true"] + .north_a01b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gradient_prev_3ccc {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .yellow_8fdc {
    gap: 8px;
  }
  
  .video_new_7b2f {
    display: none;
  }
  
  .stone-0b27 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .iron_8918 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .stone-0b27 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .stone-0b27 svg {
    width: 14px;
    height: 14px;
  }
  
  .green-9bbb {
    gap: var(--space-sm);
  }
}

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

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

.chip-huge-fd90 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-huge-fd90 svg {
  flex-shrink: 0;
}

.chip-huge-fd90 a {
  color: var(--color-primary);
  text-decoration: none;
}

.chip-huge-fd90 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.surface-d567 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-red-3cbe {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.hero-7b18 {
  position: relative;
  text-align: center;
}

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

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

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

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

.wrapper-fast-2aab {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .frame-67ed {
    grid-template-columns: 1fr;
  }
  
  .logo_north_b15c {
    font-size: 1.75rem;
  }
  
  .new_b4af {
    order: -1;
    max-width: 100%;
  }
  
  .hero-7b18 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .logo_north_b15c {
    font-size: 1.5rem;
  }
  
  .large_f83c {
    font-size: 1rem;
  }
  
  .surface-d567 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hero-7b18 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-hard-5283 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.modal-hard-5283 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);
}

.modal-hard-5283 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;
}

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

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

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

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

.column-warm-93b7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-69dd {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.row-69dd 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) {
  .focus-e6f0 {
    grid-template-columns: 1fr;
  }
  
  .medium_6b34 {
    font-size: 1.75rem;
  }
  
  .footer_clean_bdf2 {
    max-width: 100%;
  }
}

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

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

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

.component-left-f7dc {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.progress_white_8454 {
  flex-shrink: 0;
}

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

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

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

.item-up-29d0,
.full_536a,
.item_upper_45ed {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.item-up-29d0 thead,
.full_536a thead {
  background: var(--color-primary);
  color: white;
}

.item-up-29d0 th,
.item-up-29d0 td,
.full_536a th,
.full_536a td,
.item_upper_45ed th,
.item_upper_45ed td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .item-up-29d0 th,
  .item-up-29d0 td,
  .full_536a th,
  .full_536a td,
  .item_upper_45ed th,
  .item_upper_45ed td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .item-up-29d0,
  .full_536a,
  .item_upper_45ed {
    min-width: 600px;
  }
}

.item-up-29d0 th,
.full_536a th,
.item_upper_45ed th {
  font-weight: 600;
}

.item-up-29d0 tbody tr:hover,
.full_536a tbody tr:hover,
.item_upper_45ed tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.description-right-50b8 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.narrow_8f5a h4 {
  color: white;
}

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

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

.thumbnail-7c46:last-child {
  border-bottom: none;
}

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

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

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

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

.chip-a1fc:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.background_small_ffea {
  color: #4caf50;
}

.pagination-f3d4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-fresh-4d98 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.modal-smooth-eea2 .widget-92f7 {
  width: 100%;
  background: white;
}

.heading-yellow-8671 .widget-92f7 {
  color: #667eea;
}

.section_170a .widget-92f7 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .notification_warm_5c99 {
    padding: var(--space-md);
  }
  
  .article_3165 {
    padding: var(--space-md);
  }
  
  .pagination-pressed-e709 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.fresh-e26c,
.fast-660f,
.component_430c,
.outer_5179 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-short-0f97 {
  border-color: var(--color-warning);
}

.solid-236d {
  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);
}

.out-bba9 .solid-236d {
  background: #e8f5e9;
  color: var(--color-success);
}

.feature-short-0f97 .solid-236d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.input-cold-998b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.widget-stone-88cd {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.status-3fb2 {
  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);
}

.title-a6d9 {
  text-align: center;
}

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

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

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

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

.alert-glass-7174 p {
  margin-bottom: var(--space-md);
}

.notification-hard-657a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.hidden-fast-f13d {
  margin-bottom: var(--space-xl);
}

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

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

.east-09fb {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption_6dff {
  text-align: right;
}

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

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

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

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

.surface-bronze-74e3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

.hero-d0ae {
  background: #fff3e0;
  color: #e65100;
}

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

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

.pagination-down-e7af {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.frame_orange_c56e[aria-expanded="true"] .banner_97e3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.disabled-clean-4ec4 {
  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);
}

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

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

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

.out_44fa,
.tooltip-f8af {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.out_44fa h4,
.tooltip-f8af h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.out_44fa ul,
.tooltip-f8af ul {
  list-style: none;
  padding: 0;
}

.out_44fa li,
.tooltip-f8af li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.tooltip-6dd9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.paragraph_4ffd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dynamic-e18d {
  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) */
.item_warm_eb54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.old-5807 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.old-5807 a:hover {
  color: white;
}

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

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

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

.section-bright-2b84 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.section-bright-2b84 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.section-bright-2b84 a:hover {
  color: white;
}

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

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

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

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

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

.static_a03f .grid_current_d4e3 {
  color: #4caf50;
  font-size: 0.875rem;
}

.white-17b2 {
  list-style: none;
  padding: 0;
}

.white-17b2 li {
  margin-bottom: var(--space-xs);
}

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

.white-17b2 a:hover {
  color: white;
}

.center-6025 {
  list-style: none;
  padding: 0;
}

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

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

.center-6025 a:hover {
  color: white;
}

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

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

.list-07db a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.info-fast-b31d a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.info-fast-b31d 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;
}

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

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

@media (max-width: 768px) {
  .background-8806 {
    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;
  }
  
  .logo_north_b15c {
    font-size: 2rem;
  }
  
  .medium_6b34 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .frame-67ed,
  .focus-e6f0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .breadcrumb_4ce9,
  .medium-d4ea,
  .bronze_d0cf,
  .last_8dba,
  .detail_057b,
  .primary_820d,
  .status_59f7,
  .dynamic-e18d,
  .item_warm_eb54 {
    grid-template-columns: 1fr;
  }
  
  .detail_tiny_5b5f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .module_down_e22f {
    padding: var(--space-lg) 0;
  }
  
  .modal-hard-5283 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .modal-hard-5283 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .widget-92f7 {
    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;
  }
  
  .detail_tiny_5b5f {
    grid-template-columns: 1fr;
  }
  
  .heading-red-3cbe,
  .dropdown-2efb,
  .component-0ff5 {
    flex-direction: column;
    width: 100%;
  }
  
  .menu-bca5,
  .picture_full_b5b5,
  .heading-red-3cbe .widget-92f7,
  .dropdown-2efb .widget-92f7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .logo_north_b15c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .medium_6b34 {
    font-size: 1.375rem;
  }
  
  .slow_6402 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gallery-883e,
  .background-82e3,
  .texture_action_6ff7,
  .thumbnail-medium-efae,
  .pink-11a8 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dynamic-137d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper_hot_8dab {
    gap: var(--space-xs);
  }
  
  .chip-huge-fd90 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tabs_hovered_d9a4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .banner_bb94 {
    width: 150px;
    height: 150px;
  }
  
  .clean-0234 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .shadow-upper-b441,
  .active-0a4d,
  .heading-red-3cbe,
  .small_634e,
  .last_241a,
  .widget_7f2e,
  .gradient_2076 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .module_down_e22f {
    page-break-inside: avoid;
  }
}

/* css-noise: df4f */
.phantom-card-v6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.0;
}
