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

.south_6111:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .caption-cool-3cb0 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .caption-cool-3cb0 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.backdrop-c990):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. */
.backdrop-c990,
header,
.filter-bf6e,
.new_cb09,
.feature-d625,
.pattern_advanced_222f,
.hero-small-911f,
.popup-top-5b6f,
.status-rough-a91c {
  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
   ============================================ */
.backdrop-c990 {
  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);
}

.content-519b {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.new-8c04 {
  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;
}

.alert_outer_d754 {
  flex: 1;
}

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

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

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

.popup_over_6aa2.button-c62f {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.first_d09e svg {
  flex-shrink: 0;
}

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

.slow-4e82: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);
}

.slow-4e82 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .alert_outer_d754 {
    display: none;
  }
  
  .info_top_67eb {
    display: flex;
  }
  
  .new-8c04 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .first_d09e,
  .slow-4e82 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .medium_09d5 {
    position: relative;
  }
  
  .motion-1366 {
    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;
  }
  
  .dropdown_1f10[aria-expanded="true"] + .motion-1366 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hot_5b25 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .large_715f {
    gap: 8px;
  }
  
  .first_d09e {
    display: none;
  }
  
  .slow-4e82 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .huge_03ff img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.tabs-e668 svg {
  flex-shrink: 0;
}

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

.tabs-e668 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.liquid-07dc a {
  color: var(--color-primary);
  text-decoration: none;
}

.liquid-07dc a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-left-fa75 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-orange-54be {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .detail-silver-67cf {
    grid-template-columns: 1fr;
  }
  
  .pink_a0c5 {
    font-size: 1.75rem;
  }
  
  .button-left-fa75 {
    order: -1;
    max-width: 100%;
  }
  
  .link-orange-54be {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pink_a0c5 {
    font-size: 1.5rem;
  }
  
  .liquid-1788 {
    font-size: 1rem;
  }
  
  .liquid-07dc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .link-orange-54be {
    max-width: 250px;
  }
}

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

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

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

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

.frame-new-d12e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.hero-small-911f {
  padding: var(--space-xxl) 0;
}

.status-96fd {
  background: var(--color-bg-section);
}

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

.alert-short-53f9 {
  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);
}

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

.main-plasma-366e {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.small-7b0e img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

.small-7b0e strong {
  font-weight: 600;
  color: var(--color-text);
}

.small-7b0e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.small-7b0e a:hover {
  color: var(--color-primary-dark);
}

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

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

.primary_stone_b084 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) {
  .green_f6e1 {
    grid-template-columns: 1fr;
  }
  
  .button-cold-b8a4 {
    font-size: 1.75rem;
  }
  
  .small-7b0e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .button-cold-b8a4 {
    font-size: 1.5rem;
  }
  
  .small-7b0e h3 {
    font-size: 1.375rem;
  }
  
  .small-7b0e h4 {
    font-size: 1.125rem;
  }
}

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

.backdrop-glass-de07 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.widget-6ee2 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.label_5060 {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .south-f5f8 {
    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_liquid_10fc,
.hard_e818,
.caption-04a5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video_liquid_10fc thead,
.hard_e818 thead {
  background: var(--color-primary);
  color: white;
}

.video_liquid_10fc th,
.video_liquid_10fc td,
.hard_e818 th,
.hard_e818 td,
.caption-04a5 th,
.caption-04a5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .video_liquid_10fc th,
  .video_liquid_10fc td,
  .hard_e818 th,
  .hard_e818 td,
  .caption-04a5 th,
  .caption-04a5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .video_liquid_10fc,
  .hard_e818,
  .caption-04a5 {
    min-width: 600px;
  }
}

.video_liquid_10fc th,
.hard_e818 th,
.caption-04a5 th {
  font-weight: 600;
}

.video_liquid_10fc tbody tr:hover,
.hard_e818 tbody tr:hover,
.caption-04a5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tooltip-97e7 h4 {
  color: white;
}

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

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

.status-f7e6:last-child {
  border-bottom: none;
}

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

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

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

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

.tabs-b6cc:hover {
  text-decoration: underline;
}

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

.summary-east-1fce {
  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);
}

.summary-east-1fce span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.element-paper-8eac {
  font-weight: 600;
  color: white;
}

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

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

.wide_1683 {
  color: #4caf50;
}

