/* ============================================
   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)
   ============================================ */
.info-brown-0e8d {
  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;
}

.info-brown-0e8d:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.text-ee74,
header,
.menu_ce13,
.sidebar_5099,
.silver_6afd,
.paragraph-48c5,
.row_7909,
.orange-777f,
.backdrop-cc38 {
  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
   ============================================ */
.text-ee74 {
  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);
}

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

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

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

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

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

.fresh-0f56 img {
  height: 36px;
  width: auto;
  display: block;
}

.link-bronze-ac3d {
  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;
}

.badge_huge_439f {
  flex: 1;
}

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

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

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

.picture_50c0.fn-active-2dff {
  background: var(--color-primary);
  color: white;
}

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

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

.accordion-88ad svg {
  transition: transform 0.2s ease;
}

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

.top-33f7 {
  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;
}

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

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

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

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

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

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

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

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

.clean-9b85 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .badge_huge_439f {
    display: none;
  }
  
  .red_c093 {
    display: flex;
  }
  
  .link-bronze-ac3d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .clean-9b85,
  .badge_aa8f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .warm_73bd {
    position: relative;
  }
  
  .top-33f7 {
    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;
  }
  
  .accordion-88ad[aria-expanded="true"] + .top-33f7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .message_50fe {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .box-a494 {
    gap: 8px;
  }
  
  .clean-9b85 {
    display: none;
  }
  
  .badge_aa8f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fresh-0f56 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.pagination-7ee8 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination-7ee8 svg {
  flex-shrink: 0;
}

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

.pagination-7ee8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-new-c255 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .box_d882 {
    grid-template-columns: 1fr;
  }
  
  .paragraph_cool_929e {
    font-size: 1.75rem;
  }
  
  .icon_3b31 {
    order: -1;
    max-width: 100%;
  }
  
  .outline_b2f2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .paragraph_cool_929e {
    font-size: 1.5rem;
  }
  
  .full-1b45 {
    font-size: 1rem;
  }
  
  .modal_complex_1b6e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .outline_b2f2 {
    max-width: 250px;
  }
}

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

.soft-0a4c {
  background: var(--color-primary);
  color: white;
}

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

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

.detail-7a8f:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.active-complex-49ad {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

.carousel-orange-1ab6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.huge-1b30 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.huge-1b30 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);
}

.huge-1b30 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;
}

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

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

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

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

.module-plasma-2a27 {
  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);
}

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

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

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

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

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

.narrow-25af img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.narrow-25af 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);
}

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

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

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

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

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

.narrow-25af strong {
  font-weight: 600;
  color: var(--color-text);
}

.narrow-25af a {
  color: var(--color-primary);
  text-decoration: underline;
}

.narrow-25af a:hover {
  color: var(--color-primary-dark);
}

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

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

.sort_outer_132a 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) {
  .hover_d104 {
    grid-template-columns: 1fr;
  }
  
  .fast_3e99 {
    font-size: 1.75rem;
  }
  
  .narrow-25af {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .fast_3e99 {
    font-size: 1.5rem;
  }
  
  .narrow-25af h3 {
    font-size: 1.375rem;
  }
  
  .narrow-25af h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.notification_brown_a490 {
  flex-shrink: 0;
}

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

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

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

.backdrop_out_4f11,
.secondary-fdc2,
.fast-710d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.backdrop_out_4f11 thead,
.secondary-fdc2 thead {
  background: var(--color-primary);
  color: white;
}

.backdrop_out_4f11 th,
.backdrop_out_4f11 td,
.secondary-fdc2 th,
.secondary-fdc2 td,
.fast-710d th,
.fast-710d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .backdrop_out_4f11 th,
  .backdrop_out_4f11 td,
  .secondary-fdc2 th,
  .secondary-fdc2 td,
  .fast-710d th,
  .fast-710d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .backdrop_out_4f11,
  .secondary-fdc2,
  .fast-710d {
    min-width: 600px;
  }
}

.backdrop_out_4f11 th,
.secondary-fdc2 th,
.fast-710d th {
  font-weight: 600;
}

.backdrop_out_4f11 tbody tr:hover,
.secondary-fdc2 tbody tr:hover,
.fast-710d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.section-center-cf6d h4 {
  color: white;
}

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

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

.highlight-liquid-13df:last-child {
  border-bottom: none;
}

.highlight-liquid-13df dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.highlight-liquid-13df dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.iron-24f5:hover {
  text-decoration: underline;
}

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

.advanced-710f {
  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);
}

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

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

.disabled-fast-9d62 {
  list-style: none;
  padding: 0;
}

