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

.shade_9151:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.breadcrumb_dark_7c30,
header,
.preview-focused-a080,
.item-f5eb,
.detail_d5b6,
.block-86e1,
.aside_caeb,
.container_dc87,
.description-b992 {
  max-width: none;
}

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

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

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

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

.up-87c3 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.section-thick-bc7f img {
  height: 36px;
  width: auto;
  display: block;
}

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

.fluid_f389 {
  flex: 1;
}

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

.wrapper-new-4143 {
  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);
}

.wrapper-new-4143:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.wrapper-new-4143.fn-active-ff53 {
  background: var(--color-primary);
  color: white;
}

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

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

.panel-6249 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.out_692c svg {
  flex-shrink: 0;
}

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

.slider-hovered-ac11: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);
}

.slider-hovered-ac11 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.old-4156[aria-expanded="true"] .tooltip-middle-f546:nth-child(2) {
  opacity: 0;
}

.old-4156[aria-expanded="true"] .tooltip-middle-f546:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .fluid_f389::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .fluid_f389.link-liquid-03ba {
    display: block;
    right: 0;
  }
  
  .shadow_middle_aa44 {
    flex-direction: column;
    gap: 0;
  }
  
  .wrapper-new-4143 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .fluid_f389::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;
  }
  
  .fluid_f389.link-liquid-03ba::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .fluid_f389 {
    display: none;
  }
  
  .old-4156 {
    display: flex;
  }
  
  .chip_2b5e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .out_692c,
  .slider-hovered-ac11 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .clean_b6db {
    position: relative;
  }
  
  .preview-af10 {
    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;
  }
  
  .panel-6249[aria-expanded="true"] + .preview-af10 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row_7ea5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .frame-over-e1e5 {
    gap: 8px;
  }
  
  .out_692c {
    display: none;
  }
  
  .slider-hovered-ac11 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .section-thick-bc7f img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.progress_bronze_4b54 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.header-fluid-f7ec a {
  color: var(--color-primary);
  text-decoration: none;
}

.header-fluid-f7ec a:hover {
  text-decoration: underline;
}

.outline-gold-fcc0 {
  color: var(--color-text-lighter);
}

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

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

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

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

.slider-pressed-0f62 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.wrapper-blue-00bd {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .progress_22b6 {
    grid-template-columns: 1fr;
  }
  
  .complex-5661 {
    font-size: 1.75rem;
  }
  
  .dynamic-1686 {
    order: -1;
    max-width: 100%;
  }
  
  .preview_new_8b11 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .complex-5661 {
    font-size: 1.5rem;
  }
  
  .slider-90a4 {
    font-size: 1rem;
  }
  
  .header-fluid-f7ec {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .preview_new_8b11 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.full_6cb5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

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

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

.progress-dim-3251 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.highlight-dirty-caa7 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.highlight-dirty-caa7 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);
}

.highlight-dirty-caa7 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;
}

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

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

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

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

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

.heading-copper-c94c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-c8d8 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) {
  .active_565f {
    grid-template-columns: 1fr;
  }
  
  .heading-copper-c94c {
    font-size: 1.75rem;
  }
  
  .last_8791 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .heading-copper-c94c {
    font-size: 1.5rem;
  }
  
  .last_8791 h3 {
    font-size: 1.375rem;
  }
  
  .last_8791 h4 {
    font-size: 1.125rem;
  }
}

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

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

.badge-active-484b {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.button-warm-0bd5 {
  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;
}

.cold-fad3 {
  flex-shrink: 0;
}

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

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

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

.info_ac6b,
.header-1987,
.south-b217 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info_ac6b thead,
.header-1987 thead {
  background: var(--color-primary);
  color: white;
}

.info_ac6b th,
.info_ac6b td,
.header-1987 th,
.header-1987 td,
.south-b217 th,
.south-b217 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .info_ac6b th,
  .info_ac6b td,
  .header-1987 th,
  .header-1987 td,
  .south-b217 th,
  .south-b217 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .info_ac6b,
  .header-1987,
  .south-b217 {
    min-width: 600px;
  }
}

.info_ac6b th,
.header-1987 th,
.south-b217 th {
  font-weight: 600;
}

.info_ac6b tbody tr:hover,
.header-1987 tbody tr:hover,
.south-b217 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.button_e56e h4 {
  color: white;
}

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

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

.wood-4888:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.media-action-83f0 {
  font-weight: 600;
  color: white;
}

