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

.photo-6994:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.element_liquid_17b3,
header,
.main-up-f3a0,
.thumbnail_f98b,
.active-65d8,
.column-5ee6,
.badge-glass-9ccc,
.card_68dd,
.primary-8871 {
  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
   ============================================ */
.element_liquid_17b3 {
  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);
}

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

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

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

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

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

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

.silver-91dd {
  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;
}

.section-stale-213d {
  flex: 1;
}

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

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

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

.full_5c76.fn-active-7581 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.main-dim-0e32 {
  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;
}

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

.main-dim-0e32 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.content-bright-69dc {
  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;
}

.content-bright-69dc: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);
}

.content-bright-69dc svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.yellow-aec4[aria-expanded="true"] .dropdown-0481:nth-child(2) {
  opacity: 0;
}

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

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

  .section-stale-213d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .section-stale-213d.filter-2adc {
    display: block;
    right: 0;
  }
  
  .sidebar_60cd {
    flex-direction: column;
    gap: 0;
  }
  
  .full_5c76 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .section-stale-213d::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;
  }
  
  .section-stale-213d.filter-2adc::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .section-stale-213d {
    display: none;
  }
  
  .yellow-aec4 {
    display: flex;
  }
  
  .silver-91dd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .main-dim-0e32,
  .content-bright-69dc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .button_9883 {
    position: relative;
  }
  
  .photo_c662 {
    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;
  }
  
  .south_8373[aria-expanded="true"] + .photo_c662 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .section-8692 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .shadow_simple_a095 {
    gap: 8px;
  }
  
  .main-dim-0e32 {
    display: none;
  }
  
  .content-bright-69dc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .stone_f7e8 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .content-bright-69dc {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .content-bright-69dc svg {
    width: 14px;
    height: 14px;
  }
  
  .lite-af05 {
    gap: var(--space-sm);
  }
}

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

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

.notification-solid-10eb {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notification-solid-10eb svg {
  flex-shrink: 0;
}

.notification-solid-10eb a {
  color: var(--color-primary);
  text-decoration: none;
}

.notification-solid-10eb a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.inner-98b3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.inner-98b3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.paragraph-85e1 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .left_1d2b {
    grid-template-columns: 1fr;
  }
  
  .huge-520b {
    font-size: 1.75rem;
  }
  
  .pro-b4f9 {
    order: -1;
    max-width: 100%;
  }
  
  .hidden_3a31 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .huge-520b {
    font-size: 1.5rem;
  }
  
  .main_dee2 {
    font-size: 1rem;
  }
  
  .inner-98b3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hidden_3a31 {
    max-width: 250px;
  }
}

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

.border-blue-f6e5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.badge-glass-9ccc {
  padding: var(--space-xxl) 0;
}

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

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

.hover-center-5e39 {
  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);
}

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

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

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

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

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

.article-under-a98a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.article-under-a98a 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);
}

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

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

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

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

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

.article-under-a98a strong {
  font-weight: 600;
  color: var(--color-text);
}

.article-under-a98a a {
  color: var(--color-primary);
  text-decoration: underline;
}

.article-under-a98a a:hover {
  color: var(--color-primary-dark);
}

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

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

