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

.border-north-baf7:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.iron-302f,
header,
.item-hot-6b57,
.easy_f7d4,
.clean_0c36,
.widget_98fc,
.full-9173,
.status-upper-6b55,
.bottom-9e6a {
  max-width: none;
}

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

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

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

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

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

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

/* Scrolled state */
.iron-302f.caption-gold-bb46 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.summary-mini-8a1a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.video-orange-fdd3 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.black-fccb {
  flex: 1;
}

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

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

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

.breadcrumb_clean_cef5.fn-active-a9a2 {
  background: var(--color-primary);
  color: white;
}

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

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

.video-585d svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.footer-dirty-89ba {
  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;
}

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

.footer-dirty-89ba svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.popup-4abd[aria-expanded="true"] .hero_a25f:nth-child(2) {
  opacity: 0;
}

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

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

  .black-fccb::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .black-fccb.text-897b {
    display: block;
    right: 0;
  }
  
  .grid-dark-4ddd {
    flex-direction: column;
    gap: 0;
  }
  
  .breadcrumb_clean_cef5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .black-fccb::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;
  }
  
  .black-fccb.text-897b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .black-fccb {
    display: none;
  }
  
  .popup-4abd {
    display: flex;
  }
  
  .banner_new_c0d1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .footer-dirty-89ba,
  .hidden_041a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .card_cff3 {
    position: relative;
  }
  
  .silver_ae63 {
    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;
  }
  
  .video-585d[aria-expanded="true"] + .silver_ae63 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .inner_95f7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .feature-center-7e3f {
    gap: 8px;
  }
  
  .footer-dirty-89ba {
    display: none;
  }
  
  .hidden_041a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .video-orange-fdd3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.thumbnail-0c4f {
  display: flex;
  align-items: center;
  gap: 6px;
}

.thumbnail-0c4f svg {
  flex-shrink: 0;
}

.thumbnail-0c4f a {
  color: var(--color-primary);
  text-decoration: none;
}

