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

.icon-5589:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .disabled-large-49ef {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .disabled-large-49ef {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.active_7e81,
header,
.card-light-9e6b,
.icon_b3b1,
.feature_d3e3,
.thumbnail-70bb,
.footer-154c,
.paragraph-90b7,
.action_a429 {
  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
   ============================================ */
.active_7e81 {
  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);
}

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

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

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

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

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

.detail-e6b6 img {
  height: 36px;
  width: auto;
  display: block;
}

.cold-0fdf {
  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;
}

.outline_complex_f31a {
  flex: 1;
}

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

.breadcrumb-up-b79e {
  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-up-b79e:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.breadcrumb-up-b79e.fn-active-1c4f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.paper-d9e7 {
  position: relative;
}

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

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

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

.full-6fd1 {
  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;
}

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

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

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

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

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

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

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

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

.column_1846 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.wide-7d35[aria-expanded="true"] .fresh-92b7:nth-child(2) {
  opacity: 0;
}

.wide-7d35[aria-expanded="true"] .fresh-92b7:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .outline_complex_f31a {
    display: none;
  }
  
  .wide-7d35 {
    display: flex;
  }
  
  .cold-0fdf {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .column_1846,
  .layout_8183 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .paper-d9e7 {
    position: relative;
  }
  
  .full-6fd1 {
    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;
  }
  
  .text_tall_58e0[aria-expanded="true"] + .full-6fd1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay-7b20 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .full-50ba {
    gap: 8px;
  }
  
  .column_1846 {
    display: none;
  }
  
  .layout_8183 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .detail-e6b6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.in-abcf svg {
  flex-shrink: 0;
}

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

.in-abcf a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.background-8774 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.detail-612b {
  display: flex;
  gap: var(--space-sm);
}

.frame-lite-0829 {
  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;
}

.card-selected-0278 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-selected-0278 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dirty_1279 {
    grid-template-columns: 1fr;
  }
  
  .basic_ddff {
    font-size: 1.75rem;
  }
  
  .row_1531 {
    order: -1;
    max-width: 100%;
  }
  
  .description_e185 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .basic_ddff {
    font-size: 1.5rem;
  }
  
  .active-832b {
    font-size: 1rem;
  }
  
  .background-8774 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .description_e185 {
    max-width: 250px;
  }
}

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

.motion-0fe0 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.accent-slow-377a {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.stone-6f27 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.stone-6f27 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);
}

.stone-6f27 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;
}

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

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

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

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

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

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

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

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

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

.section-yellow-4ce7 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-yellow-4ce7 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-yellow-4ce7 pre,
.section-yellow-4ce7 code {
  overflow-x: auto;
  max-width: 100%;
}

.section-yellow-4ce7 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);
}

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

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

.section-yellow-4ce7 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section-yellow-4ce7 ul,
.section-yellow-4ce7 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.section-yellow-4ce7 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.section-yellow-4ce7 strong {
  font-weight: 600;
  color: var(--color-text);
}

.section-yellow-4ce7 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.section-yellow-4ce7 a:hover {
  color: var(--color-primary-dark);
}

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

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

