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

.primary_advanced_f023:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.backdrop_633b,
header,
.outline_25cc,
.lite_b7fa,
.lower-3c9f,
.preview_2d90,
.purple-7efe,
.secondary_e90b,
.sidebar-outer-1a10 {
  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
   ============================================ */
.backdrop_633b {
  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);
}

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

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

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

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

.footer-north-95b8 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.focus-9293 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.iron_244c {
  flex: 1;
}

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

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

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

.module_b605.fn-active-7dc9 {
  background: var(--color-primary);
  color: white;
}

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

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

.menu-3f0e svg {
  transition: transform 0.2s ease;
}

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

.popup-9a87 {
  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;
}

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

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

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

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

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

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

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

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

.element_large_550c svg {
  flex-shrink: 0;
}

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

.heading-dim-a641: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);
}

.heading-dim-a641 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .iron_244c {
    display: none;
  }
  
  .solid-61bd {
    display: flex;
  }
  
  .dropdown_paper_372b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .element_large_550c,
  .heading-dim-a641 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .short_5278 {
    position: relative;
  }
  
  .popup-9a87 {
    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;
  }
  
  .menu-3f0e[aria-expanded="true"] + .popup-9a87 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module_16a1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pagination_plasma_ad0c {
    gap: 8px;
  }
  
  .element_large_550c {
    display: none;
  }
  
  .heading-dim-a641 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .focus-9293 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .heading-dim-a641 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .heading-dim-a641 svg {
    width: 14px;
    height: 14px;
  }
  
  .fixed-01d4 {
    gap: var(--space-sm);
  }
}

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

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

.large-3bba {
  display: flex;
  align-items: center;
  gap: 6px;
}

.large-3bba svg {
  flex-shrink: 0;
}

.large-3bba a {
  color: var(--color-primary);
  text-decoration: none;
}

.large-3bba a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-inner-81db {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-lower-41f3 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .bottom_ff08 {
    grid-template-columns: 1fr;
  }
  
  .huge-f362 {
    font-size: 1.75rem;
  }
  
  .selected_5515 {
    order: -1;
    max-width: 100%;
  }
  
  .title_red_ad61 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .huge-f362 {
    font-size: 1.5rem;
  }
  
  .upper_3c8b {
    font-size: 1rem;
  }
  
  .gradient_640c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .title_red_ad61 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_e54f 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_e54f 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_e54f li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.wood-9e33 {
  background: var(--color-bg-section);
}

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

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

.photo-complex-c901 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old-dda0 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) {
  .red_db6a {
    grid-template-columns: 1fr;
  }
  
  .photo-complex-c901 {
    font-size: 1.75rem;
  }
  
  .component_first_de0a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .photo-complex-c901 {
    font-size: 1.5rem;
  }
  
  .component_first_de0a h3 {
    font-size: 1.375rem;
  }
  
  .component_first_de0a h4 {
    font-size: 1.125rem;
  }
}

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

.container-113e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.card-old-2936 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.pattern_dcd9 {
  flex-shrink: 0;
}

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

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

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

.notification_e97f,
.alert_pink_0b33,
.dropdown-2ead {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notification_e97f thead,
.alert_pink_0b33 thead {
  background: var(--color-primary);
  color: white;
}

.notification_e97f th,
.notification_e97f td,
.alert_pink_0b33 th,
.alert_pink_0b33 td,
.dropdown-2ead th,
.dropdown-2ead td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notification_e97f th,
  .notification_e97f td,
  .alert_pink_0b33 th,
  .alert_pink_0b33 td,
  .dropdown-2ead th,
  .dropdown-2ead td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notification_e97f,
  .alert_pink_0b33,
  .dropdown-2ead {
    min-width: 600px;
  }
}

.notification_e97f th,
.alert_pink_0b33 th,
.dropdown-2ead th {
  font-weight: 600;
}

.notification_e97f tbody tr:hover,
.alert_pink_0b33 tbody tr:hover,
.dropdown-2ead tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.carousel-warm-c2b4 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview-ae3a {
  list-style: none;
  padding: 0;
}

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

.right-9cda {
  color: #4caf50;
}

.gallery_2d2b {
  color: #ff9800;
}

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

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

.nav-advanced-0f95 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.description-359e {
  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;
}

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

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

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

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

.detail-top-4bdb {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wood_8290 .tooltip-hot-d867 {
  width: 100%;
  background: white;
}

.last-a5fe .tooltip-hot-d867 {
  color: #667eea;
}

.disabled-in-6610 .tooltip-hot-d867 {
  color: #f5576c;
}

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

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

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

.dirty-80cc {
  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);
}

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

