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

.sidebar_basic_938f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.mask_752d,
header,
.clean_215b,
.solid-38e0,
.new_9f80,
.left-defc,
.solid-f1c8,
.full-dd3e,
.summary_a53f {
  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
   ============================================ */
.mask_752d {
  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);
}

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

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

/* Scrolled state */
.mask_752d.row-bronze-568f {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.header_3fc8 {
  flex: 1;
}

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

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

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

.content-f74a.fn-active-0ee1 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.dropdown-medium-c057 {
  position: relative;
}

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

.shade-small-e74d svg {
  transition: transform 0.2s ease;
}

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

.thick-2c80 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.column-f6f2 {
  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-f6f2:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.column-f6f2 svg {
  flex-shrink: 0;
}

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

.input-002c: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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .header_3fc8 {
    display: none;
  }
  
  .medium_754a {
    display: flex;
  }
  
  .hovered_3f80 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .column-f6f2,
  .input-002c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .dropdown-medium-c057 {
    position: relative;
  }
  
  .thick-2c80 {
    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;
  }
  
  .shade-small-e74d[aria-expanded="true"] + .thick-2c80 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .chip-7a1d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .message-ae23 {
    gap: 8px;
  }
  
  .column-f6f2 {
    display: none;
  }
  
  .input-002c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fresh_4c9f img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .input-002c {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .input-002c svg {
    width: 14px;
    height: 14px;
  }
  
  .popup-paper-d220 {
    gap: var(--space-sm);
  }
}

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

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

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

.thick-a72d svg {
  flex-shrink: 0;
}

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

.thick-a72d a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-center-2c9c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .heading-4a61 {
    grid-template-columns: 1fr;
  }
  
  .module_prev_200e {
    font-size: 1.75rem;
  }
  
  .dynamic_c205 {
    order: -1;
    max-width: 100%;
  }
  
  .item_cc7e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .module_prev_200e {
    font-size: 1.5rem;
  }
  
  .medium_0e1f {
    font-size: 1rem;
  }
  
  .banner_gold_1a64 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .item_cc7e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-c110 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;
}

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

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

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

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

.disabled-pressed-cfc8 {
  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);
}

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

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

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

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

.image-brown-0af4 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.image-brown-0af4 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-brown-0af4 pre,
.image-brown-0af4 code {
  overflow-x: auto;
  max-width: 100%;
}

.image-brown-0af4 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);
}

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

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

.image-brown-0af4 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.image-brown-0af4 ul,
.image-brown-0af4 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.image-brown-0af4 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.image-brown-0af4 strong {
  font-weight: 600;
  color: var(--color-text);
}

.image-brown-0af4 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.image-brown-0af4 a:hover {
  color: var(--color-primary-dark);
}

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

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

.secondary-abcf 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) {
  .tag_ea1d {
    grid-template-columns: 1fr;
  }
  
  .bright_02fa {
    font-size: 1.75rem;
  }
  
  .image-brown-0af4 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .bright_02fa {
    font-size: 1.5rem;
  }
  
  .image-brown-0af4 h3 {
    font-size: 1.375rem;
  }
  
  .image-brown-0af4 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.section-hard-fde3 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.button_up_2e35 {
  flex-shrink: 0;
}

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

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

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

.tooltip-down-73ef,
.photo-hard-ac69,
.dim_8295 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tooltip-down-73ef thead,
.photo-hard-ac69 thead {
  background: var(--color-primary);
  color: white;
}

.tooltip-down-73ef th,
.tooltip-down-73ef td,
.photo-hard-ac69 th,
.photo-hard-ac69 td,
.dim_8295 th,
.dim_8295 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tooltip-down-73ef th,
  .tooltip-down-73ef td,
  .photo-hard-ac69 th,
  .photo-hard-ac69 td,
  .dim_8295 th,
  .dim_8295 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tooltip-down-73ef,
  .photo-hard-ac69,
  .dim_8295 {
    min-width: 600px;
  }
}

.tooltip-down-73ef th,
.photo-hard-ac69 th,
.dim_8295 th {
  font-weight: 600;
}

.tooltip-down-73ef tbody tr:hover,
.photo-hard-ac69 tbody tr:hover,
.dim_8295 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pagination-f0a9 h4 {
  color: white;
}

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

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

.avatar_glass_755a:last-child {
  border-bottom: none;
}

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

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

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

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

.light-0ec7:hover {
  text-decoration: underline;
}

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

.card-active-fa45 {
  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);
}

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

.dropdown-993c {
  font-weight: 600;
  color: white;
}

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

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

