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

.highlight_current_d541:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.button-0739,
header,
.east-252f,
.surface-new-bbae,
.large_3379,
.photo-f286,
.short-b03c,
.pagination_8434,
.gold_695b {
  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
   ============================================ */
.button-0739 {
  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);
}

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

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

/* Scrolled state */
.button-0739.north-8b69 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.clean-f3ac {
  flex: 1;
}

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

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

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

.hot_5e03.fn-active-6273 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.cold-95b0 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.frame-dc79 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .clean-f3ac {
    display: none;
  }
  
  .container_slow_b6e4 {
    display: flex;
  }
  
  .fixed-c8da {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .frame-dc79,
  .popup_5344 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .cold-95b0 {
    position: relative;
  }
  
  .item_9070 {
    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;
  }
  
  .soft_c839[aria-expanded="true"] + .item_9070 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tabs-9a87 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .section-7d13 {
    gap: 8px;
  }
  
  .frame-dc79 {
    display: none;
  }
  
  .popup_5344 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .right_bc60 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.element-blue-1022 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.element-blue-1022 svg {
  flex-shrink: 0;
}

.element-blue-1022 a {
  color: var(--color-primary);
  text-decoration: none;
}

.element-blue-1022 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-17a3 {
  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;
}

.aside-thick-e5e8 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aside-thick-e5e8 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.section-prev-864f {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .banner_left_75ae {
    grid-template-columns: 1fr;
  }
  
  .disabled-37b4 {
    font-size: 1.75rem;
  }
  
  .chip_e221 {
    order: -1;
    max-width: 100%;
  }
  
  .section-prev-864f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .disabled-37b4 {
    font-size: 1.5rem;
  }
  
  .hero_complex_c08d {
    font-size: 1rem;
  }
  
  .pink_62ad {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .section-prev-864f {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.accordion-medium-25c8 {
  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;
}

.out-04c3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-3332 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;
}

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

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

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

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

.out-1fd2 {
  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);
}

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

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

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

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

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

.backdrop-outer-7514 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.backdrop-outer-7514 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);
}

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

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

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

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

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

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

.backdrop-outer-7514 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.backdrop-outer-7514 a:hover {
  color: var(--color-primary-dark);
}

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

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

.large_d0ac 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) {
  .header-slow-69e2 {
    grid-template-columns: 1fr;
  }
  
  .short_b158 {
    font-size: 1.75rem;
  }
  
  .backdrop-outer-7514 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .short_b158 {
    font-size: 1.5rem;
  }
  
  .backdrop-outer-7514 h3 {
    font-size: 1.375rem;
  }
  
  .backdrop-outer-7514 h4 {
    font-size: 1.125rem;
  }
}

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

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

.tooltip-03d0 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.border-left-11b4 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.bottom_0dda {
  flex-shrink: 0;
}

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

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

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

.table_046d,
.hero-4a58,
.content_dim_3ce3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table_046d thead,
.hero-4a58 thead {
  background: var(--color-primary);
  color: white;
}

.table_046d th,
.table_046d td,
.hero-4a58 th,
.hero-4a58 td,
.content_dim_3ce3 th,
.content_dim_3ce3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .table_046d th,
  .table_046d td,
  .hero-4a58 th,
  .hero-4a58 td,
  .content_dim_3ce3 th,
  .content_dim_3ce3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .table_046d,
  .hero-4a58,
  .content_dim_3ce3 {
    min-width: 600px;
  }
}

.table_046d th,
.hero-4a58 th,
.content_dim_3ce3 th {
  font-weight: 600;
}

.table_046d tbody tr:hover,
.hero-4a58 tbody tr:hover,
.content_dim_3ce3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.out_0798 h4 {
  color: white;
}

.paragraph-bright-3ed9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.row-fresh-64fd:hover {
  text-decoration: underline;
}

.form-next-827d {
  text-align: center;
  margin-bottom: var(--space-md);
}

.notification-tall-f165 {
  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);
}

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

.brown-6d15 {
  font-weight: 600;
  color: white;
}

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

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

.frame-plasma-2f60 {
  color: #4caf50;
}

.container-slow-ddd7 {
  color: #ff9800;
}

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

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

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

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

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

.gallery-liquid-1b1e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

.input-gold-554b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.input-gold-554b p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-wide-6e2c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.image-wide-6e2c ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.image-wide-6e2c li {
  padding: var(--space-xs) 0;
  color: white;
}

.image-wide-6e2c .accordion-medium-25c8 {
  width: 100%;
  background: white;
}

.filter-7be4 .accordion-medium-25c8 {
  color: #667eea;
}

