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

.pro-ea4f:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.north-c33e):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. */
.north-c33e,
header,
.inner-fff4,
.selected_1809,
.heading_179e,
.disabled-copper-0d29,
.panel_dark_b04b,
.notification-c281,
.icon-under-2ba1 {
  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
   ============================================ */
.north-c33e {
  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);
}

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

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

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

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

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

.new-d723 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.tabs-inner-ff23 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.mask-easy-b62c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop_bronze_b2bc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .tabs-inner-ff23 {
    display: none;
  }
  
  .last_bc9a {
    display: flex;
  }
  
  .avatar_cb88 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .backdrop_bronze_b2bc,
  .chip_6931 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .mask-easy-b62c {
    position: relative;
  }
  
  .mask_last_8793 {
    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;
  }
  
  .photo_west_67b6[aria-expanded="true"] + .mask_last_8793 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wrapper_static_75b3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .box-27df {
    gap: 8px;
  }
  
  .backdrop_bronze_b2bc {
    display: none;
  }
  
  .chip_6931 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .new-d723 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.heading_5d4d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-green-357d {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .layout_e2e5 {
    grid-template-columns: 1fr;
  }
  
  .lite-aeac {
    font-size: 1.75rem;
  }
  
  .hard_bc54 {
    order: -1;
    max-width: 100%;
  }
  
  .border_f170 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lite-aeac {
    font-size: 1.5rem;
  }
  
  .backdrop-top-dfdb {
    font-size: 1rem;
  }
  
  .solid_6c31 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .border_f170 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel-0e26 {
  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);
}

.pagination-huge-0f83 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim_4b36 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) {
  .progress_e20a {
    grid-template-columns: 1fr;
  }
  
  .pagination-huge-0f83 {
    font-size: 1.75rem;
  }
  
  .shadow-ee98 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .pagination-huge-0f83 {
    font-size: 1.5rem;
  }
  
  .shadow-ee98 h3 {
    font-size: 1.375rem;
  }
  
  .shadow-ee98 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.banner_dirty_5850 {
  flex-shrink: 0;
}

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

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

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

.video-0d85,
.tabs-pink-0435,
.heading-6dd7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-0d85 thead,
.tabs-pink-0435 thead {
  background: var(--color-primary);
  color: white;
}

.video-0d85 th,
.video-0d85 td,
.tabs-pink-0435 th,
.tabs-pink-0435 td,
.heading-6dd7 th,
.heading-6dd7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .video-0d85 th,
  .video-0d85 td,
  .tabs-pink-0435 th,
  .tabs-pink-0435 td,
  .heading-6dd7 th,
  .heading-6dd7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .video-0d85,
  .tabs-pink-0435,
  .heading-6dd7 {
    min-width: 600px;
  }
}

.video-0d85 th,
.tabs-pink-0435 th,
.heading-6dd7 th {
  font-weight: 600;
}

.video-0d85 tbody tr:hover,
.tabs-pink-0435 tbody tr:hover,
.heading-6dd7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.focus_hot_412f h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.tabs-2468 {
  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-2468 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.backdrop-0e4f {
  font-weight: 600;
  color: white;
}

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

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

.box_fixed_cfcd {
  color: #4caf50;
}

.fresh_126d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.chip-last-ea9f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.hover-bottom-a747 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.outline-ab54 .light_01c2 {
  width: 100%;
  background: white;
}

.header_fe1d .light_01c2 {
  color: #667eea;
}

.panel-inner-adb5 .light_01c2 {
  color: #f5576c;
}

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

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

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

.background-action-38cb {
  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);
}

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

.accordion-pink-08b8 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .right_dbb8 {
    padding: var(--space-md);
  }
  
  .accordion-pink-08b8 {
    padding: var(--space-md);
  }
  
  .huge_e79d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.detail-196d,