.stale-05a6 {
  list-style: none;
  padding: 0;
}

.stale-05a6 li {
  padding: var(--space-xs) 0;
}

.image_left_fb8d {
  color: #4caf50;
}

.stone_2ec5 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-action-83f0 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow_8920 .full_6cb5 {
  width: 100%;
  background: white;
}

.item_10de .full_6cb5 {
  color: #667eea;
}

.logo_6b80 .full_6cb5 {
  color: #f5576c;
}

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

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

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

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

.info-plasma-08b9 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.content-510c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .info-plasma-08b9 {
    padding: var(--space-md);
  }
  
  .content-510c {
    padding: var(--space-md);
  }
  
  .black_58a4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.video-40b3,
.brown-ef2c,
.image-f055,
.brown_7867 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-9e16 {
  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);
}

.backdrop-4463 .link-9e16 {
  background: #e8f5e9;
  color: var(--color-success);
}

.slider_large_22ab .link-9e16 {
  background: #fff3e0;
  color: var(--color-warning);
}

.frame-huge-4fba h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.frame-huge-4fba p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.mini-8e66 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.pro-67c8 {
  text-align: center;
}

.search-pressed-7202 {
  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);
}

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

.search-pressed-7202 .media-action-83f0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.secondary-stale-38fc {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.gallery-gas-c5a0 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.slider-hot-20c4 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.chip-gas-7a58 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.in_1637 {
  text-align: right;
}

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

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

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

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

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

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

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

.input-fluid-b4a7 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.accent-selected-adfe strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

.black-418e li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.chip-bright-e104 {
  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);
}

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

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

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

.card-4c69,
.tooltip-14ab {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.card-4c69 h4,
.tooltip-14ab h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.card-4c69 ul,
.tooltip-14ab ul {
  list-style: none;
  padding: 0;
}

.card-4c69 li,
.tooltip-14ab li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.hero-9a53 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.caption-1298 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern_9cdf a:hover {
  color: white;
}

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

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

.frame-stone-bf7f a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.media_7696 a:hover {
  color: white;
}

.glass-68b8 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.modal-e871 .slider-pressed-0f62 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.clean_2fd3 a:hover {
  color: white;
}

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

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

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

.article_7ade a:hover {
  color: white;
}

.glass-68b8 {
  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);
}

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

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

.shade-yellow-c587 {
  font-size: 0.75rem;
  color: #666666;
}

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

.gradient-6b0d a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.gradient-6b0d a:hover {
  color: white;
}

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

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

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

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

@media (max-width: 768px) {
  .glass-68b8 {
    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;
  }
  
  .complex-5661 {
    font-size: 2rem;
  }
  
  .heading-copper-c94c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .progress_22b6,
  .active_565f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tag-pro-43cf,
  .frame-ae45,
  .tooltip_e88d,
  .paper-e185,
  .module-liquid-2179,
  .title_dbec,
  .wide-2d4f,
  .stone_571d,
  .fixed-b17f {
    grid-template-columns: 1fr;
  }
  
  .component-upper-6d0b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .aside_caeb {
    padding: var(--space-lg) 0;
  }
  
  .highlight-dirty-caa7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .highlight-dirty-caa7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .full_6cb5 {
    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;
  }
  
  .component-upper-6d0b {
    grid-template-columns: 1fr;
  }
  
  .dynamic_38f2,
  .module-last-e3f8,
  .icon-20db {
    flex-direction: column;
    width: 100%;
  }
  
  .full-7770,
  .progress-dim-3251,
  .dynamic_38f2 .full_6cb5,
  .module-last-e3f8 .full_6cb5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .complex-5661 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .heading-copper-c94c {
    font-size: 1.375rem;
  }
  
  .glass-a836 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .full-3d91,
  .text-c51d,
  .paragraph_lower_99d7,
  .action_d10a,
  .form_cool_e1e5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider_next_bad0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .old_de6d {
    gap: var(--space-xs);
  }
  
  .progress_bronze_4b54 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature_west_a048 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .search-pressed-7202 {
    width: 150px;
    height: 150px;
  }
  
  .black-4c34 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .breadcrumb_dark_7c30,
  .preview-focused-a080,
  .dynamic_38f2,
  .element_a1ac,
  .container_dc87,
  .description-b992,
  .old-4156 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .aside_caeb {
    page-break-inside: avoid;
  }
}

/* css-noise: d26b */
.phantom-card-p2 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
