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

.preview_east_a81c:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.prev-a4f3):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. */
.prev-a4f3,
header,
.disabled_last_a422,
.paper-4a45,
.carousel_8fd8,
.button-a9c6,
.photo-blue-43f4,
.breadcrumb-wood-c3d6,
.large-8ea3 {
  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
   ============================================ */
.prev-a4f3 {
  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);
}

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

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

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

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

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

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

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

.label-e712 {
  flex: 1;
}

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

.tiny-8ea3 {
  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);
}

.tiny-8ea3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.tiny-8ea3.heading_0c87 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.banner-3abb {
  position: relative;
}

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

.item-bronze-d50d svg {
  transition: transform 0.2s ease;
}

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

.summary-short-afb9 {
  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;
}

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

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

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

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

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

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

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

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

.hero-fea3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .label-e712::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .label-e712.container-6d22 {
    display: block;
    right: 0;
  }
  
  .item-north-161d {
    flex-direction: column;
    gap: 0;
  }
  
  .tiny-8ea3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .label-e712::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;
  }
  
  .label-e712.container-6d22::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .label-e712 {
    display: none;
  }
  
  .frame-0e29 {
    display: flex;
  }
  
  .action-ff1e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hero-fea3,
  .alert_1345 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner-3abb {
    position: relative;
  }
  
  .summary-short-afb9 {
    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;
  }
  
  .item-bronze-d50d[aria-expanded="true"] + .summary-short-afb9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .lite-401d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .in-f121 {
    gap: 8px;
  }
  
  .hero-fea3 {
    display: none;
  }
  
  .alert_1345 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture_basic_1c2f img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .alert_1345 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .alert_1345 svg {
    width: 14px;
    height: 14px;
  }
  
  .detail-full-ed53 {
    gap: var(--space-sm);
  }
}

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

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

.accent-light-3ce9 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.accent-light-3ce9 svg {
  flex-shrink: 0;
}

.accent-light-3ce9 a {
  color: var(--color-primary);
  text-decoration: none;
}

.accent-light-3ce9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.pagination-thick-362a a {
  color: var(--color-primary);
  text-decoration: none;
}

.pagination-thick-362a a:hover {
  text-decoration: underline;
}

.block-right-efbb {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.column-west-6e1c {
  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;
}

.south-7d6d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

.logo-1a1d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.title-next-1ed3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .description_narrow_c6b5 {
    grid-template-columns: 1fr;
  }
  
  .border_c586 {
    font-size: 1.75rem;
  }
  
  .title-next-1ed3 {
    order: -1;
    max-width: 100%;
  }
  
  .notification_de28 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border_c586 {
    font-size: 1.5rem;
  }
  
  .progress-blue-3090 {
    font-size: 1rem;
  }
  
  .pagination-thick-362a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notification_de28 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.orange-6b65 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.photo-blue-43f4 {
  padding: var(--space-xxl) 0;
}

.cool-1c75 {
  background: var(--color-bg-section);
}

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

.tag-52a8 {
  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);
}

.picture-medium-a0fe {
  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-motion-bc13 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.black-199c img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.black-199c 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);
}

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

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

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

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

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

.black-199c strong {
  font-weight: 600;
  color: var(--color-text);
}

.black-199c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.black-199c a:hover {
  color: var(--color-primary-dark);
}

.white-2fad {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.white-2fad 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) {
  .media-pressed-d0b1 {
    grid-template-columns: 1fr;
  }
  
  .picture-medium-a0fe {
    font-size: 1.75rem;
  }
  
  .black-199c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .picture-medium-a0fe {
    font-size: 1.5rem;
  }
  
  .black-199c h3 {
    font-size: 1.375rem;
  }
  
  .black-199c h4 {
    font-size: 1.125rem;
  }
}

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

