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

.media_narrow_bbf8:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.surface_428f,
header,
.north_cac9,
.filter_over_5c82,
.short-7900,
.pagination_paper_f205,
.surface_556c,
.breadcrumb-cool-bdcf,
.nav_purple_c3e8 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

.button-silver-0ba9 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.block_hard_5e4a {
  flex: 1;
}

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

.dark-6e86 {
  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);
}

.dark-6e86:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dark-6e86.border_soft_c2d9 {
  background: var(--color-primary);
  color: white;
}

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

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

.primary-purple-da28 svg {
  transition: transform 0.2s ease;
}

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

.lower-643f {
  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;
}

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

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

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

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

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

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

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

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

.alert_6d30 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .block_hard_5e4a::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .block_hard_5e4a.chip-fixed-d05e {
    display: block;
    right: 0;
  }
  
  .highlight-active-ea02 {
    flex-direction: column;
    gap: 0;
  }
  
  .dark-6e86 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .block_hard_5e4a::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;
  }
  
  .block_hard_5e4a.chip-fixed-d05e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .block_hard_5e4a {
    display: none;
  }
  
  .widget_597e {
    display: flex;
  }
  
  .dirty_d92f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .alert_6d30,
  .copper_8cdb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .lower_c700 {
    position: relative;
  }
  
  .lower-643f {
    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;
  }
  
  .primary-purple-da28[aria-expanded="true"] + .lower-643f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tertiary_20be {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .carousel-4985 {
    gap: 8px;
  }
  
  .alert_6d30 {
    display: none;
  }
  
  .copper_8cdb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dropdown_rough_742e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.component_b805 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.focus-hovered-a8d1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.focus-hovered-a8d1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-8fd2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.last-252e {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .card_6891 {
    grid-template-columns: 1fr;
  }
  
  .logo-tiny-d9b0 {
    font-size: 1.75rem;
  }
  
  .last-252e {
    order: -1;
    max-width: 100%;
  }
  
  .right_c60a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .logo-tiny-d9b0 {
    font-size: 1.5rem;
  }
  
  .menu_fresh_ad89 {
    font-size: 1rem;
  }
  
  .focus-hovered-a8d1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .right_c60a {
    max-width: 250px;
  }
}

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

.icon-slow-f0cb {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-small-2ce5 {
  list-style: none;
  counter-reset: toc-counter;
}

.notification-small-2ce5 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.notification-small-2ce5 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);
}

.notification-small-2ce5 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;
}

.notification-small-2ce5 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-dirty-e024 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.element-dirty-e024 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) {
  .primary_06bc {
    grid-template-columns: 1fr;
  }
  
  .focus-0876 {
    font-size: 1.75rem;
  }
  
  .link_664c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .focus-0876 {
    font-size: 1.5rem;
  }
  
  .link_664c h3 {
    font-size: 1.375rem;
  }
  
  .link_664c h4 {
    font-size: 1.125rem;
  }
}

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

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

.breadcrumb-679c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.progress_1f14 {
  flex-shrink: 0;
}

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

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

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

.media-d459,
.left_f4b3,
.logo_eacb {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-d459 thead,
.left_f4b3 thead {
  background: var(--color-primary);
  color: white;
}

.media-d459 th,
.media-d459 td,
.left_f4b3 th,
.left_f4b3 td,
.logo_eacb th,
.logo_eacb td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

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

.media-d459 th,
.left_f4b3 th,
.logo_eacb th {
  font-weight: 600;
}

.media-d459 tbody tr:hover,
.left_f4b3 tbody tr:hover,
.logo_eacb tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.label-c2f7 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.fresh-9be2 {
  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);
}

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

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

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

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

.tooltip_fbed {
  color: #4caf50;
}