.liquid-aac7,
.small-db5e,
.progress-dc02 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.wide-4d05 {
  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) {
  .wide-4d05 {
    font-size: 0.625rem;
  }
}

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

.active-0d8c:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.overlay-tiny-69c2 {
  border-color: var(--color-success);
}

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

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

.overlay-tiny-69c2 .media_advanced_9f45 {
  background: #e8f5e9;
  color: var(--color-success);
}

.border_3fb4 .media_advanced_9f45 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.aside-5d08 {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .video-bottom-034d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.stone_871f {
  text-align: center;
}

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

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

.popup_c4d3 .backdrop-0e4f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.description-8a50 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-2547 {
  border: 2px solid #4caf50;
}

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

.widget-upper-2857 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.pattern-bright-2210 {
  text-align: right;
}

.pattern-bright-2210 .silver-8bb6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.photo-narrow-014e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-new-67ee {
  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);
}

.label-new-67ee:hover {
  background: var(--color-bg-alt);
}

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

.label-new-67ee[aria-expanded="true"] .primary-b303 {
  transform: rotate(180deg);
}

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

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

.footer-stone-21c0 ul,
.footer-stone-21c0 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.footer-stone-21c0 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.box-79c7 {
  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);
}

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

.out_3867 {
  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_3867 {
    grid-template-columns: 1fr;
  }
}

.active-671f,
.thumbnail_upper_351c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.active-671f h4,
.thumbnail_upper_351c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.active-671f ul,
.thumbnail_upper_351c ul {
  list-style: none;
  padding: 0;
}

.active-671f li,
.thumbnail_upper_351c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.active_3e63 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.hero-6f25 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.south-1318 .thumbnail-green-357d {
  color: #4caf50;
  font-size: 0.875rem;
}

.backdrop-cd79 {
  list-style: none;
  padding: 0;
}

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

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

.backdrop-cd79 a:hover {
  color: white;
}

.huge-db81 {
  list-style: none;
  padding: 0;
}

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

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

.huge-db81 a:hover {
  color: white;
}

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

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

.shade-yellow-520f a {
  color: #4caf50;
  text-decoration: none;
}

.banner-dim-b32d {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.sort-c51a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .in_4318 {
    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;
  }
  
  .lite-aeac {
    font-size: 2rem;
  }
  
  .pagination-huge-0f83 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .layout_e2e5,
  .progress_e20a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pagination-wood-cc77,
  .outline_0044,
  .element_c3f6,
  .video-bottom-034d,
  .out_3867,
  .advanced_efd0,
  .focused-aafa,
  .sort-current-0580 {
    grid-template-columns: 1fr;
  }
  
  .label_4646 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .panel_dark_b04b {
    padding: var(--space-lg) 0;
  }
  
  .plasma_35a9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .plasma_35a9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .light_01c2 {
    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;
  }
  
  .label_4646 {
    grid-template-columns: 1fr;
  }
  
  .progress-cad3,
  .component_upper_180c,
  .chip_4c6c {
    flex-direction: column;
    width: 100%;
  }
  
  .cold-ee8e,
  .link-fd76,
  .progress-cad3 .light_01c2,
  .component_upper_180c .light_01c2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .lite-aeac {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pagination-huge-0f83 {
    font-size: 1.375rem;
  }
  
  .static-92ea {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .status_light_91ca,
  .top_d9d6,
  .badge_small_fd20,
  .section-brown-374e,
  .clean_35d7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wide-4d05 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hover_thick_0480 {
    gap: var(--space-xs);
  }
  
  .heading_5d4d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tabs-2468 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .popup_c4d3 {
    width: 150px;
    height: 150px;
  }
  
  .status-left-4348 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .north-c33e,
  .inner-fff4,
  .progress-cad3,
  .tooltip_bottom_d155,
  .notification-c281,
  .icon-under-2ba1,
  .last_bc9a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .panel_dark_b04b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a75a */
.phantom-card-a3 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
