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

.gas-0ccb:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dropdown-e492,
header,
.gallery-over-4664,
.filter_hot_7542,
.pattern-stale-e32d,
.element-c1df,
.active-bbe7,
.up_475d,
.warm_20a9 {
  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
   ============================================ */
.dropdown-e492 {
  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);
}

.rough-3d55 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

.primary-dynamic-7f9e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.backdrop-action-62fa {
  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;
}

.background-b23c {
  flex: 1;
}

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

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

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

.pagination_759e.fn-active-898f {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pressed_b9b3 svg {
  flex-shrink: 0;
}

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

.description-cold-c546: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);
}

.description-cold-c546 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.hero-down-0051[aria-expanded="true"] .table_liquid_f60f:nth-child(2) {
  opacity: 0;
}

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

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

  .background-b23c::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .background-b23c.secondary-outer-7b60 {
    display: block;
    right: 0;
  }
  
  .backdrop-611f {
    flex-direction: column;
    gap: 0;
  }
  
  .pagination_759e {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .background-b23c::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;
  }
  
  .background-b23c.secondary-outer-7b60::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .background-b23c {
    display: none;
  }
  
  .hero-down-0051 {
    display: flex;
  }
  
  .backdrop-action-62fa {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pressed_b9b3,
  .description-cold-c546 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .new_ef05 {
    position: relative;
  }
  
  .status-d5de {
    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;
  }
  
  .image_top_acec[aria-expanded="true"] + .status-d5de {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .logo_013f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .soft_9594 {
    gap: 8px;
  }
  
  .pressed_b9b3 {
    display: none;
  }
  
  .description-cold-c546 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .mask_f903 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.middle_98eb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.list-0bbc a {
  color: var(--color-primary);
  text-decoration: none;
}

.list-0bbc a:hover {
  text-decoration: underline;
}

.picture-short-7f82 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.heading-bright-e3bd {
  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;
}

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

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

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

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

.section-action-771f {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-8e31 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .image_008a {
    grid-template-columns: 1fr;
  }
  
  .tag_smooth_7390 {
    font-size: 1.75rem;
  }
  
  .section-action-771f {
    order: -1;
    max-width: 100%;
  }
  
  .menu-8e31 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tag_smooth_7390 {
    font-size: 1.5rem;
  }
  
  .thick_2375 {
    font-size: 1rem;
  }
  
  .list-0bbc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .menu-8e31 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.block-glass-5eeb {
  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;
}

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

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

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

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

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

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

.hover-copper-89cf {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fluid-ee5b 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) {
  .right_51e8 {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb_0a8b {
    font-size: 1.75rem;
  }
  
  .black_93e7 {
    max-width: 100%;
  }
}

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

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

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

.preview-basic-5e0d {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.texture-tiny-4fa1 {
  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;
}

.mask-outer-8d18 {
  flex-shrink: 0;
}

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

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

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

.widget_941c,
.widget_selected_59a6,
.card_4707 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.widget_941c thead,
.widget_selected_59a6 thead {
  background: var(--color-primary);
  color: white;
}

.widget_941c th,
.widget_941c td,
.widget_selected_59a6 th,
.widget_selected_59a6 td,
.card_4707 th,
.card_4707 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .widget_941c th,
  .widget_941c td,
  .widget_selected_59a6 th,
  .widget_selected_59a6 td,
  .card_4707 th,
  .card_4707 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .widget_941c,
  .widget_selected_59a6,
  .card_4707 {
    min-width: 600px;
  }
}

.widget_941c th,
.widget_selected_59a6 th,
.card_4707 th {
  font-weight: 600;
}

.widget_941c tbody tr:hover,
.widget_selected_59a6 tbody tr:hover,
.card_4707 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.banner_fb69 h4 {
  color: white;
}

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

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

.left-76c1:last-child {
  border-bottom: none;
}

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

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

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

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

.widget-f368:hover {
  text-decoration: underline;
}

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

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

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

.full-0e89 {
  font-weight: 600;
  color: white;
}

.old-cd1d {
  list-style: none;
  padding: 0;
}

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

.bright-01ab {
  color: #4caf50;
}

.disabled-up-0dfc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_brown_307d .block-glass-5eeb {
  width: 100%;
  background: white;
}

.steel-7ea7 .block-glass-5eeb {
  color: #667eea;
}

.preview-green-0da2 .block-glass-5eeb {
  color: #f5576c;
}

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

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

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

.box-23ad {
  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);
}

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

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

@media (max-width: 768px) {
  .description_0eb0 {
    padding: var(--space-md);
  }
  
  .text_medium_ccaf {
    padding: var(--space-md);
  }
  
  .text-8731 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.mini_c832,
.avatar_2956,
.fast-b6b4,
.video_west_0f0f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.column-blue-a6fa h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.surface-easy-91ac {
  border-color: var(--color-success);
}

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

.under-9ad1 {
  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);
}

.surface-easy-91ac .under-9ad1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.medium_78b4 .under-9ad1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-rough-21f9 {
  margin-top: var(--space-xxl);
}

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

.info-next-5f21 {
  text-align: center;
}

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

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

.next-8999 .full-0e89 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.under-5de9 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.search-9c0f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.media-tall-c7c2 {
  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;
}

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

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

.background-fixed-8f1b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.footer-e388 {
  text-align: right;
}

.footer-e388 .footer-f490 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.grid_upper_bbfb {
  background: #e8f5e9;
  color: #2e7d32;
}

.shadow-inner-6326 {
  background: #e3f2fd;
  color: #1565c0;
}

.purple_44e6 {
  background: #fff3e0;
  color: #e65100;
}

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

.hidden-dirty-668b span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.tiny-87a5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.highlight_warm_16b5[aria-expanded="true"] .tiny-87a5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.iron-3a61 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

.hard_1374,
.surface-875b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hard_1374 h4,
.surface-875b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hard_1374 ul,
.surface-875b ul {
  list-style: none;
  padding: 0;
}

.hard_1374 li,
.surface-875b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.shade-first-3b4c {
  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-first-3b4c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

.search-707f {
  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);
}

.down-5d0a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.solid-ce59 a:hover {
  color: white;
}

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

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

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

.accent-west-8835 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.accent-west-8835 a:hover {
  color: white;
}

.right-684a > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.paragraph-6554 .module-f7b3 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.out_025b a:hover {
  color: white;
}

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

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

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

.chip_067c a:hover {
  color: white;
}

.right-684a {
  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);
}

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

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

.accordion-dynamic-3161 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.narrow-aa9d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .right-684a {
    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;
  }
  
  .tag_smooth_7390 {
    font-size: 2rem;
  }
  
  .breadcrumb_0a8b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .image_008a,
  .right_51e8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .wide-f7e3,
  .basic-ea55,
  .tag_726d,
  .title-3cf3,
  .north-2851,
  .shade-first-3b4c,
  .hover_2a40,
  .tag_advanced_2f91,
  .outer_1809 {
    grid-template-columns: 1fr;
  }
  
  .item_over_395b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .active-bbe7 {
    padding: var(--space-lg) 0;
  }
  
  .overlay_c5ff li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .overlay_c5ff li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .block-glass-5eeb {
    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;
  }
  
  .item_over_395b {
    grid-template-columns: 1fr;
  }
  
  .grid_lower_d0c3,
  .breadcrumb_0891,
  .heading-9c5b {
    flex-direction: column;
    width: 100%;
  }
  
  .hover-copper-89cf,
  .form_top_cfed,
  .grid_lower_d0c3 .block-glass-5eeb,
  .breadcrumb_0891 .block-glass-5eeb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tag_smooth_7390 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .breadcrumb_0a8b {
    font-size: 1.375rem;
  }
  
  .stone_c500 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .banner_ae57,
  .texture_inner_efde,
  .blue_2efd,
  .focus-089f,
  .light_5c82 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hidden_7836 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .description_upper_df4c {
    gap: var(--space-xs);
  }
  
  .middle_98eb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hover_fluid_d9a0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .next-8999 {
    width: 150px;
    height: 150px;
  }
  
  .copper-d7cc {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dropdown-e492,
  .gallery-over-4664,
  .grid_lower_d0c3,
  .dim-ffc4,
  .up_475d,
  .warm_20a9,
  .hero-down-0051 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .active-bbe7 {
    page-break-inside: avoid;
  }
}

/* css-noise: 597c */
.promo-block-m3 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