.article_0dfd {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.chip-66ce {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border_c2b1 .plasma-5ce8 {
  width: 100%;
  background: white;
}

.sidebar-23f5 .plasma-5ce8 {
  color: #667eea;
}

.aside-f135 .plasma-5ce8 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .red_1f3e {
    padding: var(--space-md);
  }
  
  .widget_active_402d {
    padding: var(--space-md);
  }
  
  .image_c246 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.photo-soft-303d ol,
.photo-soft-303d ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.photo-soft-303d li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.pattern-9b73,
.upper_d8df,
.content-basic-9e9e,
.liquid-0348 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.outline-tiny-c647:hover {
  background: var(--color-primary-dark);
}

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

.active-16a1 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.liquid-2e04 {
  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);
}

.green_ecf0 .liquid-2e04 {
  background: #e8f5e9;
  color: var(--color-success);
}

.avatar-fdf7 .liquid-2e04 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-brown-5ab3 {
  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);
}

.next-1981 {
  text-align: center;
}

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

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

.aside-c125 .surface_d0ff {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.large-5ac2 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.title-short-be06 {
  border: 2px solid #4caf50;
}

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

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

.icon-47e3 {
  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;
}

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

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

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

.video_right_11a3 {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny-3f81 {
  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);
}

.tiny-3f81:hover {
  background: var(--color-bg-alt);
}

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

.tiny-3f81[aria-expanded="true"] .wood_96e7 {
  transform: rotate(180deg);
}

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

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

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

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

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

.container-wood-5fb7 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

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

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

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

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

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

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

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

.list-light-e6c2,
.panel_ef5b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.list-light-e6c2 h4,
.panel_ef5b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.list-light-e6c2 ul,
.panel_ef5b ul {
  list-style: none;
  padding: 0;
}

.list-light-e6c2 li,
.panel_ef5b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.surface_fresh_d1de {
  font-style: italic;
}

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

.tooltip_6743 {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-dark-8017 .backdrop_67a7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.fixed-7c2e {
  list-style: none;
  padding: 0;
}

.fixed-7c2e li {
  margin-bottom: var(--space-xs);
}

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

.fixed-7c2e a:hover {
  color: white;
}

.icon-71cf {
  list-style: none;
  padding: 0;
}

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

.icon-71cf a {
  color: #b0b0b0;
  text-decoration: none;
}

.icon-71cf a:hover {
  color: white;
}

.green-1cab {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .green-1cab {
    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;
  }
  
  .logo-tiny-d9b0 {
    font-size: 2rem;
  }
  
  .focus-0876 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .card_6891,
  .primary_06bc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search_5098,
  .message_2b65,
  .focused_698a,
  .backdrop_advanced_1d5f,
  .paper_eb02,
  .layout_prev_8fd9,
  .form-selected-b671,
  .tabs-5a88 {
    grid-template-columns: 1fr;
  }
  
  .link_next_252b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .surface_556c {
    padding: var(--space-lg) 0;
  }
  
  .notification-small-2ce5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .notification-small-2ce5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .plasma-5ce8 {
    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;
  }
  
  .link_next_252b {
    grid-template-columns: 1fr;
  }
  
  .heading-8fd2,
  .card_a72d,
  .west_796d {
    flex-direction: column;
    width: 100%;
  }
  
  .overlay_green_0c9b,
  .gallery_c402,
  .heading-8fd2 .plasma-5ce8,
  .card_a72d .plasma-5ce8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .logo-tiny-d9b0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .focus-0876 {
    font-size: 1.375rem;
  }
  
  .complex_622d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .lower_6f46,
  .tag_current_3119,
  .tall_6c34,
  .dropdown_blue_399e,
  .pattern-static-5241 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tabs_7187 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .advanced-67eb {
    gap: var(--space-xs);
  }
  
  .component_b805 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .fresh-9be2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .aside-c125 {
    width: 150px;
    height: 150px;
  }
  
  .link-under-e112 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .surface_428f,
  .north_cac9,
  .heading-8fd2,
  .tooltip_6743,
  .breadcrumb-cool-bdcf,
  .nav_purple_c3e8,
  .widget_597e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .surface_556c {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.focus-light-64d0 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 4093 */
.phantom-card-v9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.3;
}