.disabled-fast-9d62 li {
  padding: var(--space-xs) 0;
}

.pagination-f343 {
  color: #4caf50;
}

.overlay-1665 {
  color: #ff9800;
}

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

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

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

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

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

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

/* ============================================
   15. FEATURE GRID
   ============================================ */
.alert_solid_d936 {
  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_solid_d936 {
    grid-template-columns: 1fr;
  }
}

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

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

.main-439c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_d461 .hover-17dd {
  width: 100%;
  background: white;
}

.smooth_a9fb .hover-17dd {
  color: #667eea;
}

.smooth_7047 .hover-17dd {
  color: #f5576c;
}

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

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

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

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

.iron-3d1f h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .iron-3d1f {
    padding: var(--space-md);
  }
  
  .brown_8481 {
    padding: var(--space-md);
  }
  
  .dirty_8942 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hard-811e,
.motion_1299,
.sidebar_white_7ccc,
.backdrop_010e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.accordion-570e:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.pattern-lite-aa6f {
  border-color: var(--color-warning);
}

.action-0a13 {
  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);
}

.highlight_f053 .action-0a13 {
  background: #e8f5e9;
  color: var(--color-success);
}

.pattern-lite-aa6f .action-0a13 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav_under_ba0d {
  text-align: center;
}

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

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

.content_middle_8b13 .item_60a8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.fast_f85c {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-af9b {
  text-align: right;
}

.basic-af9b .input-next-9953 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.short-a5db {
  background: #e8f5e9;
  color: #2e7d32;
}

.easy-e5a9 {
  background: #e3f2fd;
  color: #1565c0;
}

.narrow-6448 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.liquid-4f85 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.detail-rough-4e7e {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.module-rough-6de4 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.module_55c6[aria-expanded="true"] .module-rough-6de4 {
  transform: rotate(180deg);
}

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

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

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

.shade-6e8c li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.logo-green-524d {
  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);
}

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

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

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

.tiny-7c2c,
.detail_9b8b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tiny-7c2c h4,
.detail_9b8b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tiny-7c2c ul,
.detail_9b8b ul {
  list-style: none;
  padding: 0;
}

.tiny-7c2c li,
.detail_9b8b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.badge-focused-d966 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button_center_a5af a:hover {
  color: white;
}

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

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

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

.tag-52e3 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.tag-52e3 a:hover {
  color: white;
}

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

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

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

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

.tabs-bottom-21ee {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.tabs-bottom-21ee .glass_c477 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.wood_40f1 a:hover {
  color: white;
}

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

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

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

.detail_0e50 a:hover {
  color: white;
}

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

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

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

.notification-wide-805c {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

.paragraph-liquid-925e {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.paragraph-liquid-925e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .table-db2b {
    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;
  }
  
  .paragraph_cool_929e {
    font-size: 2rem;
  }
  
  .fast_3e99 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .box_d882,
  .hover_d104 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .alert_solid_d936,
  .gradient_20a7,
  .tertiary_complex_cfc2,
  .hover-f88f,
  .disabled_upper_1389,
  .narrow-0ba8,
  .text-006c,
  .bright_5de3,
  .fixed_c639 {
    grid-template-columns: 1fr;
  }
  
  .footer_prev_a507 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .row_7909 {
    padding: var(--space-lg) 0;
  }
  
  .huge-1b30 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .huge-1b30 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hover-17dd {
    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;
  }
  
  .footer_prev_a507 {
    grid-template-columns: 1fr;
  }
  
  .main_stone_ff5a,
  .west-5ccc,
  .medium-cd6f {
    flex-direction: column;
    width: 100%;
  }
  
  .active-complex-49ad,
  .card_clean_ef6b,
  .main_stone_ff5a .hover-17dd,
  .west-5ccc .hover-17dd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .paragraph_cool_929e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .fast_3e99 {
    font-size: 1.375rem;
  }
  
  .preview_iron_59d3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hero_372c,
  .sort-gold-a6fa,
  .link_774e,
  .header_outer_dc39,
  .white_0bea {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .table-warm-d7e5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .orange-2c87 {
    gap: var(--space-xs);
  }
  
  .pagination-7ee8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .advanced-710f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .content_middle_8b13 {
    width: 150px;
    height: 150px;
  }
  
  .wrapper_fast_ab54 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .text-ee74,
  .menu_ce13,
  .main_stone_ff5a,
  .primary_5eed,
  .orange-777f,
  .backdrop-cc38,
  .red_c093 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .row_7909 {
    page-break-inside: avoid;
  }
}

/* css-noise: 05ba */
.shadow-element-r0 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.3;
}