.border_0c08 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) {
  .picture_e67b {
    grid-template-columns: 1fr;
  }
  
  .table_6859 {
    font-size: 1.75rem;
  }
  
  .section-yellow-4ce7 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .table_6859 {
    font-size: 1.5rem;
  }
  
  .section-yellow-4ce7 h3 {
    font-size: 1.375rem;
  }
  
  .section-yellow-4ce7 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.gas-d233 {
  flex-shrink: 0;
}

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

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

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

.logo-9ea0,
.banner-2f16,
.banner_down_23bd {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-9ea0 thead,
.banner-2f16 thead {
  background: var(--color-primary);
  color: white;
}

.logo-9ea0 th,
.logo-9ea0 td,
.banner-2f16 th,
.banner-2f16 td,
.banner_down_23bd th,
.banner_down_23bd td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-9ea0 th,
  .logo-9ea0 td,
  .banner-2f16 th,
  .banner-2f16 td,
  .banner_down_23bd th,
  .banner_down_23bd td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .logo-9ea0,
  .banner-2f16,
  .banner_down_23bd {
    min-width: 600px;
  }
}

.logo-9ea0 th,
.banner-2f16 th,
.banner_down_23bd th {
  font-weight: 600;
}

.logo-9ea0 tbody tr:hover,
.banner-2f16 tbody tr:hover,
.banner_down_23bd tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.backdrop-7b3a h4 {
  color: white;
}

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

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

.item-136e:last-child {
  border-bottom: none;
}

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

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

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

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

.status-gold-9ae5:hover {
  text-decoration: underline;
}

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

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

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

.frame-action-ff22 {
  font-weight: 600;
  color: white;
}

.sort-8cad {
  list-style: none;
  padding: 0;
}

.sort-8cad li {
  padding: var(--space-xs) 0;
}

.hidden_lite_aab2 {
  color: #4caf50;
}

.background_smooth_a9f4 {
  color: #ff9800;
}

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

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

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

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

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

.input-white-747a {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-bronze-67ba {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.table-98e0 .chip_bronze_df82 {
  width: 100%;
  background: white;
}

.grid_a856 .chip_bronze_df82 {
  color: #667eea;
}

.info-1687 .chip_bronze_df82 {
  color: #f5576c;
}

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

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

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

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

.light-1b02 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .light-1b02 {
    padding: var(--space-md);
  }
  
  .surface_0d75 {
    padding: var(--space-md);
  }
  
  .steel_87a1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.basic_6315,
.first_02b4,
.pro-1f57,
.box_bedf {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.feature-huge-7229 {
  border-color: var(--color-success);
}

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

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

.feature-huge-7229 .dark-f891 {
  background: #e8f5e9;
  color: var(--color-success);
}

.backdrop_next_3871 .dark-f891 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.background-dark-3bb9 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.texture-soft-5d93 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.component-prev-e44c {
  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);
}

.hover-huge-917c {
  text-align: center;
}

.black-96be {
  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);
}

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

.black-96be .frame-action-ff22 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.detail-6df9 {
  margin-bottom: var(--space-xl);
}

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

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

.element-500e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.description-left-818a {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.tabs-inner-78f7 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.yellow_2be7 {
  text-align: right;
}

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

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

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

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

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

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

.mask-wide-32eb {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.section-fluid-ec17 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.text-fast-933f {
  max-width: 900px;
  margin: 0 auto;
}

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

.pattern-light-4676 {
  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);
}

.pattern-light-4676:hover {
  background: var(--color-bg-alt);
}

.hot-55a3 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.pattern-light-4676[aria-expanded="true"] .hot-55a3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.nav-fluid-ad65 {
  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);
}

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

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

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

.disabled_3b07,
.mini-0c89 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.disabled_3b07 h4,
.mini-0c89 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.disabled_3b07 ul,
.mini-0c89 ul {
  list-style: none;
  padding: 0;
}

.disabled_3b07 li,
.mini-0c89 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.focus_red_ef74 {
  font-style: italic;
}

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

.item-5f6b {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused_4cc4 {
  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) */
.tooltip-iron-0324 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.info-bf75 a:hover {
  color: white;
}

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

.bright-43f3 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);
}

.bright-43f3 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.hero-3fc3 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hero-3fc3 a:hover {
  color: white;
}

.tag-bottom-dae0 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .focused_4cc4,
  .tooltip-iron-0324 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.stone-b3f1 .detail-612b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.photo_complex_44df a:hover {
  color: white;
}

.down-1491 {
  list-style: none;
  padding: 0;
}

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

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

.down-1491 a:hover {
  color: white;
}

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

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

.shade-selected-bb29 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.tag-bottom-b402:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tag-bottom-dae0 {
    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;
  }
  
  .basic_ddff {
    font-size: 2rem;
  }
  
  .table_6859 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dirty_1279,
  .picture_e67b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .dropdown_prev_3be3,
  .preview_e29a,
  .smooth-95d5,
  .motion-c4e6,
  .badge_thick_e92e,
  .motion-ffc5,
  .new_3769,
  .focused_4cc4,
  .tooltip-iron-0324 {
    grid-template-columns: 1fr;
  }
  
  .static_b728 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .footer-154c {
    padding: var(--space-lg) 0;
  }
  
  .stone-6f27 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .stone-6f27 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .chip_bronze_df82 {
    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;
  }
  
  .static_b728 {
    grid-template-columns: 1fr;
  }
  
  .info_new_d184,
  .header_a945,
  .highlight_8305 {
    flex-direction: column;
    width: 100%;
  }
  
  .bottom_4f2a,
  .preview-3385,
  .info_new_d184 .chip_bronze_df82,
  .header_a945 .chip_bronze_df82 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .basic_ddff {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .table_6859 {
    font-size: 1.375rem;
  }
  
  .link-4030 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .preview_stale_7f33,
  .silver-53c2,
  .left-5dd4,
  .small_1cd3,
  .new-0537 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .top-e711 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .lite-bf12 {
    gap: var(--space-xs);
  }
  
  .in-abcf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .warm-ca58 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .black-96be {
    width: 150px;
    height: 150px;
  }
  
  .modal-de52 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active_7e81,
  .card-light-9e6b,
  .info_new_d184,
  .item-5f6b,
  .paragraph-90b7,
  .action_a429,
  .wide-7d35 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .footer-154c {
    page-break-inside: avoid;
  }
}

/* css-noise: f63e */
.phantom-card-e2 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