.thumbnail-0c4f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.video-b7be a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.active-dfcd {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.row-steel-54ac {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.detail-pink-3dec {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .panel-dark-e39f {
    grid-template-columns: 1fr;
  }
  
  .header_out_6190 {
    font-size: 1.75rem;
  }
  
  .sidebar_tall_91a0 {
    order: -1;
    max-width: 100%;
  }
  
  .pressed_293e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .header_out_6190 {
    font-size: 1.5rem;
  }
  
  .mini-78ab {
    font-size: 1rem;
  }
  
  .video-b7be {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pressed_293e {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.tertiary-plasma-59dd {
  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;
}

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

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

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

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

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

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

.wood-8b15 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav_east_82cb 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) {
  .surface-c7b1 {
    grid-template-columns: 1fr;
  }
  
  .green_30b1 {
    font-size: 1.75rem;
  }
  
  .purple_7a1a {
    max-width: 100%;
  }
}

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

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

.column-bronze-3a80 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.tag-844e {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.fresh_4319 {
  flex-shrink: 0;
}

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

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

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

.detail-3cf5,
.medium_8232,
.secondary_3cee {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.detail-3cf5 thead,
.medium_8232 thead {
  background: var(--color-primary);
  color: white;
}

.detail-3cf5 th,
.detail-3cf5 td,
.medium_8232 th,
.medium_8232 td,
.secondary_3cee th,
.secondary_3cee td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .detail-3cf5 th,
  .detail-3cf5 td,
  .medium_8232 th,
  .medium_8232 td,
  .secondary_3cee th,
  .secondary_3cee td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .detail-3cf5,
  .medium_8232,
  .secondary_3cee {
    min-width: 600px;
  }
}

.detail-3cf5 th,
.medium_8232 th,
.secondary_3cee th {
  font-weight: 600;
}

.detail-3cf5 tbody tr:hover,
.medium_8232 tbody tr:hover,
.secondary_3cee tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.filter-6ebd h4 {
  color: white;
}

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

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

.fast-5bb5:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.filter-pro-7965 {
  list-style: none;
  padding: 0;
}

.filter-pro-7965 li {
  padding: var(--space-xs) 0;
}

.feature_513b {
  color: #4caf50;
}

.preview-top-65e0 {
  color: #ff9800;
}

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

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

.active-wood-17f7 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.widget-6f5b {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.modal-south-62b1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny-805d .tertiary-plasma-59dd {
  width: 100%;
  background: white;
}

.selected_5f25 .tertiary-plasma-59dd {
  color: #667eea;
}

.picture_6b46 .tertiary-plasma-59dd {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .sidebar_white_f387 {
    padding: var(--space-md);
  }
  
  .dirty_f914 {
    padding: var(--space-md);
  }
  
  .tooltip-north-f6b0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.under-8d0f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.primary_e242,
.menu_2be0,
.first_9712,
.backdrop-a5e5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hard-c31d:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.simple-7090 .description_a73c {
  background: #e8f5e9;
  color: var(--color-success);
}

.nav_51ab .description_a73c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner_00c0 {
  text-align: center;
}

.text-573e {
  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);
}

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

.text-573e .middle_6c76 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.accent-yellow-9fed {
  margin-bottom: var(--space-xl);
}

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

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

.form-left-a7bb {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.fixed-fe1a {
  border: 2px solid #4caf50;
}

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

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

.disabled-3cfd {
  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;
}

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

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

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

.sort-cold-43c4 {
  text-align: right;
}

.sort-cold-43c4 .disabled-54fe {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.status-b079 {
  background: #e3f2fd;
  color: #1565c0;
}

.gallery-e52c {
  background: #fff3e0;
  color: #e65100;
}

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

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

.sort-gas-7977 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.iron_9ae2[aria-expanded="true"] .liquid_f4d6 {
  transform: rotate(180deg);
}

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

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

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

.search-2ab9 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

.content_fast_66b9 h4,
.active_7a5d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.content_fast_66b9 ul,
.active_7a5d ul {
  list-style: none;
  padding: 0;
}

.content_fast_66b9 li,
.active_7a5d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hard_2708 {
  font-style: italic;
}

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

.accent-purple-a3d0 {
  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;
}

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

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

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

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

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

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

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

.modal-2f8d {
  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);
}

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

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

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

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

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

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

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

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

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

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

.row_out_aa69 .photo-7557 {
  color: #4caf50;
  font-size: 0.875rem;
}

.current-b31a {
  list-style: none;
  padding: 0;
}

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

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

.current-b31a a:hover {
  color: white;
}

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

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

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

.active_eadc a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .photo-0197 {
    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;
  }
  
  .header_out_6190 {
    font-size: 2rem;
  }
  
  .green_30b1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .panel-dark-e39f,
  .surface-c7b1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .item_bfaf,
  .disabled_3414,
  .outer_b8b2,
  .message-next-1ddf,
  .list_huge_337a,
  .cool-3d28,
  .background_ab14,
  .heading-first-f90e {
    grid-template-columns: 1fr;
  }
  
  .backdrop_orange_159f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .full-9173 {
    padding: var(--space-lg) 0;
  }
  
  .bronze_105c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bronze_105c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tertiary-plasma-59dd {
    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;
  }
  
  .backdrop_orange_159f {
    grid-template-columns: 1fr;
  }
  
  .active-dfcd,
  .mini_e14a,
  .box_lite_ec0e {
    flex-direction: column;
    width: 100%;
  }
  
  .wood-8b15,
  .complex_7049,
  .active-dfcd .tertiary-plasma-59dd,
  .mini_e14a .tertiary-plasma-59dd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .header_out_6190 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .green_30b1 {
    font-size: 1.375rem;
  }
  
  .disabled-fd3e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .media_a063,
  .tooltip-65ea,
  .title_focused_0d6f,
  .frame-right-eaa9,
  .list_cold_9661 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .outline_3138 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .list-e964 {
    gap: var(--space-xs);
  }
  
  .thumbnail-0c4f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .message_old_fc59 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .text-573e {
    width: 150px;
    height: 150px;
  }
  
  .under-9fc2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .iron-302f,
  .item-hot-6b57,
  .active-dfcd,
  .accent-purple-a3d0,
  .status-upper-6b55,
  .bottom-9e6a,
  .popup-4abd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .full-9173 {
    page-break-inside: avoid;
  }
}

/* css-noise: 8b87 */
.phantom-card-n8 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
