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

.image-b607:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.pagination-upper-8f15,
header,
.active_4cf4,
.over_2ba4,
.pressed_0a15,
.tertiary_7652,
.icon-green-4ece,
.module-iron-7c28,
.title_6d8d {
  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
   ============================================ */
.pagination-upper-8f15 {
  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);
}

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

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

/* Scrolled state */
.pagination-upper-8f15.primary_f31c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.next-cf11 {
  flex: 1;
}

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

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

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

.article-fdc3.fn-active-507c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.new-2fe2 {
  position: relative;
}

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

.motion-b094 svg {
  transition: transform 0.2s ease;
}

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

.article-666f {
  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;
}

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

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

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

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

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

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

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

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

.row-basic-e7e9 svg {
  flex-shrink: 0;
}

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

.pagination-855c: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);
}

.pagination-855c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .next-cf11::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .next-cf11.huge_a6b2 {
    display: block;
    right: 0;
  }
  
  .outer-1ba4 {
    flex-direction: column;
    gap: 0;
  }
  
  .article-fdc3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .next-cf11::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;
  }
  
  .next-cf11.huge_a6b2::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .next-cf11 {
    display: none;
  }
  
  .block_18b3 {
    display: flex;
  }
  
  .thick_3bfb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .row-basic-e7e9,
  .pagination-855c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .new-2fe2 {
    position: relative;
  }
  
  .article-666f {
    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;
  }
  
  .motion-b094[aria-expanded="true"] + .article-666f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .surface_green_0e91 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .primary-1968 {
    gap: 8px;
  }
  
  .row-basic-e7e9 {
    display: none;
  }
  
  .pagination-855c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .summary_up_8fbc img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .pagination-855c {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .pagination-855c svg {
    width: 14px;
    height: 14px;
  }
  
  .video-green-f275 {
    gap: var(--space-sm);
  }
}

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

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

.table-copper-87b9 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.table-copper-87b9 svg {
  flex-shrink: 0;
}

.table-copper-87b9 a {
  color: var(--color-primary);
  text-decoration: none;
}

.table-copper-87b9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-middle-a4ff {
  display: flex;
  gap: var(--space-sm);
}

.dark_95ae {
  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-4580 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

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

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

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

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

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

.gallery-cold-29f1 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .lite_fffc {
    grid-template-columns: 1fr;
  }
  
  .purple-a547 {
    font-size: 1.75rem;
  }
  
  .top_ce37 {
    order: -1;
    max-width: 100%;
  }
  
  .paragraph_easy_ba3e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .purple-a547 {
    font-size: 1.5rem;
  }
  
  .dirty-c08d {
    font-size: 1rem;
  }
  
  .texture_92d9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .paragraph_easy_ba3e {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.column-selected-5ff0 {
  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;
}

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

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

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

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

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

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

.accordion-257e {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.logo-active-06f7 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.icon-green-4ece {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-a212 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) {
  .icon_narrow_c9e2 {
    grid-template-columns: 1fr;
  }
  
  .fresh_61b5 {
    font-size: 1.75rem;
  }
  
  .block_clean_b8cf {
    max-width: 100%;
  }
}

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

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

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

.caption-3aa9 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.accent_brown_148d {
  flex-shrink: 0;
}

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

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

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

.list_rough_4763,
.outline-right-f0c3,
.column_focused_1239 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_rough_4763 thead,
.outline-right-f0c3 thead {
  background: var(--color-primary);
  color: white;
}

.list_rough_4763 th,
.list_rough_4763 td,
.outline-right-f0c3 th,
.outline-right-f0c3 td,
.column_focused_1239 th,
.column_focused_1239 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_rough_4763 th,
  .list_rough_4763 td,
  .outline-right-f0c3 th,
  .outline-right-f0c3 td,
  .column_focused_1239 th,
  .column_focused_1239 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_rough_4763,
  .outline-right-f0c3,
  .column_focused_1239 {
    min-width: 600px;
  }
}

.list_rough_4763 th,
.outline-right-f0c3 th,
.column_focused_1239 th {
  font-weight: 600;
}

.list_rough_4763 tbody tr:hover,
.outline-right-f0c3 tbody tr:hover,
.column_focused_1239 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.down_ce9f h4 {
  color: white;
}

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

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

.accent-4d3a:last-child {
  border-bottom: none;
}

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

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

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

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

.notice-0a5f:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.chip-dim-1bb8 {
  color: #4caf50;
}

.logo-last-cf9c {
  color: #ff9800;
}

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

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

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

.red-46c8 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-white-347c {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

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

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

.nav-291a {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.middle-c9e0 .column-selected-5ff0 {
  width: 100%;
  background: white;
}

.layout_ba23 .column-selected-5ff0 {
  color: #667eea;
}

.light-54f5 .column-selected-5ff0 {
  color: #f5576c;
}

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

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

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

.badge-inner-3818 {
  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);
}

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

.item-yellow-3cc0 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .row-d30e {
    padding: var(--space-md);
  }
  
  .item-yellow-3cc0 {
    padding: var(--space-md);
  }
  
  .upper-fd34 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.iron-ff8b,
.main-pink-06f7,
.prev_4cdf,
.highlight_short_cf3a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.rough-1973:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.widget-soft-c28a {
  border-color: var(--color-warning);
}

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

.hero_lite_737b .tooltip_west_4f3a {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget-soft-c28a .tooltip_west_4f3a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-c160 {
  text-align: center;
}

.full-74d9 {
  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);
}

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

.full-74d9 .hero_slow_4bc8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.filter-warm-cad3 {
  margin-bottom: var(--space-xl);
}

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

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

.last-149e {
  color: var(--color-text-light);
}

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

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

.first-850d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.hot-fbe7 {
  border: 2px solid #4caf50;
}

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

.logo-078c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.texture-4a4b {
  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;
}

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

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

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

.tall-fbce {
  text-align: right;
}

.tall-fbce .label-de33 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

.pattern-stale-78d2 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pink-943e {
  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);
}

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

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

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

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

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

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

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

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

.list-058c {
  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);
}

.list-058c:hover {
  background: var(--color-bg-alt);
}

.banner-28d1 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.list-058c[aria-expanded="true"] .banner-28d1 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .modal-bright-56b2 {
    grid-template-columns: 1fr;
  }
}