.image-static-7344 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .light_6d35 {
    padding: var(--space-md);
  }
  
  .image-static-7344 {
    padding: var(--space-md);
  }
  
  .icon_aa6e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.main-19e5,
.bottom-acea,
.hidden-3a87,
.banner_paper_0908 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary_mini_ddc7 .bright_639d {
  background: #e8f5e9;
  color: var(--color-success);
}

.simple_7d88 .bright_639d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.thumbnail-medium-4f90 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.backdrop-prev-70d0 {
  text-align: center;
}

.section-under-0e1a {
  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);
}

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

.section-under-0e1a .search_action_0c65 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.card-green-8bf3 {
  color: var(--color-text-light);
}

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

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

.light-678c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.heading_easy_4f19 {
  text-align: right;
}

.heading_easy_4f19 .layout-simple-029b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.carousel-7212 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.frame-blue-e9b0 {
  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);
}

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

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

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

.banner-copper-5e46 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.breadcrumb-gas-be88 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.next_1f71[aria-expanded="true"] .breadcrumb-gas-be88 {
  transform: rotate(180deg);
}

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

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

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

.container-hovered-b0ad li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.icon-8e98,
.wood_f169 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.icon-8e98 h4,
.wood_f169 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon-8e98 ul,
.wood_f169 ul {
  list-style: none;
  padding: 0;
}

.icon-8e98 li,
.wood_f169 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.simple-83cf {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-lower-05b0 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.media-lower-05b0 li {
  margin-bottom: var(--space-xs);
}

.media-lower-05b0 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.media-lower-05b0 a:hover {
  color: white;
}

.search-left-2ca6 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.search-left-2ca6 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);
}

.search-left-2ca6 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.sort_02b7 a:hover {
  color: white;
}

.video-light-6137 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .preview-old-75e3,
  .glass_5afb {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.overlay-5bad .hero-inner-81db {
  color: #4caf50;
  font-size: 0.875rem;
}

.heading-lower-da35 {
  list-style: none;
  padding: 0;
}

.heading-lower-da35 li {
  margin-bottom: var(--space-xs);
}

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

.heading-lower-da35 a:hover {
  color: white;
}

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

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

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

.footer_a23f a:hover {
  color: white;
}

.video-light-6137 {
  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);
}

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

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

.border-static-8191 {
  font-size: 0.75rem;
  color: #666666;
}

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

.pagination-selected-8ec4 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.pagination-selected-8ec4 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;
}

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

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

@media (max-width: 768px) {
  .video-light-6137 {
    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;
  }
  
  .huge-f362 {
    font-size: 2rem;
  }
  
  .photo-complex-c901 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .bottom_ff08,
  .red_db6a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .panel_fb07,
  .table-81a8,
  .solid-af42,
  .progress-a63b,
  .thumbnail_18af,
  .badge_d783,
  .tooltip_5f4a,
  .preview-old-75e3,
  .glass_5afb {
    grid-template-columns: 1fr;
  }
  
  .background-cool-7856 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .purple-7efe {
    padding: var(--space-lg) 0;
  }
  
  .overlay_e54f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .overlay_e54f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tooltip-hot-d867 {
    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;
  }
  
  .background-cool-7856 {
    grid-template-columns: 1fr;
  }
  
  .search_4d28,
  .center_e201,
  .fresh_d3a6 {
    flex-direction: column;
    width: 100%;
  }
  
  .tiny_01b2,
  .shadow_fb0a,
  .search_4d28 .tooltip-hot-d867,
  .center_e201 .tooltip-hot-d867 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .huge-f362 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .photo-complex-c901 {
    font-size: 1.375rem;
  }
  
  .slider-down-5b47 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .over_1150,
  .out_caa7,
  .secondary_pink_624b,
  .old-bf1a,
  .pagination-easy-e995 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .surface-5694 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .over_2cff {
    gap: var(--space-xs);
  }
  
  .large-3bba {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .sort-f774 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .section-under-0e1a {
    width: 150px;
    height: 150px;
  }
  
  .list_4e57 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .backdrop_633b,
  .outline_25cc,
  .search_4d28,
  .nav-9265,
  .secondary_e90b,
  .sidebar-outer-1a10,
  .solid-61bd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .purple-7efe {
    page-break-inside: avoid;
  }
}

/* css-noise: ceee */
.promo-block-f1 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