.badge_d9b8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-paper-8eac {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.link-600f {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.highlight-upper-aae1 .module_0878 {
  width: 100%;
  background: white;
}

.up_257b .module_0878 {
  color: #667eea;
}

.article_fe07 .module_0878 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .picture_4e60 {
    padding: var(--space-md);
  }
  
  .focus-1938 {
    padding: var(--space-md);
  }
  
  .prev-7882 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.sidebar-c532,
.nav_blue_a0eb,
.liquid-d14b,
.info_9340 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.container-bright-2958:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.row_advanced_4a33 .progress-3533 {
  background: #e8f5e9;
  color: var(--color-success);
}

.border_full_58f4 .progress-3533 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.summary-3ed6 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.grid_5a4e {
  text-align: center;
}

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

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

.footer_plasma_61bb .element-paper-8eac {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.main-easy-f673 p {
  margin-bottom: var(--space-md);
}

.table-easy-73b2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.feature-9d81 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.notification-inner-017e {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.backdrop_east_1f4c {
  text-align: right;
}

.backdrop_east_1f4c .up-9de8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.secondary-7a39 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.active-5939 {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-8b54 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.green-376f {
  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);
}

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

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

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

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

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

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

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

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

.wrapper-brown-37c1 {
  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);
}

.wrapper-brown-37c1:hover {
  background: var(--color-bg-alt);
}

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

.wrapper-brown-37c1[aria-expanded="true"] .article_advanced_d3cc {
  transform: rotate(180deg);
}

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

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

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

.item-pressed-b242 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.center_c09e,
.gallery-94d7 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.center_c09e h4,
.gallery-94d7 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.center_c09e ul,
.gallery-94d7 ul {
  list-style: none;
  padding: 0;
}

.center_c09e li,
.gallery-94d7 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

.chip-cool-2a96 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

.mask-warm-8105 {
  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);
}

.right_3b0a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.card-bright-21a0 {
  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);
}

.card-bright-21a0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.card-bright-21a0 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.accordion-ef7b .footer-ff6f {
  color: #4caf50;
  font-size: 0.875rem;
}

.tag-dirty-d5e5 {
  list-style: none;
  padding: 0;
}

.tag-dirty-d5e5 li {
  margin-bottom: var(--space-xs);
}

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

.tag-dirty-d5e5 a:hover {
  color: white;
}

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

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

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

.surface_thick_dae8 a:hover {
  color: white;
}

.status-small-db00 {
  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);
}

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

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

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

.notification-black-12a1 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

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

.iron-5fcf:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .status-small-db00 {
    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;
  }
  
  .pink_a0c5 {
    font-size: 2rem;
  }
  
  .button-cold-b8a4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .detail-silver-67cf,
  .green_f6e1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .alert-active-bf5d,
  .current_d054,
  .text-5a41,
  .list_left_6392,
  .notification_tiny_3d23,
  .module_aa37,
  .grid-d292,
  .outline_short_b52d {
    grid-template-columns: 1fr;
  }
  
  .dark_5d93 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero-small-911f {
    padding: var(--space-lg) 0;
  }
  
  .slider_8dc0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .slider_8dc0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .module_0878 {
    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;
  }
  
  .dark_5d93 {
    grid-template-columns: 1fr;
  }
  
  .link_3b9e,
  .tag_ae76,
  .item-iron-7b64 {
    flex-direction: column;
    width: 100%;
  }
  
  .footer_silver_b289,
  .menu_medium_756c,
  .link_3b9e .module_0878,
  .tag_ae76 .module_0878 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pink_a0c5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .button-cold-b8a4 {
    font-size: 1.375rem;
  }
  
  .primary-narrow-99a3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort_bottom_b0f9,
  .first-94a3,
  .photo-short-ce70,
  .current_8b02,
  .short-005c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .purple-f15d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .info_04d3 {
    gap: var(--space-xs);
  }
  
  .tabs-e668 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .summary-east-1fce {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_plasma_61bb {
    width: 150px;
    height: 150px;
  }
  
  .up-729c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .backdrop-c990,
  .filter-bf6e,
  .link_3b9e,
  .grid_pressed_0040,
  .popup-top-5b6f,
  .status-rough-a91c,
  .info_top_67eb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-small-911f {
    page-break-inside: avoid;
  }
}

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

/* css-noise: cee8 */
.shadow-element-b5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