.paragraph_pro_f006,
.slider-894c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.paragraph_pro_f006 h4,
.slider-894c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.paragraph_pro_f006 ul,
.slider-894c ul {
  list-style: none;
  padding: 0;
}

.paragraph_pro_f006 li,
.slider-894c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.chip-pink-636a {
  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);
}

.backdrop_5c40 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .picture-light-17e4 {
    grid-template-columns: 1fr;
  }
}

.picture-578f {
  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);
}

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

.table-blue-21ef {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

/* Footer variant: footer-content (subpages) */
.badge-adaf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.element_0bf3 a:hover {
  color: white;
}

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

.basic_7f17 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

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

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

.button_7cf2 a:hover {
  color: white;
}

.table-9b08 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.widget-89cb .summary-middle-a4ff {
  color: #4caf50;
  font-size: 0.875rem;
}

.tiny-c9d9 {
  list-style: none;
  padding: 0;
}

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

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

.tiny-c9d9 a:hover {
  color: white;
}

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

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

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

.huge_706e a:hover {
  color: white;
}

.table-9b08 {
  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);
}

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

.full-2e58 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.large-5f61 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.message-3e12:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .table-9b08 {
    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;
  }
  
  .purple-a547 {
    font-size: 2rem;
  }
  
  .fresh_61b5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .lite_fffc,
  .icon_narrow_c9e2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .section_1830,
  .alert_large_a9b1,
  .next_3191,
  .next_eeb5,
  .modal-bright-56b2,
  .thick_839c,
  .picture-light-17e4,
  .panel_f63d,
  .badge-adaf {
    grid-template-columns: 1fr;
  }
  
  .sort_364d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .icon-green-4ece {
    padding: var(--space-lg) 0;
  }
  
  .shadow_small_2ec6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shadow_small_2ec6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .column-selected-5ff0 {
    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;
  }
  
  .sort_364d {
    grid-template-columns: 1fr;
  }
  
  .steel-d7cc,
  .active-b023,
  .pro_c8e3 {
    flex-direction: column;
    width: 100%;
  }
  
  .accordion-257e,
  .logo-active-06f7,
  .steel-d7cc .column-selected-5ff0,
  .active-b023 .column-selected-5ff0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .purple-a547 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .fresh_61b5 {
    font-size: 1.375rem;
  }
  
  .main_e3aa {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .main-0c40,
  .highlight_focused_061f,
  .filter_steel_2937,
  .gallery_a1fa,
  .texture_72fb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .up_0998 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .texture-d82f {
    gap: var(--space-xs);
  }
  
  .table-copper-87b9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .iron_40a4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .full-74d9 {
    width: 150px;
    height: 150px;
  }
  
  .brown-2f51 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pagination-upper-8f15,
  .active_4cf4,
  .steel-d7cc,
  .hero_dynamic_88e3,
  .module-iron-7c28,
  .title_6d8d,
  .block_18b3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .icon-green-4ece {
    page-break-inside: avoid;
  }
}

/* css-noise: 3498 */
.shadow-element-o3 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