.mask-94ed .accordion-medium-25c8 {
  color: #f5576c;
}

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

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

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

.full_ac00 {
  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-88a3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.lower-63bb {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .iron-88a3 {
    padding: var(--space-md);
  }
  
  .lower-63bb {
    padding: var(--space-md);
  }
  
  .pink_41cf {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.box-6ce1 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.notice-yellow-e366,
.list_down_6277,
.pagination_orange_e836,
.dropdown_fc68 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.title-solid-3ad0 {
  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) {
  .title-solid-3ad0 {
    font-size: 0.625rem;
  }
}

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

.hidden-south-083c:hover {
  background: var(--color-primary-dark);
}

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

.gradient-7a3d h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.module-fresh-57ba {
  border-color: var(--color-success);
}

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

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

.module-fresh-57ba .breadcrumb_832b {
  background: #e8f5e9;
  color: var(--color-success);
}

.complex-c7ba .breadcrumb_832b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hard-11f0 {
  margin-top: var(--space-xxl);
}

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

.box_orange_4880 {
  text-align: center;
}

.short_84f8 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.short_84f8 .brown-6d15 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.static-894a {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.paragraph_5557 {
  text-align: right;
}

.paragraph_5557 .tooltip-complex-e2df {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.smooth-f16c {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.section-cool-d277 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.avatar-740b {
  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);
}

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

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

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

.bronze-2e8c strong {
  color: var(--color-primary);
}

.header-rough-088c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.feature-blue-15d5 {
  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);
}

.feature-blue-15d5:hover {
  background: var(--color-bg-alt);
}

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

.feature-blue-15d5[aria-expanded="true"] .secondary_mini_c598 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-east-9e80,
.filter-focused-f491 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.media-east-9e80 h4,
.filter-focused-f491 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.media-east-9e80 ul,
.filter-focused-f491 ul {
  list-style: none;
  padding: 0;
}

.media-east-9e80 li,
.filter-focused-f491 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.widget-87b4 {
  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);
}

.row-stone-0dfd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-e14e a:hover {
  color: white;
}

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

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

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

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

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

.notification-e881 a:hover {
  color: white;
}

.border-56da > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.notice_c2d4 .advanced_20a5 {
  color: #4caf50;
  font-size: 0.875rem;
}

.detail-7a27 {
  list-style: none;
  padding: 0;
}

.detail-7a27 li {
  margin-bottom: var(--space-xs);
}

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

.detail-7a27 a:hover {
  color: white;
}

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

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

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

.section_aa3e a:hover {
  color: white;
}

.border-56da {
  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);
}

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

.nav-19f7 a {
  color: #4caf50;
  text-decoration: none;
}

.dropdown-8f5a {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

.summary-lite-78f1 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.summary-lite-78f1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .border-56da {
    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;
  }
  
  .disabled-37b4 {
    font-size: 2rem;
  }
  
  .short_b158 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .banner_left_75ae,
  .header-slow-69e2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .list-fb2f,
  .search_8d3d,
  .backdrop_focused_37e1,
  .aside_fresh_42a5,
  .sidebar-warm-b13c,
  .panel-liquid-8039,
  .card_paper_9ca9,
  .large_dfb1,
  .paragraph-0659 {
    grid-template-columns: 1fr;
  }
  
  .text-ae64 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .short-b03c {
    padding: var(--space-lg) 0;
  }
  
  .dropdown-3332 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dropdown-3332 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accordion-medium-25c8 {
    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;
  }
  
  .text-ae64 {
    grid-template-columns: 1fr;
  }
  
  .lite_9457,
  .column_d4f0,
  .menu_1861 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade_narrow_af71,
  .top_f69e,
  .lite_9457 .accordion-medium-25c8,
  .column_d4f0 .accordion-medium-25c8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .disabled-37b4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .short_b158 {
    font-size: 1.375rem;
  }
  
  .background-389b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dynamic_90a1,
  .input-gold-554b,
  .pressed-9dfd,
  .banner-cc76,
  .hard-bf54 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .title-solid-3ad0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pattern_0cdf {
    gap: var(--space-xs);
  }
  
  .element-blue-1022 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .notification-tall-f165 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .short_84f8 {
    width: 150px;
    height: 150px;
  }
  
  .brown_8d4f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button-0739,
  .east-252f,
  .lite_9457,
  .grid_last_c504,
  .pagination_8434,
  .gold_695b,
  .container_slow_b6e4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .short-b03c {
    page-break-inside: avoid;
  }
}

/* css-noise: 2474 */
.promo-block-w7 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
