/* ============================================
   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)
   ============================================ */
.texture_dim_7cc6 {
  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;
}

.texture_dim_7cc6:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.small_19e8 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .small_19e8 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .small_19e8 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.article-large-9d2c):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.article-large-9d2c,
header,
.filter-e6ac,
.smooth-e200,
.logo-active-0401,
.shadow-a56d,
.message_mini_b42f,
.title-b805,
.form_564e {
  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
   ============================================ */
.article-large-9d2c {
  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);
}

.tag-6bae {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.article-large-9d2c.main-black-a703 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.icon-af88 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.summary_530d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.tertiary-purple-cee3 img {
  height: 36px;
  width: auto;
  display: block;
}

.widget_fixed_7bb6 {
  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;
}

.light_d2fd {
  flex: 1;
}

.component_c9f9 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.hover_brown_913a {
  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);
}

.hover_brown_913a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hover_brown_913a.black_d619 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.glass_24b6 {
  position: relative;
}

.tag_glass_6cf6 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.tag_glass_6cf6 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.glass_24b6:hover .tag_glass_6cf6 svg,
.tag_glass_6cf6[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accent_32d4 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.glass_24b6:hover .accent_32d4 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.accent_32d4::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.bronze-5327 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.bronze-5327:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.bronze-5327[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.text-d7ed {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.bright-9ef1 {
  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;
}

.bright-9ef1:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.bright-9ef1 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.short-7a33 {
  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;
}

.short-7a33: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);
}

.short-7a33 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.notification-out-28a9 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.search-pink-d586 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.notification-out-28a9[aria-expanded="true"] .search-pink-d586:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.notification-out-28a9[aria-expanded="true"] .search-pink-d586:nth-child(2) {
  opacity: 0;
}

.notification-out-28a9[aria-expanded="true"] .search-pink-d586:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .light_d2fd {
    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 */
  }

  .light_d2fd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .light_d2fd.row-98ae {
    display: block;
    right: 0;
  }
  
  .component_c9f9 {
    flex-direction: column;
    gap: 0;
  }
  
  .hover_brown_913a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .light_d2fd::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;
  }
  
  .light_d2fd.row-98ae::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .light_d2fd {
    display: none;
  }
  
  .notification-out-28a9 {
    display: flex;
  }
  
  .widget_fixed_7bb6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .bright-9ef1,
  .short-7a33 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .glass_24b6 {
    position: relative;
  }
  
  .accent_32d4 {
    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;
  }
  
  .tag_glass_6cf6[aria-expanded="true"] + .accent_32d4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .bronze-5327 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .text-d7ed {
    gap: 8px;
  }
  
  .bright-9ef1 {
    display: none;
  }
  
  .short-7a33 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tertiary-purple-cee3 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .short-7a33 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .short-7a33 svg {
    width: 14px;
    height: 14px;
  }
  
  .icon-af88 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.filter-e6ac {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.left_4630 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.column_wide_7b5a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.column_wide_7b5a svg {
  flex-shrink: 0;
}

.column_wide_7b5a a {
  color: var(--color-primary);
  text-decoration: none;
}

.column_wide_7b5a a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .left_4630 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.smooth-e200 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.active_9f6c {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .active_9f6c {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.hero_6632 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.hero_6632 a {
  color: var(--color-primary);
  text-decoration: none;
}

.hero_6632 a:hover {
  text-decoration: underline;
}

.image-f919 {
  color: var(--color-text-lighter);
}

.wrapper_22e9 {
  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) {
  .wrapper_22e9 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .wrapper_22e9 {
    font-size: 1.5rem;
  }
}

.simple-0d14 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.medium-bd51 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .medium-bd51 {
    grid-template-columns: 1fr;
  }
}

.aside_large_85ba {
  display: flex;
  gap: var(--space-sm);
}

.media-short-3f45 {
  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;
}

.gallery-in-2b27 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-in-2b27 strong {
  font-weight: 600;
  color: var(--color-text);
}

.gallery-in-2b27 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.banner-f42c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.thick_1cd3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row_f621 {
  position: relative;
  text-align: center;
}

.row_f621 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.wrapper-a357 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.table-3a64 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.pagination_huge_f1d4 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.status_blue_950f {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.table-9692 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.shadow-07a7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .active_9f6c {
    grid-template-columns: 1fr;
  }
  
  .wrapper_22e9 {
    font-size: 1.75rem;
  }
  
  .thick_1cd3 {
    order: -1;
    max-width: 100%;
  }
  
  .row_f621 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wrapper_22e9 {
    font-size: 1.5rem;
  }
  
  .simple-0d14 {
    font-size: 1rem;
  }
  
  .hero_6632 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .row_f621 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.list-6ebf {
  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;
}

.title-5b31 {
  background: var(--color-primary);
  color: white;
}

.title-5b31:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.slider-0d0d {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.slider-0d0d:hover {
  background: var(--color-primary);
  color: white;
}

.photo_active_8a2c {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.photo_active_8a2c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.paragraph-hot-5b9c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.card_thick_c26f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.logo-active-0401 {
  padding: var(--space-xl) 0;
  background: white;
}

.element-basic-f0d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.hidden-a0de {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.hidden-a0de:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.grid-purple-e161 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.modal_8295 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.frame_539f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.shadow-a56d {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.bronze-48d8 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.down-f08e {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.caption-e74a {
  list-style: none;
  counter-reset: toc-counter;
}

.caption-e74a li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.caption-e74a 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);
}

.caption-e74a 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;
}

.caption-e74a li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.message_mini_b42f {
  padding: var(--space-xxl) 0;
}

.paragraph-1615 {
  background: var(--color-bg-section);
}

.summary_liquid_04e2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.action-aa17 {
  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);
}

.shade_hovered_6ea0 {
  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);
}

.tabs_narrow_ef07 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.notification_fast_7ee8 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .notification_fast_7ee8 {
    grid-template-columns: 1fr 300px;
  }
}

.short-6f3f {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.short-6f3f img {
  max-width: 100%;
  height: auto;
  display: block;
}

.short-6f3f pre,
.short-6f3f code {
  overflow-x: auto;
  max-width: 100%;
}

.short-6f3f 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);
}

.short-6f3f h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.short-6f3f h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.short-6f3f p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.short-6f3f ul,
.short-6f3f ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.short-6f3f li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.short-6f3f strong {
  font-weight: 600;
  color: var(--color-text);
}

.short-6f3f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.short-6f3f a:hover {
  color: var(--color-primary-dark);
}

.tabs_fe28 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.tabs_fe28 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.tabs_fe28 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) {
  .notification_fast_7ee8 {
    grid-template-columns: 1fr;
  }
  
  .shade_hovered_6ea0 {
    font-size: 1.75rem;
  }
  
  .short-6f3f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shade_hovered_6ea0 {
    font-size: 1.5rem;
  }
  
  .short-6f3f h3 {
    font-size: 1.375rem;
  }
  
  .short-6f3f h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.input-3941 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.full_5dc3 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.popup-556a {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.status_1054 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.border_last_d36d strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.banner-outer-d506 {
  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;
}

.badge-5235 {
  flex-shrink: 0;
}

.tabs_91f8 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.outline-8906 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .outline-8906 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.fixed-994c,
.tooltip_8afa,
.tertiary-middle-e8e1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fixed-994c thead,
.tooltip_8afa thead {
  background: var(--color-primary);
  color: white;
}

.fixed-994c th,
.fixed-994c td,
.tooltip_8afa th,
.tooltip_8afa td,
.tertiary-middle-e8e1 th,
.tertiary-middle-e8e1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .fixed-994c th,
  .fixed-994c td,
  .tooltip_8afa th,
  .tooltip_8afa td,
  .tertiary-middle-e8e1 th,
  .tertiary-middle-e8e1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .fixed-994c,
  .tooltip_8afa,
  .tertiary-middle-e8e1 {
    min-width: 600px;
  }
}

.fixed-994c th,
.tooltip_8afa th,
.tertiary-middle-e8e1 th {
  font-weight: 600;
}

.fixed-994c tbody tr:hover,
.tooltip_8afa tbody tr:hover,
.tertiary-middle-e8e1 tbody tr:hover {
  background: var(--color-bg-alt);
}

.mini_065b {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.message_light_a394 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.panel-ebc6 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.panel-ebc6 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.block_inner_17e8 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.block_inner_17e8 h4 {
  color: white;
}

.white-dd88 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.summary-acec {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.summary-acec:last-child {
  border-bottom: none;
}

.summary-acec dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.summary-acec dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.glass_5012 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.wrapper_hard_053f {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.wrapper_hard_053f:hover {
  text-decoration: underline;
}

.input_5675 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.copper-bfb3 {
  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);
}

.copper-bfb3 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.item-1ff6 {
  font-weight: 600;
  color: white;
}

.cool-8508 {
  list-style: none;
  padding: 0;
}

.cool-8508 li {
  padding: var(--space-xs) 0;
}

.dirty-ee4f {
  color: #4caf50;
}

.form-active-bb2c {
  color: #ff9800;
}

.breadcrumb-blue-b043 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card-last-51a4 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.search_2e55 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.next-dfd3 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.cold-3560 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.slider_7c17 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.sidebar_iron_e968 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .sidebar_iron_e968 {
    grid-template-columns: 1fr;
  }
}

.tabs-e294 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.tabs-e294:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hidden_stone_c66a {
  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;
}

.tabs-e294 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.tabs-e294 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.sort_warm_3110 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.item-1ff6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.shadow-silver-b0d4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.tiny-bb85 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.tiny-bb85 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.header-3ddf {
  max-width: 900px;
  margin: 0 auto;
}

.block-b62c {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.row-pink-29d2 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .row-pink-29d2 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.feature_a763 {
  margin-top: var(--space-xxl);
}

.feature_a763 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.down_4d5d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .down_4d5d {
    grid-template-columns: 1fr;
  }
}

.iron-89e0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.action-dc4a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.dim-96fa {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.iron-89e0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.iron-89e0 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.iron-89e0 li {
  padding: var(--space-xs) 0;
  color: white;
}

.iron-89e0 .list-6ebf {
  width: 100%;
  background: white;
}

.action-dc4a .list-6ebf {
  color: #667eea;
}

.dim-96fa .list-6ebf {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.notification-2172 {
  max-width: 900px;
  margin: 0 auto;
}

.text_fedd {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.chip-0ebf {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.slider-active-9a01 {
  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);
}

.chip-0ebf h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.fixed_76da {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .chip-0ebf {
    padding: var(--space-md);
  }
  
  .fixed_76da {
    padding: var(--space-md);
  }
  
  .accordion-pink-13b6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.small_1590 ol,
.small_1590 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.small_1590 li {
  margin-bottom: var(--space-sm);
}

.small_1590 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.shade_green_5af0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.list_ff5c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.accordion-pink-13b6 {
  margin-top: var(--space-lg);
  text-align: center;
}

.accordion-pink-13b6 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.section-8e10,
.layout-a067,
.paragraph-static-dd16,
.content_smooth_2d50 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.element-059e {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.wood_2b6e {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.black_6d5e {
  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) {
  .black_6d5e {
    font-size: 0.625rem;
  }
}

.east-ba72 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.east-ba72:hover {
  background: var(--color-primary-dark);
}

.upper-a11b {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.upper-a11b h4 {
  margin-bottom: var(--space-md);
}

.thumbnail-top-af6a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.wide-2f98 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.container-bronze-9b33 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .container-bronze-9b33 {
    grid-template-columns: 1fr;
  }
}

.header-stale-f0e9 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.tooltip_34d9 {
  border-color: var(--color-success);
}

.tertiary-hovered-ad8c {
  border-color: var(--color-warning);
}

.background-f915 {
  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);
}

.tooltip_34d9 .background-f915 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tertiary-hovered-ad8c .background-f915 {
  background: #fff3e0;
  color: var(--color-warning);
}

.header-stale-f0e9 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.header-stale-f0e9 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.simple_6909 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.large-9bcb {
  margin: var(--space-xxl) 0;
}

.large-9bcb h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.large-9bcb > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.container-dark-5535 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .container-dark-5535 {
    grid-template-columns: 1fr;
  }
}

.tertiary-cce4 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tertiary-cce4 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.tabs_small_590e {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.tabs_small_590e input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.huge_4abd {
  margin-top: var(--space-xxl);
}

.filter_east_075f {
  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);
}

.photo_24e5 {
  text-align: center;
}

.light-e4db {
  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);
}

.static_e6e1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.light-e4db .item-1ff6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.row-1fae {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.outline-ed02 p {
  margin-bottom: var(--space-md);
}

.orange-191b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .filter_east_075f {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.up-81e0 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.menu_red_e175 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.row-under-e3a5 {
  margin-bottom: var(--space-xl);
}

.purple_32a2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.dark-94c4 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.progress_9d4c {
  color: var(--color-text-light);
}

.accordion_smooth_b6d3 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-active-dfe2 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.chip-0e6c {
  font-weight: 600;
  color: var(--color-text);
}

.mask_first_f85d {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.dirty_0bd1 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.grid_05b0 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.summary-slow-ed4d {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.overlay-hard-8b4e {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.gold_4a9b {
  border: 2px solid #4caf50;
}

.nav_new_c0ff {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.summary-64da {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.text_glass_6f00 {
  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;
}

.container-narrow-d4a1 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.link-cf3b {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.border_smooth_1969 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.gradient-4174 {
  text-align: right;
}

.gradient-4174 .paper-1cd4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.dim_32cf {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.main_hard_7e0d h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.main_hard_7e0d p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.medium_3e1f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.preview-plasma-3698 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hidden-2d44 {
  background: #e8f5e9;
  color: #2e7d32;
}

.fluid_cc4f {
  background: #e3f2fd;
  color: #1565c0;
}

.thumbnail_light_8c3a {
  background: #fff3e0;
  color: #e65100;
}

.item-middle-74bf {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.item-middle-74bf span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.plasma-8525 {
  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);
}

.plasma-8525:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.stale-b86c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.stale_f6f4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.stale_f6f4 strong {
  color: var(--color-primary);
}

.tooltip-cd63 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hover-glass-286b {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.first-eebd {
  max-width: 900px;
  margin: 0 auto;
}

.pattern_4a45 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.notification_huge_4df8 {
  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);
}

.notification_huge_4df8:hover {
  background: var(--color-bg-alt);
}

.layout_ee6c {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.notification_huge_4df8[aria-expanded="true"] .layout_ee6c {
  transform: rotate(180deg);
}

.info-lite-fdd3 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.info-lite-fdd3 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.info-lite-fdd3 ul,
.info-lite-fdd3 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.info-lite-fdd3 li {
  margin-bottom: var(--space-xs);
}

.glass_1e57 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.wrapper-center-9ef4 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.glass_1e57 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.selected_9a16 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.image_north_ce21 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.avatar-bd99 {
  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);
}

.title_e68a {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.paragraph-fluid-a281 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .paragraph-fluid-a281 {
    grid-template-columns: 1fr;
  }
}

.pink_04f8,
.tabs_be7e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pink_04f8 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.tabs_be7e {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.pink_04f8 h4,
.tabs_be7e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pink_04f8 ul,
.tabs_be7e ul {
  list-style: none;
  padding: 0;
}

.pink_04f8 li,
.tabs_be7e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.tertiary_fluid_0932 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .tertiary_fluid_0932 {
    grid-template-columns: 1fr;
  }
}

.section-534b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.badge-275e {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.search-902e {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.section-534b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.section-534b ul {
  list-style: none;
  padding: 0;
}

.section-534b li {
  padding: var(--space-xs) 0;
  color: white;
}

.video-medium-4d5e {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.video-medium-4d5e h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.video-medium-4d5e p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.image-94f2 {
  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);
}

.breadcrumb-under-343b {
  font-style: italic;
}

.search_in_1a22 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.search-out-4827 {
  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;
}

.search-out-4827 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.search-out-4827 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.logo_left_652d {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.title-b805 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.tiny_c637 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.banner_003f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .banner_003f {
    grid-template-columns: 1fr;
  }
}

.dirty-54f7 {
  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);
}

.dirty-54f7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.badge-first-d40a {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.dirty-54f7 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.dirty-54f7 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.form_564e {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.pro_a56b {
  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) */
.footer-112c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.alert-west-c244 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.alert-west-c244 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.large-c6f2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.large-c6f2 li {
  margin-bottom: var(--space-xs);
}

.large-c6f2 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.large-c6f2 a:hover {
  color: white;
}

.rough-ea72 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.rough-ea72 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);
}

.rough-ea72 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.preview-dirty-381d {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.preview-dirty-381d a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.preview-dirty-381d a:hover {
  color: white;
}

.filter_fixed_ea5f > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .pro_a56b,
  .footer-112c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.copper_6c7f h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.tabs-cold-871c p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-out-291e {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.content-out-291e .aside_large_85ba {
  color: #4caf50;
  font-size: 0.875rem;
}

.action-a8f7 {
  list-style: none;
  padding: 0;
}

.action-a8f7 li {
  margin-bottom: var(--space-xs);
}

.action-a8f7 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.action-a8f7 a:hover {
  color: white;
}

.full-991c {
  list-style: none;
  padding: 0;
}

.full-991c li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.full-991c a {
  color: #b0b0b0;
  text-decoration: none;
}

.full-991c a:hover {
  color: white;
}

.filter_fixed_ea5f {
  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);
}

.wrapper_out_a92c p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.wrapper_out_a92c a {
  color: #4caf50;
  text-decoration: none;
}

.message_upper_4210 {
  font-size: 0.75rem;
  color: #666666;
}

.link-full-1f01 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.link-full-1f01 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.link-full-1f01 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;
}

.form-922d {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.form-922d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .filter_fixed_ea5f {
    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;
  }
  
  .wrapper_22e9 {
    font-size: 2rem;
  }
  
  .shade_hovered_6ea0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .active_9f6c,
  .notification_fast_7ee8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sidebar_iron_e968,
  .container-bronze-9b33,
  .down_4d5d,
  .container-dark-5535,
  .paragraph-fluid-a281,
  .tertiary_fluid_0932,
  .banner_003f,
  .pro_a56b,
  .footer-112c {
    grid-template-columns: 1fr;
  }
  
  .element-basic-f0d5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .message_mini_b42f {
    padding: var(--space-lg) 0;
  }
  
  .caption-e74a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .caption-e74a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .list-6ebf {
    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;
  }
  
  .element-basic-f0d5 {
    grid-template-columns: 1fr;
  }
  
  .banner-f42c,
  .logo_left_652d,
  .thumbnail-top-af6a {
    flex-direction: column;
    width: 100%;
  }
  
  .paragraph-hot-5b9c,
  .card_thick_c26f,
  .banner-f42c .list-6ebf,
  .logo_left_652d .list-6ebf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wrapper_22e9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .shade_hovered_6ea0 {
    font-size: 1.375rem;
  }
  
  .grid-purple-e161 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hidden-a0de,
  .tabs-e294,
  .panel-ebc6,
  .overlay-hard-8b4e,
  .text_fedd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .black_6d5e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .left_4630 {
    gap: var(--space-xs);
  }
  
  .column_wide_7b5a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .copper-bfb3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .light-e4db {
    width: 150px;
    height: 150px;
  }
  
  .static_e6e1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .article-large-9d2c,
  .filter-e6ac,
  .banner-f42c,
  .search-out-4827,
  .title-b805,
  .form_564e,
  .notification-out-28a9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .message_mini_b42f {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.paragraph-focused-5f9e {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: ee23 */
.ghost-box-j2 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