.fast_3e84 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) {
  .accent-west-e875 {
    grid-template-columns: 1fr;
  }
  
  .main_mini_9376 {
    font-size: 1.75rem;
  }
  
  .article-under-a98a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .main_mini_9376 {
    font-size: 1.5rem;
  }
  
  .article-under-a98a h3 {
    font-size: 1.375rem;
  }
  
  .article-under-a98a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.wrapper-bronze-b783 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.label-easy-d20c {
  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_north_98f7 {
  flex-shrink: 0;
}

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

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

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

.avatar_solid_c6c6,
.shade_fixed_c5fd,
.primary_hard_5bca {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar_solid_c6c6 thead,
.shade_fixed_c5fd thead {
  background: var(--color-primary);
  color: white;
}

.avatar_solid_c6c6 th,
.avatar_solid_c6c6 td,
.shade_fixed_c5fd th,
.shade_fixed_c5fd td,
.primary_hard_5bca th,
.primary_hard_5bca td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .avatar_solid_c6c6 th,
  .avatar_solid_c6c6 td,
  .shade_fixed_c5fd th,
  .shade_fixed_c5fd td,
  .primary_hard_5bca th,
  .primary_hard_5bca td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .avatar_solid_c6c6,
  .shade_fixed_c5fd,
  .primary_hard_5bca {
    min-width: 600px;
  }
}

.avatar_solid_c6c6 th,
.shade_fixed_c5fd th,
.primary_hard_5bca th {
  font-weight: 600;
}

.avatar_solid_c6c6 tbody tr:hover,
.shade_fixed_c5fd tbody tr:hover,
.primary_hard_5bca tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.search-f397 h4 {
  color: white;
}

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

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

.layout-5086:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.black-6d2f {
  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);
}

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

.backdrop_22c5 {
  font-weight: 600;
  color: white;
}

.sidebar-c65a {
  list-style: none;
  padding: 0;
}

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

.silver_d8c8 {
  color: #4caf50;
}

.media_gas_4352 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-north-a3a4 .focus_east_f02e {
  width: 100%;
  background: white;
}

.photo_c865 .focus_east_f02e {
  color: #667eea;
}

.header-3006 .focus_east_f02e {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .accent_97fd {
    padding: var(--space-md);
  }
  
  .center-c89a {
    padding: var(--space-md);
  }
  
  .video-ed60 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.static-be07,
.description_center_91db,
.hero_pink_da84,
.hot-8c8d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.black-e843:hover {
  background: var(--color-primary-dark);
}

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

.slider-616f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.detail-2e00 {
  border-color: var(--color-success);
}

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

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

.detail-2e00 .secondary-bcf6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.panel_73df .secondary-bcf6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.motion-5e28 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

.notification-smooth-47bd {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.column-dirty-3d26 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.pagination-8fa6 {
  margin-top: var(--space-xxl);
}

.search-last-8782 {
  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);
}

.module_narrow_05c6 {
  text-align: center;
}

.pink-880f {
  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);
}

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

.pink-880f .backdrop_22c5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.frame-light-d4ab {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.video-under-6d5b {
  text-align: right;
}

.video-under-6d5b .primary-motion-d7b7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.old-eed0 {
  background: #e3f2fd;
  color: #1565c0;
}

.dropdown-under-96b4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.narrow-698c strong {
  color: var(--color-primary);
}

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

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

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

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

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

.focus-bright-ad0b:hover {
  background: var(--color-bg-alt);
}

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

.focus-bright-ad0b[aria-expanded="true"] .gas_3f2f {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.main-down-a266 {
  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);
}

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

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

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

.dropdown_11f3,
.medium-7372 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dropdown_11f3 h4,
.medium-7372 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dropdown_11f3 ul,
.medium-7372 ul {
  list-style: none;
  padding: 0;
}

.dropdown_11f3 li,
.medium-7372 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .main-copper-895c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.narrow-2908 {
  font-style: italic;
}

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

.search-b1a3 {
  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-b1a3 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-cc94 {
  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) */
.link_thick_f4b4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.background_stale_bdf1 a:hover {
  color: white;
}

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

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

.hover_steel_a70a a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.next_bb82 a:hover {
  color: white;
}

.tabs-c5b2 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.alert_d834 .item_5ace {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.tag_mini_b228 a:hover {
  color: white;
}

.text-dark-410c {
  list-style: none;
  padding: 0;
}

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

.text-dark-410c a {
  color: #b0b0b0;
  text-decoration: none;
}

.text-dark-410c a:hover {
  color: white;
}

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

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

.main-light-c15a a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.light-fbcc:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tabs-c5b2 {
    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;
  }
  
  .huge-520b {
    font-size: 2rem;
  }
  
  .main_mini_9376 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .left_1d2b,
  .accent-west-e875 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .brown_2606,
  .middle_7e90,
  .soft_4cb7,
  .section-c369,
  .image-top-ff58,
  .main-copper-895c,
  .first_cde7,
  .pagination-cc94,
  .link_thick_f4b4 {
    grid-template-columns: 1fr;
  }
  
  .input-warm-71a8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .badge-glass-9ccc {
    padding: var(--space-lg) 0;
  }
  
  .brown_b2fd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .brown_b2fd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus_east_f02e {
    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;
  }
  
  .input-warm-71a8 {
    grid-template-columns: 1fr;
  }
  
  .pattern-8917,
  .badge-over-a625,
  .module_992a {
    flex-direction: column;
    width: 100%;
  }
  
  .full_cf1f,
  .rough-bd5a,
  .pattern-8917 .focus_east_f02e,
  .badge-over-a625 .focus_east_f02e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .huge-520b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .main_mini_9376 {
    font-size: 1.375rem;
  }
  
  .box_4d6c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .photo_cold_2efe,
  .row_8a02,
  .gradient_4e79,
  .label_up_6316,
  .widget-green-32ef {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .description-0766 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus_29c9 {
    gap: var(--space-xs);
  }
  
  .notification-solid-10eb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .black-6d2f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pink-880f {
    width: 150px;
    height: 150px;
  }
  
  .hero_top_7986 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .element_liquid_17b3,
  .main-up-f3a0,
  .pattern-8917,
  .search-b1a3,
  .card_68dd,
  .primary-8871,
  .yellow-aec4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .badge-glass-9ccc {
    page-break-inside: avoid;
  }
}

/* css-noise: 5fc7 */
.phantom-card-p7 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