.gradient-gas-755f {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.sidebar-bottom-d563 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.sidebar-outer-f6c5 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.stone-5cb2 {
  flex-shrink: 0;
}

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

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

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

.notification_7e8c,
.thumbnail_right_3288,
.link-84fd {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notification_7e8c thead,
.thumbnail_right_3288 thead {
  background: var(--color-primary);
  color: white;
}

.notification_7e8c th,
.notification_7e8c td,
.thumbnail_right_3288 th,
.thumbnail_right_3288 td,
.link-84fd th,
.link-84fd td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notification_7e8c th,
  .notification_7e8c td,
  .thumbnail_right_3288 th,
  .thumbnail_right_3288 td,
  .link-84fd th,
  .link-84fd td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notification_7e8c,
  .thumbnail_right_3288,
  .link-84fd {
    min-width: 600px;
  }
}

.notification_7e8c th,
.thumbnail_right_3288 th,
.link-84fd th {
  font-weight: 600;
}

.notification_7e8c tbody tr:hover,
.thumbnail_right_3288 tbody tr:hover,
.link-84fd tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.light-35d4 h4 {
  color: white;
}

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

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

.cool-99f7:last-child {
  border-bottom: none;
}

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

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

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

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

.thumbnail-huge-29f3:hover {
  text-decoration: underline;
}

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

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

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

.tag-simple-96f7 {
  font-weight: 600;
  color: white;
}

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

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

.logo-light-afd7 {
  color: #4caf50;
}

.glass-6b5a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-simple-96f7 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_9233 .preview_262a {
  width: 100%;
  background: white;
}

.dim_3826 .preview_262a {
  color: #667eea;
}

.hovered-6b8c .preview_262a {
  color: #f5576c;
}

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

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

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

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

.fixed-8b86 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.caption-0e7a {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .fixed-8b86 {
    padding: var(--space-md);
  }
  
  .caption-0e7a {
    padding: var(--space-md);
  }
  
  .caption_3969 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.video-over-5155 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.secondary_d241,
.detail-06d1,
.disabled-7291,
.column-left-a8fb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.notice-blue-428f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.column-bottom-34b5 {
  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);
}

.fixed_e0b4 .column-bottom-34b5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.list-d9e3 .column-bottom-34b5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.list-2d6b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.popup-yellow-84d6 {
  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);
}

.cold-5e76 {
  text-align: center;
}

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

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

.table_soft_8498 .tag-simple-96f7 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .popup-yellow-84d6 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.hot-1a93 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.grid-wood-cba8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.focus_dirty_f299 {
  text-align: right;
}

.focus_dirty_f299 .grid-green-9e80 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.link-up-8fd3 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

.column-steel-dd6a strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.mask-fixed-0aa8 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.hot_ad68[aria-expanded="true"] .mask-fixed-0aa8 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .sidebar-static-9d63 {
    grid-template-columns: 1fr;
  }
}

.sidebar-mini-8be0,
.content_wood_76ef {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.sidebar-mini-8be0 h4,
.content_wood_76ef h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.sidebar-mini-8be0 ul,
.content_wood_76ef ul {
  list-style: none;
  padding: 0;
}

.sidebar-mini-8be0 li,
.content_wood_76ef li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.detail-warm-0a5a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.detail-warm-0a5a ul {
  list-style: none;
  padding: 0;
}

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

.content-easy-2bc4 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.carousel-ab34 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-lite-23dd {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.overlay-lite-23dd .purple_00ff {
  color: #4caf50;
  font-size: 0.875rem;
}

.action-8064 {
  list-style: none;
  padding: 0;
}

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

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

.action-8064 a:hover {
  color: white;
}

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

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

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

.lower_6d5c a:hover {
  color: white;
}

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

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

.search-last-4f16 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .form_8870 {
    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;
  }
  
  .border_c586 {
    font-size: 2rem;
  }
  
  .picture-medium-a0fe {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .description_narrow_c6b5,
  .media-pressed-d0b1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .overlay-f35b,
  .text_9be3,
  .primary-5777,
  .red_fe66,
  .sidebar-static-9d63,
  .header-dd4f,
  .alert_8b0c,
  .south_a3cb {
    grid-template-columns: 1fr;
  }
  
  .media-d509 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .photo-blue-43f4 {
    padding: var(--space-lg) 0;
  }
  
  .logo_a31e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .logo_a31e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .preview_262a {
    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;
  }
  
  .media-d509 {
    grid-template-columns: 1fr;
  }
  
  .logo-1a1d,
  .photo-middle-9223,
  .hard-f022 {
    flex-direction: column;
    width: 100%;
  }
  
  .bright_b293,
  .orange-6b65,
  .logo-1a1d .preview_262a,
  .photo-middle-9223 .preview_262a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border_c586 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .picture-medium-a0fe {
    font-size: 1.375rem;
  }
  
  .out-72c0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outer-55a6,
  .pressed_da55,
  .aside-8f30,
  .message-20fd,
  .warm-431b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gold_da33 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .summary-dark-abbd {
    gap: var(--space-xs);
  }
  
  .accent-light-3ce9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .content_f2f7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .table_soft_8498 {
    width: 150px;
    height: 150px;
  }
  
  .pro_6fca {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .prev-a4f3,
  .disabled_last_a422,
  .logo-1a1d,
  .gradient_dim_bdfc,
  .breadcrumb-wood-c3d6,
  .large-8ea3,
  .frame-0e29 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .photo-blue-43f4 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 8c16 */
.widget-item-v4 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
