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

.plasma_393e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.breadcrumb-paper-809b,
header,
.photo_51ce,
.badge_copper_12aa,
.easy-5eae,
.dirty-da1b,
.module-bdc7,
.link-af41,
.backdrop_3188 {
  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
   ============================================ */
.breadcrumb-paper-809b {
  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);
}

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

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

/* Scrolled state */
.breadcrumb-paper-809b.yellow-5ac2 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.container-aa33 img {
  height: 36px;
  width: auto;
  display: block;
}

.hover-1f8f {
  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;
}

.copper-73d0 {
  flex: 1;
}

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

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

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

.pro_852f.fn-active-13ec {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.complex-d12c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.basic-1984 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .copper-73d0 {
    display: none;
  }
  
  .outline_a0ad {
    display: flex;
  }
  
  .hover-1f8f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .basic-1984,
  .image_1439 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .complex-d12c {
    position: relative;
  }
  
  .west_1ca0 {
    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;
  }
  
  .tabs_in_2cfd[aria-expanded="true"] + .west_1ca0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .blue_3eac {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .widget_69bd {
    gap: 8px;
  }
  
  .basic-1984 {
    display: none;
  }
  
  .image_1439 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .container-aa33 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.selected-42ab {
  display: flex;
  align-items: center;
  gap: 6px;
}

.selected-42ab svg {
  flex-shrink: 0;
}

.selected-42ab a {
  color: var(--color-primary);
  text-decoration: none;
}

.selected-42ab a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-old-8566 {
  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;
}

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

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

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

.tooltip-fast-a439 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .accent_static_4c3c {
    grid-template-columns: 1fr;
  }
  
  .container_dim_63c0 {
    font-size: 1.75rem;
  }
  
  .grid-eae0 {
    order: -1;
    max-width: 100%;
  }
  
  .text-b349 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container_dim_63c0 {
    font-size: 1.5rem;
  }
  
  .summary_b4c0 {
    font-size: 1rem;
  }
  
  .slow_7880 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .text-b349 {
    max-width: 250px;
  }
}

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

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

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

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

.nav-wood-c80e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-green-317d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.accordion-green-317d 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) {
  .out_6c42 {
    grid-template-columns: 1fr;
  }
  
  .last-2588 {
    font-size: 1.75rem;
  }
  
  .under_e5b2 {
    max-width: 100%;
  }
}

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

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

.plasma-832a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.tag-full-89ad {
  flex-shrink: 0;
}

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

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

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

.pro_17ce,
.main-7da3,
.alert_up_a52f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pro_17ce thead,
.main-7da3 thead {
  background: var(--color-primary);
  color: white;
}

.pro_17ce th,
.pro_17ce td,
.main-7da3 th,
.main-7da3 td,
.alert_up_a52f th,
.alert_up_a52f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pro_17ce th,
  .pro_17ce td,
  .main-7da3 th,
  .main-7da3 td,
  .alert_up_a52f th,
  .alert_up_a52f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pro_17ce,
  .main-7da3,
  .alert_up_a52f {
    min-width: 600px;
  }
}

.pro_17ce th,
.main-7da3 th,
.alert_up_a52f th {
  font-weight: 600;
}

.pro_17ce tbody tr:hover,
.main-7da3 tbody tr:hover,
.alert_up_a52f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hover_new_fe34 h4 {
  color: white;
}

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

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

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

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

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

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

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

.thumbnail_new_a1f4:hover {
  text-decoration: underline;
}

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

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

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

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

.slider-f8f3 {
  list-style: none;
  padding: 0;
}

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

.layout_liquid_747c {
  color: #4caf50;
}

.dynamic_5311 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.gallery-huge-5210 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.small-8f98 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.green_a247 .row_out_524b {
  width: 100%;
  background: white;
}

.background-fluid-f9f7 .row_out_524b {
  color: #667eea;
}

.input-cool-794f .row_out_524b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-a6fe {
    padding: var(--space-md);
  }
  
  .black-4494 {
    padding: var(--space-md);
  }
  
  .rough-4580 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.panel_current_fc93,
.card_9e01,
.filter_ba81,
.filter_warm_ea1e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content_a0d7 .element-orange-d58c {
  background: #e8f5e9;
  color: var(--color-success);
}

