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

.orange_54b4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.modal-7458):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. */
.modal-7458,
header,
.glass_9da8,
.surface-fast-3e25,
.cool_04ae,
.complex_0fd8,
.west_e323,
.hovered_5967,
.primary_focused_c56b {
  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
   ============================================ */
.modal-7458 {
  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);
}

.block-last-e44c {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.modal-7458.banner-dc8e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.tertiary-b6c2 {
  flex: 1;
}

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

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

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

.accordion_last_598f.badge-bf34 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.module-east-ac69 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.over-5bf3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.stale-5df3[aria-expanded="true"] .gallery-next-a58a:nth-child(2) {
  opacity: 0;
}

.stale-5df3[aria-expanded="true"] .gallery-next-a58a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .tertiary-b6c2 {
    display: none;
  }
  
  .stale-5df3 {
    display: flex;
  }
  
  .header_left_f2fe {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .over-5bf3,
  .item_wide_528b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .module-east-ac69 {
    position: relative;
  }
  
  .article_910e {
    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;
  }
  
  .hard_9560[aria-expanded="true"] + .article_910e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast_fc01 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .north-d659 {
    gap: 8px;
  }
  
  .over-5bf3 {
    display: none;
  }
  
  .item_wide_528b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .orange_2cd7 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .item_wide_528b {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .item_wide_528b svg {
    width: 14px;
    height: 14px;
  }
  
  .prev-621a {
    gap: var(--space-sm);
  }
}

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

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

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

.hard_17c3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-steel-55e5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

.highlight-wood-9ddf {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .wrapper_gas_ae87 {
    grid-template-columns: 1fr;
  }
  
  .badge_rough_4ab5 {
    font-size: 1.75rem;
  }
  
  .summary_hard_eb7b {
    order: -1;
    max-width: 100%;
  }
  
  .icon_dark_48b5 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .badge_rough_4ab5 {
    font-size: 1.5rem;
  }
  
  .fluid_0e6c {
    font-size: 1rem;
  }
  
  .card_smooth_5b48 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .icon_dark_48b5 {
    max-width: 250px;
  }
}

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

.advanced-3da3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.content-4a56 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.video-9e9f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-6de7 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-db1f 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) {
  .summary-fac0 {
    grid-template-columns: 1fr;
  }
  
  .static_7119 {
    font-size: 1.75rem;
  }
  
  .tooltip_7eb1 {
    max-width: 100%;
  }
}

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

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

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

.icon-wide-b1f7 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.block-steel-2785 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.notice-eebb {
  flex-shrink: 0;
}

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

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

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

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

.image_c50e thead,
.fresh_c54b thead {
  background: var(--color-primary);
  color: white;
}

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

@media (max-width: 768px) {
  .image_c50e th,
  .image_c50e td,
  .fresh_c54b th,
  .fresh_c54b td,
  .white-5445 th,
  .white-5445 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .image_c50e,
  .fresh_c54b,
  .white-5445 {
    min-width: 600px;
  }
}

.image_c50e th,
.fresh_c54b th,
.white-5445 th {
  font-weight: 600;
}

.image_c50e tbody tr:hover,
.fresh_c54b tbody tr:hover,
.white-5445 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.up_a446 h4 {
  color: white;
}

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

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

.wrapper-f5c5:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.button-d24a {
  list-style: none;
  padding: 0;
}

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

.form_glass_93db {
  color: #4caf50;
}

.background-2bfb {
  color: #ff9800;
}

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

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

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

.outline-motion-36f1 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-550e {
  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-550e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.button_iron_7e02 .chip_061e {
  width: 100%;
  background: white;
}

.badge-ce1f .chip_061e {
  color: #667eea;
}

.texture_soft_6954 .chip_061e {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .tabs_full_8e48 {
    padding: var(--space-md);
  }
  
  .filter-0317 {
    padding: var(--space-md);
  }
  
  .preview_ba9f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.main-steel-2143,
.border_346f,
.photo_east_df4a,
.content-in-968a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.chip-189b:hover {
  background: var(--color-primary-dark);
}

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

.secondary_stale_cb24 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.frame-static-345d {
  border-color: var(--color-warning);
}

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

.mask_12fb .stale_47a6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.frame-static-345d .stale_47a6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.secondary-hard-6ddb {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.hidden_93de {
  text-align: center;
}

.menu-outer-baa0 {
  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);
}

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

.menu-outer-baa0 .badge_down_d4d6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.table-huge-ea75 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.image-thick-afae {
  margin-bottom: var(--space-xl);
}

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

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

.section-medium-bc6b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.silver-03d1 {
  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;
}

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

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

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

.chip-huge-2d07 {
  text-align: right;
}

.chip-huge-2d07 .grid_dark_5ccf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.carousel-west-43cd {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.west-2a5d {
  background: #fff3e0;
  color: #e65100;
}

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

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

.pagination-ccbf {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

.focus-13ad strong {
  color: var(--color-primary);
}

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

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

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

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

.description-selected-2179 {
  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);
}

.description-selected-2179:hover {
  background: var(--color-bg-alt);
}

.modal-215e {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.description-selected-2179[aria-expanded="true"] .modal-215e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-0577,
.north-ad53 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.layout-0577 h4,
.north-ad53 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.layout-0577 ul,
.north-ad53 ul {
  list-style: none;
  padding: 0;
}

.layout-0577 li,
.north-ad53 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.active-outer-f924 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.module-static-a7fd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

.list-solid-efbe {
  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);
}

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

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

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

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

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

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

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

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

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

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

.mask-0134 .texture_e209 {
  color: #4caf50;
  font-size: 0.875rem;
}

.content-3be9 {
  list-style: none;
  padding: 0;
}

.content-3be9 li {
  margin-bottom: var(--space-xs);
}

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

.content-3be9 a:hover {
  color: white;
}

.short-7e38 {
  list-style: none;
  padding: 0;
}

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

.short-7e38 a {
  color: #b0b0b0;
  text-decoration: none;
}

.short-7e38 a:hover {
  color: white;
}

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

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

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

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

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

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

.slider-ee3e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .progress-e8e1 {
    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;
  }
  
  .badge_rough_4ab5 {
    font-size: 2rem;
  }
  
  .static_7119 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wrapper_gas_ae87,
  .summary-fac0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .preview_21d9,
  .fast_d328,
  .primary-550e,
  .popup-0478,
  .caption_251d,
  .caption_3a19,
  .pagination_slow_593f,
  .footer_hovered_e403 {
    grid-template-columns: 1fr;
  }
  
  .description_hard_559a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .west_e323 {
    padding: var(--space-lg) 0;
  }
  
  .widget_0065 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .widget_0065 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .chip_061e {
    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;
  }
  
  .description_hard_559a {
    grid-template-columns: 1fr;
  }
  
  .block-steel-55e5,
  .selected-d76d,
  .media-723a {
    flex-direction: column;
    width: 100%;
  }
  
  .content-4a56,
  .video-9e9f,
  .block-steel-55e5 .chip_061e,
  .selected-d76d .chip_061e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .badge_rough_4ab5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .static_7119 {
    font-size: 1.375rem;
  }
  
  .container-6985 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gallery-narrow-1338,
  .hover-active-e8c0,
  .hover_4463,
  .detail_silver_9ca7,
  .hover_81cc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .middle_dc82 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .photo_ec17 {
    gap: var(--space-xs);
  }
  
  .hard_17c3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .search_pro_c73f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .menu-outer-baa0 {
    width: 150px;
    height: 150px;
  }
  
  .aside-middle-2015 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal-7458,
  .glass_9da8,
  .block-steel-55e5,
  .gradient_cd8d,
  .hovered_5967,
  .primary_focused_c56b,
  .stale-5df3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .west_e323 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9555 */
.promo-block-d2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