.gallery_2085 {
  color: #4caf50;
}

.thick-34ad {
  color: #ff9800;
}

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

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

.wrapper-green-1d5d {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

.focus-easy-85c7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.focus-easy-85c7 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone-3d00 .notification_1541 {
  width: 100%;
  background: white;
}

.badge-577e .notification_1541 {
  color: #667eea;
}

.west_e151 .notification_1541 {
  color: #f5576c;
}

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

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

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

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

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

.wide-0d3f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .hard_0719 {
    padding: var(--space-md);
  }
  
  .wide-0d3f {
    padding: var(--space-md);
  }
  
  .logo-easy-fe11 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tertiary_ed48,
.list_white_13f7,
.large_ff53,
.light-7178 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.full-11eb {
  border-color: var(--color-success);
}

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

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

.full-11eb .chip_fc50 {
  background: #e8f5e9;
  color: var(--color-success);
}

.middle-c4d4 .chip_fc50 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.image-2a31 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.highlight-advanced-b521 {
  margin-top: var(--space-xxl);
}

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

.picture-750a {
  text-align: center;
}

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

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

.chip_smooth_3277 .dropdown-993c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.border-active-6ca5 {
  color: var(--color-text-light);
}

.pagination-glass-5b31 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.gallery-74c0 {
  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;
}

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

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

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

.tertiary_12f5 {
  text-align: right;
}

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

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

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

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

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

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

.large-8e0e {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.widget-hard-8b3b {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

.block-slow-579c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.container_8f8c[aria-expanded="true"] .tertiary-edcf {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

.disabled-a0f1 {
  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-a0f1 {
    grid-template-columns: 1fr;
  }
}

.fresh-fd2d,
.stone-2f24 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.fresh-fd2d h4,
.stone-2f24 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.fresh-fd2d ul,
.stone-2f24 ul {
  list-style: none;
  padding: 0;
}

.fresh-fd2d li,
.stone-2f24 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.heading-thick-5c95 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.heading-thick-5c95 ul {
  list-style: none;
  padding: 0;
}

.heading-thick-5c95 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.medium-c79f {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.outer-2f5f {
  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);
}

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

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

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

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

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

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

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

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

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

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

.avatar-wide-a6d4 .text-baff {
  color: #4caf50;
  font-size: 0.875rem;
}

.smooth-54c5 {
  list-style: none;
  padding: 0;
}

.smooth-54c5 li {
  margin-bottom: var(--space-xs);
}

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

.smooth-54c5 a:hover {
  color: white;
}

.modal-f10d {
  list-style: none;
  padding: 0;
}

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

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

.modal-f10d a:hover {
  color: white;
}

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

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

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

.banner-3624 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.menu-b13b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .surface-afee {
    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;
  }
  
  .module_prev_200e {
    font-size: 2rem;
  }
  
  .bright_02fa {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading-4a61,
  .tag_ea1d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .action_0bf6,
  .wood-2519,
  .copper_75c5,
  .main_small_67e6,
  .disabled-a0f1,
  .medium_7a0b,
  .title_iron_7b99,
  .heading_d93f {
    grid-template-columns: 1fr;
  }
  
  .notification-2cf9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .solid-f1c8 {
    padding: var(--space-lg) 0;
  }
  
  .layout-c110 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .layout-c110 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notification_1541 {
    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;
  }
  
  .notification-2cf9 {
    grid-template-columns: 1fr;
  }
  
  .blue-fd40,
  .item_under_cb8b,
  .hard-e26e {
    flex-direction: column;
    width: 100%;
  }
  
  .small_917b,
  .mask_iron_28cd,
  .blue-fd40 .notification_1541,
  .item_under_cb8b .notification_1541 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .module_prev_200e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .bright_02fa {
    font-size: 1.375rem;
  }
  
  .hover-1917 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thumbnail_south_818f,
  .focus-easy-85c7,
  .button-active-b467,
  .grid-static-4148,
  .link-iron-a1ee {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .picture_5d59 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .medium-def9 {
    gap: var(--space-xs);
  }
  
  .thick-a72d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .card-active-fa45 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip_smooth_3277 {
    width: 150px;
    height: 150px;
  }
  
  .fluid_d235 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .mask_752d,
  .clean_215b,
  .blue-fd40,
  .west_b133,
  .full-dd3e,
  .summary_a53f,
  .medium_754a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .solid-f1c8 {
    page-break-inside: avoid;
  }
}

/* css-noise: 37e0 */
.ghost-box-m4 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.2;
}