.secondary-c58a .element-orange-d58c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.caption-center-c84c {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.middle-4afa {
  text-align: center;
}

.rough-734b {
  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);
}

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

.rough-734b .tabs_active_3b74 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.badge-selected-e0d9 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.box-advanced-f4e8 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.pagination-e1f5 {
  border: 2px solid #4caf50;
}

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

.soft-93a1 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.static_3ed4 {
  text-align: right;
}

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

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

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

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

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

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

.module-81a7 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.header-4935 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.main-7cb0 strong {
  color: var(--color-primary);
}

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

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

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

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

.tag-3b8d {
  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);
}

.tag-3b8d:hover {
  background: var(--color-bg-alt);
}

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

.tag-3b8d[aria-expanded="true"] .texture_hovered_ed81 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.gas-3d17 {
  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);
}

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

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

@media (max-width: 768px) {
  .shade-white-13b9 {
    grid-template-columns: 1fr;
  }
}

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

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

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

.in_0104 h4,
.shade_basic_598c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.in_0104 ul,
.shade_basic_598c ul {
  list-style: none;
  padding: 0;
}

.in_0104 li,
.shade_basic_598c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.modal_cf44 {
  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-72ba {
  font-style: italic;
}

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

.slider-834f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-focused-727b {
  list-style: none;
  padding: 0;
  margin: 0;
}

.secondary-focused-727b li {
  margin-bottom: var(--space-xs);
}

.secondary-focused-727b a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.secondary-focused-727b a:hover {
  color: white;
}

.description-red-83dd {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.description-red-83dd 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);
}

.description-red-83dd a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.content_1df6 a:hover {
  color: white;
}

.west-299b > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.hot_fe74 .warm_8115 {
  color: #4caf50;
  font-size: 0.875rem;
}

.picture-soft-521e {
  list-style: none;
  padding: 0;
}

.picture-soft-521e li {
  margin-bottom: var(--space-xs);
}

.picture-soft-521e a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.picture-soft-521e a:hover {
  color: white;
}

.cold-435c {
  list-style: none;
  padding: 0;
}

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

.cold-435c a {
  color: #b0b0b0;
  text-decoration: none;
}

.cold-435c a:hover {
  color: white;
}

.west-299b {
  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);
}

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

.notice-stale-75cd a {
  color: #4caf50;
  text-decoration: none;
}

.image-fba3 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.motion_dd77:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .west-299b {
    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;
  }
  
  .container_dim_63c0 {
    font-size: 2rem;
  }
  
  .last-2588 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .accent_static_4c3c,
  .out_6c42 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hot-f116,
  .hard-eb28,
  .lite-b397,
  .aside-down-7589,
  .shade-white-13b9,
  .content-stale-ea1e,
  .outline_ff94,
  .avatar-small-fb23,
  .outline_f160 {
    grid-template-columns: 1fr;
  }
  
  .stone_86a1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .module-bdc7 {
    padding: var(--space-lg) 0;
  }
  
  .cold_9f33 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .cold_9f33 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .row_out_524b {
    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;
  }
  
  .stone_86a1 {
    grid-template-columns: 1fr;
  }
  
  .tooltip-fast-a439,
  .hovered_cbb3,
  .slider_stale_d012 {
    flex-direction: column;
    width: 100%;
  }
  
  .solid_0e77,
  .tertiary-a9f9,
  .tooltip-fast-a439 .row_out_524b,
  .hovered_cbb3 .row_out_524b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .container_dim_63c0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .last-2588 {
    font-size: 1.375rem;
  }
  
  .element_bright_6782 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .upper_9bff,
  .footer_silver_1771,
  .solid_ee0a,
  .dim-a4a9,
  .container_e884 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .preview_3e9b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .banner-a110 {
    gap: var(--space-xs);
  }
  
  .selected-42ab {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column-a1d9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .rough-734b {
    width: 150px;
    height: 150px;
  }
  
  .pattern-red-d10e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .breadcrumb-paper-809b,
  .photo_51ce,
  .tooltip-fast-a439,
  .slider-834f,
  .link-af41,
  .backdrop_3188,
  .outline_a0ad {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .module-bdc7 {
    page-break-inside: avoid;
  }
}

/* css-noise: 08c3 */
.widget-item-b8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
