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

.hard_0567:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.picture_4ccb,
header,
.table_hard_195b,
.action-2180,
.aside_6e89,
.sidebar-86c8,
.bronze_cf72,
.dropdown-b565,
.input-bcf3 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

.alert-prev-759b {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.card-0b79 {
  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;
}

.modal-2e60 {
  flex: 1;
}

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

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

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

.brown-a2f6.north-dc76 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma-ec23 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .modal-2e60::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .modal-2e60.outline-gold-17d6 {
    display: block;
    right: 0;
  }
  
  .breadcrumb-9465 {
    flex-direction: column;
    gap: 0;
  }
  
  .brown-a2f6 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .modal-2e60::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;
  }
  
  .modal-2e60.outline-gold-17d6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .modal-2e60 {
    display: none;
  }
  
  .thumbnail_ba49 {
    display: flex;
  }
  
  .card-0b79 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .plasma-ec23,
  .center_406a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav_new_6f85 {
    position: relative;
  }
  
  .box_7461 {
    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;
  }
  
  .carousel_plasma_91d6[aria-expanded="true"] + .box_7461 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .mini_39aa {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .image-glass-2691 {
    gap: 8px;
  }
  
  .plasma-ec23 {
    display: none;
  }
  
  .center_406a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .smooth_5ba2 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.overlay_fd41 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pressed-9d5e {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pressed-9d5e strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .soft_98cf {
    grid-template-columns: 1fr;
  }
  
  .tall-0784 {
    font-size: 1.75rem;
  }
  
  .border_top_4602 {
    order: -1;
    max-width: 100%;
  }
  
  .wood_e769 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tall-0784 {
    font-size: 1.5rem;
  }
  
  .panel-3923 {
    font-size: 1rem;
  }
  
  .overlay_fluid_0bf3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wood_e769 {
    max-width: 250px;
  }
}

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

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

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

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

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

.hidden-soft-31d0 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.hidden-soft-31d0:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out_11dd 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) {
  .outline_39e1 {
    grid-template-columns: 1fr;
  }
  
  .inner_fc12 {
    font-size: 1.75rem;
  }
  
  .feature_0c3b {
    max-width: 100%;
  }
}

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

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

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

.east-26d5 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.tall-88aa {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.selected_cab6 {
  flex-shrink: 0;
}

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

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

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

.form-thick-04a4,
.large_a3d5,
.cool-11d1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-thick-04a4 thead,
.large_a3d5 thead {
  background: var(--color-primary);
  color: white;
}

.form-thick-04a4 th,
.form-thick-04a4 td,
.large_a3d5 th,
.large_a3d5 td,
.cool-11d1 th,
.cool-11d1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .form-thick-04a4 th,
  .form-thick-04a4 td,
  .large_a3d5 th,
  .large_a3d5 td,
  .cool-11d1 th,
  .cool-11d1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .form-thick-04a4,
  .large_a3d5,
  .cool-11d1 {
    min-width: 600px;
  }
}

.form-thick-04a4 th,
.large_a3d5 th,
.cool-11d1 th {
  font-weight: 600;
}

.form-thick-04a4 tbody tr:hover,
.large_a3d5 tbody tr:hover,
.cool-11d1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.alert-dynamic-a626 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.input-center-28cf {
  font-weight: 600;
  color: white;
}

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

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

.sidebar-4367 {
  color: #4caf50;
}

.section_952f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-center-28cf {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.badge-gold-4852 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.gas_465d .accent-east-0114 {
  width: 100%;
  background: white;
}

.aside_pro_d888 .accent-east-0114 {
  color: #667eea;
}

.steel_c40c .accent-east-0114 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hover_242c {
    padding: var(--space-md);
  }
  
  .action_88dd {
    padding: var(--space-md);
  }
  
  .surface-dynamic-b288 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.tabs-dark-8332 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.notification-slow-715e,
.stale-04ed,
.sidebar_copper_3da8,
.outline-green-1c4c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.carousel-new-58bb:hover {
  background: var(--color-primary-dark);
}

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

.feature-56e8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.tiny-0dcf {
  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);
}

.clean_4504 .tiny-0dcf {
  background: #e8f5e9;
  color: var(--color-success);
}

.detail_8ea0 .tiny-0dcf {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.list-70de {
  margin-top: var(--space-xxl);
}

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

.pagination_8b73 {
  text-align: center;
}

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

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

.active-aa35 .input-center-28cf {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.slider-brown-577d {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.thumbnail-78ce p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.dropdown-soft-8ee4 {
  margin-bottom: var(--space-xl);
}

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

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

.main-pro-57a4 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-current-682d {
  text-align: right;
}

.aside-current-682d .copper_7f0b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.title-hard-f3e0 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-253a {
  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);
}

.nav-253a:hover {
  background: var(--color-bg-alt);
}

.badge-over-aa48 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.nav-253a[aria-expanded="true"] .badge-over-aa48 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-action-48eb,
.row_d5cc {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.aside-action-48eb h4,
.row_d5cc h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.aside-action-48eb ul,
.row_d5cc ul {
  list-style: none;
  padding: 0;
}

.aside-action-48eb li,
.row_d5cc li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.pagination-motion-358b {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.thick-b445 {
  font-style: italic;
}

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

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

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

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

.grid-north-24e2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

.texture-solid-172b {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.tiny-b0c2 .active_static_42e6 {
  color: #4caf50;
  font-size: 0.875rem;
}

.blue-4f13 {
  list-style: none;
  padding: 0;
}

.blue-4f13 li {
  margin-bottom: var(--space-xs);
}

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

.blue-4f13 a:hover {
  color: white;
}

.layout-05d5 {
  list-style: none;
  padding: 0;
}

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

.layout-05d5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.layout-05d5 a:hover {
  color: white;
}

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

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

.dynamic-45e6 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.status-north-40e9 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.status-north-40e9:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon_8057 {
    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;
  }
  
  .tall-0784 {
    font-size: 2rem;
  }
  
  .inner_fc12 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .soft_98cf,
  .outline_39e1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .smooth_de40,
  .tall-ee86,
  .feature-3a04,
  .new_4e15,
  .shadow-e56a,
  .out_ba28,
  .focus-over-0097,
  .in_6c5f {
    grid-template-columns: 1fr;
  }
  
  .widget-875f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bronze_cf72 {
    padding: var(--space-lg) 0;
  }
  
  .tabs_0505 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs_0505 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accent-east-0114 {
    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;
  }
  
  .widget-875f {
    grid-template-columns: 1fr;
  }
  
  .action_5a21,
  .grid-north-24e2,
  .accordion_bottom_2919 {
    flex-direction: column;
    width: 100%;
  }
  
  .stale_b0f5,
  .image_4901,
  .action_5a21 .accent-east-0114,
  .grid-north-24e2 .accent-east-0114 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tall-0784 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .inner_fc12 {
    font-size: 1.375rem;
  }
  
  .block_full_6041 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture-hot-dbc9,
  .popup_thick_5620,
  .progress-c332,
  .modal_orange_10ab,
  .full-45a6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .border-cfe7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .photo-fresh-ab8d {
    gap: var(--space-xs);
  }
  
  .overlay_fd41 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .active-1336 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .active-aa35 {
    width: 150px;
    height: 150px;
  }
  
  .purple_eef8 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture_4ccb,
  .table_hard_195b,
  .action_5a21,
  .text_1fce,
  .dropdown-b565,
  .input-bcf3,
  .thumbnail_ba49 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bronze_cf72 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: eca0 */
.promo-block-m2 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
