/* ============================================
   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)
   ============================================ */
.thick-6c4b {
  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;
}

.thick-6c4b:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.picture-gold-d8bd {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .picture-gold-d8bd {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .picture-gold-d8bd {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.dark_d5ee):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.dark_d5ee,
header,
.highlight-173f,
.gallery_light_0b20,
.status_under_db8e,
.gradient_small_a738,
.accordion-bronze-8271,
.sort-b837,
.focus_purple_dc66 {
  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
   ============================================ */
.dark_d5ee {
  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);
}

.small-c723 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.dark_d5ee.info-f803 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.out_b191 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.static_6c1d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.advanced_2a4f img {
  height: 36px;
  width: auto;
  display: block;
}

.black-fa7f {
  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;
}

.green_b5a8 {
  flex: 1;
}

.card_top_e4df {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.fixed-ae3f {
  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);
}

.fixed-ae3f:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.fixed-ae3f.footer-pro-fb3b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.orange-3f42 {
  position: relative;
}

.soft-0a54 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.soft-0a54 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.orange-3f42:hover .soft-0a54 svg,
.soft-0a54[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.filter-purple-fc96 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.orange-3f42:hover .filter-purple-fc96 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.filter-purple-fc96::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.slider_dynamic_ccf9 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.slider_dynamic_ccf9:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.slider_dynamic_ccf9[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.active_8903 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.filter-ba6b {
  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;
}

.filter-ba6b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.filter-ba6b svg {
  flex-shrink: 0;
}

/* Header Download Button */
.next_ab57 {
  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;
}

.next_ab57: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);
}

.next_ab57 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.sort-30b2 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.pro-b999 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.sort-30b2[aria-expanded="true"] .pro-b999:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.sort-30b2[aria-expanded="true"] .pro-b999:nth-child(2) {
  opacity: 0;
}

.sort-30b2[aria-expanded="true"] .pro-b999:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .green_b5a8 {
    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 */
  }

  .green_b5a8::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .green_b5a8.bright-4c57 {
    display: block;
    right: 0;
  }
  
  .card_top_e4df {
    flex-direction: column;
    gap: 0;
  }
  
  .fixed-ae3f {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .green_b5a8::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;
  }
  
  .green_b5a8.bright-4c57::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .green_b5a8 {
    display: none;
  }
  
  .sort-30b2 {
    display: flex;
  }
  
  .black-fa7f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .filter-ba6b,
  .next_ab57 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .orange-3f42 {
    position: relative;
  }
  
  .filter-purple-fc96 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .soft-0a54[aria-expanded="true"] + .filter-purple-fc96 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider_dynamic_ccf9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .active_8903 {
    gap: 8px;
  }
  
  .filter-ba6b {
    display: none;
  }
  
  .next_ab57 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .advanced_2a4f img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .next_ab57 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .next_ab57 svg {
    width: 14px;
    height: 14px;
  }
  
  .out_b191 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.highlight-173f {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.block_cool_2978 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.module_6b08 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.module_6b08 svg {
  flex-shrink: 0;
}

.module_6b08 a {
  color: var(--color-primary);
  text-decoration: none;
}

.module_6b08 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .block_cool_2978 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.gallery_light_0b20 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.card_529d {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .card_529d {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.stone_0fc4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.stone_0fc4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.stone_0fc4 a:hover {
  text-decoration: underline;
}

.link-right-8618 {
  color: var(--color-text-lighter);
}

.container-first-4532 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .container-first-4532 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container-first-4532 {
    font-size: 1.5rem;
  }
}

.blue-7116 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.highlight_pro_9593 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .highlight_pro_9593 {
    grid-template-columns: 1fr;
  }
}

.shadow-medium-7103 {
  display: flex;
  gap: var(--space-sm);
}

.element-b12b {
  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;
}

.pagination-e018 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pagination-e018 strong {
  font-weight: 600;
  color: var(--color-text);
}

.pagination-e018 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.active_0c2a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.focused-1a4b {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complex-f5c9 {
  position: relative;
  text-align: center;
}

.complex-f5c9 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.red-c6fc {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.banner-pink-e7fa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.text-warm-8e12 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.carousel-narrow-c52a {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.module_brown_db72 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.sidebar_26a2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .card_529d {
    grid-template-columns: 1fr;
  }
  
  .container-first-4532 {
    font-size: 1.75rem;
  }
  
  .focused-1a4b {
    order: -1;
    max-width: 100%;
  }
  
  .complex-f5c9 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container-first-4532 {
    font-size: 1.5rem;
  }
  
  .blue-7116 {
    font-size: 1rem;
  }
  
  .stone_0fc4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .complex-f5c9 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.dropdown-full-b0dc {
  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;
}

.mini_2e72 {
  background: var(--color-primary);
  color: white;
}

.mini_2e72:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.narrow-d05c {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.narrow-d05c:hover {
  background: var(--color-primary);
  color: white;
}

.overlay_focused_bc2d {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.overlay_focused_bc2d:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.over_f9d9 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.dirty-9e9b {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.status_under_db8e {
  padding: var(--space-xl) 0;
  background: white;
}

.picture_next_7674 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.thumbnail_b00d {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.thumbnail_b00d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.active_slow_e042 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.list_1ce5 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.alert_483a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.gradient_small_a738 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.message-478a {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.shade-544d {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.rough_6352 {
  list-style: none;
  counter-reset: toc-counter;
}

.rough_6352 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.rough_6352 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);
}

.rough_6352 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;
}

.rough_6352 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.accordion-bronze-8271 {
  padding: var(--space-xxl) 0;
}

.sidebar_warm_5a41 {
  background: var(--color-bg-section);
}

.logo_ac64 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.thumbnail_steel_960a {
  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);
}

.hidden_a266 {
  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);
}

.logo_486c {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.alert_wide_e2bc {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .alert_wide_e2bc {
    grid-template-columns: 1fr 300px;
  }
}

.focus_upper_feb7 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.focus_upper_feb7 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.focus_upper_feb7 pre,
.focus_upper_feb7 code {
  overflow-x: auto;
  max-width: 100%;
}

.focus_upper_feb7 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);
}

.focus_upper_feb7 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.focus_upper_feb7 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.focus_upper_feb7 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.focus_upper_feb7 ul,
.focus_upper_feb7 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.focus_upper_feb7 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.focus_upper_feb7 strong {
  font-weight: 600;
  color: var(--color-text);
}

.focus_upper_feb7 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.focus_upper_feb7 a:hover {
  color: var(--color-primary-dark);
}

.menu-c332 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.menu-c332 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.menu-c332 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) {
  .alert_wide_e2bc {
    grid-template-columns: 1fr;
  }
  
  .hidden_a266 {
    font-size: 1.75rem;
  }
  
  .focus_upper_feb7 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hidden_a266 {
    font-size: 1.5rem;
  }
  
  .focus_upper_feb7 h3 {
    font-size: 1.375rem;
  }
  
  .focus_upper_feb7 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.slider_a468 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.active-huge-fa98 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.form_orange_9eff {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.gallery-outer-67b6 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gradient_25d4 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.mask_first_79d9 {
  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;
}

.over-39aa {
  flex-shrink: 0;
}

.left-ca99 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.focus_228c {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .focus_228c {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.logo-2697,
.bronze-0229,
.bronze_b3ad {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-2697 thead,
.bronze-0229 thead {
  background: var(--color-primary);
  color: white;
}

.logo-2697 th,
.logo-2697 td,
.bronze-0229 th,
.bronze-0229 td,
.bronze_b3ad th,
.bronze_b3ad td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-2697 th,
  .logo-2697 td,
  .bronze-0229 th,
  .bronze-0229 td,
  .bronze_b3ad th,
  .bronze_b3ad td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .logo-2697,
  .bronze-0229,
  .bronze_b3ad {
    min-width: 600px;
  }
}

.logo-2697 th,
.bronze-0229 th,
.bronze_b3ad th {
  font-weight: 600;
}

.logo-2697 tbody tr:hover,
.bronze-0229 tbody tr:hover,
.bronze_b3ad tbody tr:hover {
  background: var(--color-bg-alt);
}

.caption-fe74 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.content-62e4 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.orange-d7a3 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.orange-d7a3 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.light-317a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.light-317a h4 {
  color: white;
}

.grid_0552 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.slider-1cd9 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.slider-1cd9:last-child {
  border-bottom: none;
}

.slider-1cd9 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.slider-1cd9 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.dim-eed3 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.description-5df1 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.description-5df1:hover {
  text-decoration: underline;
}

.orange_d66a {
  text-align: center;
  margin-bottom: var(--space-md);
}

.video_light_0e73 {
  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);
}

.video_light_0e73 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.card_left_4137 {
  font-weight: 600;
  color: white;
}

.background_last_30ae {
  list-style: none;
  padding: 0;
}

.background_last_30ae li {
  padding: var(--space-xs) 0;
}

.inner-55e8 {
  color: #4caf50;
}

.mask-west-918f {
  color: #ff9800;
}

.article_soft_7e24 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.right-7606 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.cool_36ef {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.info_advanced_46e3 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.bright-13c9 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.outline_93cf {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.block_yellow_83f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .block_yellow_83f8 {
    grid-template-columns: 1fr;
  }
}

.section-dynamic-d563 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.section-dynamic-d563:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.form_wood_836b {
  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;
}

.section-dynamic-d563 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section-dynamic-d563 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.footer-medium-2643 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.card_left_4137 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.panel-2fd1 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.primary-2b70 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.primary-2b70 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.advanced_39fb {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb_be2b {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.menu-5563 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .menu-5563 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.fresh_3cd5 {
  margin-top: var(--space-xxl);
}

.fresh_3cd5 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.tooltip_6010 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .tooltip_6010 {
    grid-template-columns: 1fr;
  }
}

.shade_fast_4268 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.center_3c7a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stone_d911 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.shade_fast_4268 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.shade_fast_4268 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.shade_fast_4268 li {
  padding: var(--space-xs) 0;
  color: white;
}

.shade_fast_4268 .dropdown-full-b0dc {
  width: 100%;
  background: white;
}

.center_3c7a .dropdown-full-b0dc {
  color: #667eea;
}

.stone_d911 .dropdown-full-b0dc {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.tooltip-first-1fb5 {
  max-width: 900px;
  margin: 0 auto;
}

.last_5c2a {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.short_de84 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.steel_7556 {
  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);
}

.short_de84 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.thumbnail_0c9d {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .short_de84 {
    padding: var(--space-md);
  }
  
  .thumbnail_0c9d {
    padding: var(--space-md);
  }
  
  .over-07cb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.hidden_a46c ol,
.hidden_a46c ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.hidden_a46c li {
  margin-bottom: var(--space-sm);
}

.hidden_a46c code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.photo_029b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.in-f130 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.over-07cb {
  margin-top: var(--space-lg);
  text-align: center;
}

.over-07cb img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.component_cf88,
.mask-0f0e,
.tertiary_661e,
.photo-bronze-203c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.overlay-red-0c88 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.heading_ba40 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.black-9d26 {
  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) {
  .black-9d26 {
    font-size: 0.625rem;
  }
}

.banner-clean-bcd6 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.banner-clean-bcd6:hover {
  background: var(--color-primary-dark);
}

.hero-1933 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.hero-1933 h4 {
  margin-bottom: var(--space-md);
}

.first-ca8e {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.panel_0a05 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.gradient_large_6595 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .gradient_large_6595 {
    grid-template-columns: 1fr;
  }
}

.breadcrumb_soft_ee90 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.dim_7fb0 {
  border-color: var(--color-success);
}

.avatar_in_6742 {
  border-color: var(--color-warning);
}

.static_4797 {
  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);
}

.dim_7fb0 .static_4797 {
  background: #e8f5e9;
  color: var(--color-success);
}

.avatar_in_6742 .static_4797 {
  background: #fff3e0;
  color: var(--color-warning);
}

.breadcrumb_soft_ee90 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.breadcrumb_soft_ee90 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.cool-1ffa {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.pro-dc25 {
  margin: var(--space-xxl) 0;
}

.pro-dc25 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.pro-dc25 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.basic-5a9a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .basic-5a9a {
    grid-template-columns: 1fr;
  }
}

.first_5ac2 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.first_5ac2 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.hovered_99ad {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.hovered_99ad input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.purple_7a27 {
  margin-top: var(--space-xxl);
}

.mini_fcb9 {
  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);
}

.badge-4327 {
  text-align: center;
}

.blue_2960 {
  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);
}

.upper_f231 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.blue_2960 .card_left_4137 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.image_53e1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.shadow-49f7 p {
  margin-bottom: var(--space-md);
}

.north_ee54 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .mini_fcb9 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.container-medium-63a2 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.thumbnail-short-8eea {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.form_brown_e4ff {
  margin-bottom: var(--space-xl);
}

.complex-ce83 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.popup-e2ba {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.over_9a95 {
  color: var(--color-text-light);
}

.out-765d {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pressed_3a15 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.header_current_5098 {
  font-weight: 600;
  color: var(--color-text);
}

.gallery_77c5 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.next-8dcc {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.hover_left_4f2e {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.picture_d29e {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.photo_3376 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.left_a057 {
  border: 2px solid #4caf50;
}

.in-d0ca {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.up-f39a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.simple_23d6 {
  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;
}

.bottom-9e99 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.tooltip_f560 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.progress_white_2e12 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.disabled_bd27 {
  text-align: right;
}

.disabled_bd27 .logo-d36b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.bottom-a094 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.card_9c68 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.card_9c68 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.feature_light_3a71 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.dynamic_9a77 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.paragraph_00a2 {
  background: #e8f5e9;
  color: #2e7d32;
}

.stone-fa9c {
  background: #e3f2fd;
  color: #1565c0;
}

.center_13fa {
  background: #fff3e0;
  color: #e65100;
}

.image_black_3bab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.image_black_3bab span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.chip-db07 {
  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);
}

.chip-db07:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.stone-d713 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.message-selected-a5e9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.message-selected-a5e9 strong {
  color: var(--color-primary);
}

.footer-dim-39b0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.feature_next_e239 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.container-down-762b {
  max-width: 900px;
  margin: 0 auto;
}

.link-silver-24ec {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.picture_hot_8b31 {
  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);
}

.picture_hot_8b31:hover {
  background: var(--color-bg-alt);
}

.component_6768 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.picture_hot_8b31[aria-expanded="true"] .component_6768 {
  transform: rotate(180deg);
}

.gas_c147 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.gas_c147 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.gas_c147 ul,
.gas_c147 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.gas_c147 li {
  margin-bottom: var(--space-xs);
}

.chip-4731 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.wrapper_west_3a0c {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.chip-4731 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.outer-94ac {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.pink-e985 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.active-568f {
  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);
}

.card_gas_4d25 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.content-4d1f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .content-4d1f {
    grid-template-columns: 1fr;
  }
}

.east-5117,
.thick_b74b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.east-5117 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.thick_b74b {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.east-5117 h4,
.thick_b74b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.east-5117 ul,
.thick_b74b ul {
  list-style: none;
  padding: 0;
}

.east-5117 li,
.thick_b74b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.gas_b8a7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .gas_b8a7 {
    grid-template-columns: 1fr;
  }
}

.primary-fresh-bff6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tag-wood-a415 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.block-c6d2 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.primary-fresh-bff6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.primary-fresh-bff6 ul {
  list-style: none;
  padding: 0;
}

.primary-fresh-bff6 li {
  padding: var(--space-xs) 0;
  color: white;
}

.background-f7ea {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.background-f7ea h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.background-f7ea p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.hero-hovered-52d0 {
  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);
}

.action-da44 {
  font-style: italic;
}

.huge-aa2a {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.next-0e2b {
  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;
}

.next-0e2b h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.next-0e2b p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.shadow_08ce {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.sort-b837 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.status_e83a {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.summary-48d8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .summary-48d8 {
    grid-template-columns: 1fr;
  }
}

.table_plasma_7efc {
  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);
}

.table_plasma_7efc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery_purple_488d {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.table_plasma_7efc h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.table_plasma_7efc p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.focus_purple_dc66 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.hidden_out_668e {
  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) */
.pattern-d34e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.outline-warm-85ce h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.outline-warm-85ce p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.status-f835 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.status-f835 li {
  margin-bottom: var(--space-xs);
}

.status-f835 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.status-f835 a:hover {
  color: white;
}

.icon-d0e2 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.icon-d0e2 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.icon-d0e2 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.yellow_938d {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.yellow_938d a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.yellow_938d a:hover {
  color: white;
}

.highlight_current_d2d5 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .hidden_out_668e,
  .pattern-d34e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.column-copper-1735 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.media-6b59 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.notice-49f8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.notice-49f8 .shadow-medium-7103 {
  color: #4caf50;
  font-size: 0.875rem;
}

.surface-5951 {
  list-style: none;
  padding: 0;
}

.surface-5951 li {
  margin-bottom: var(--space-xs);
}

.surface-5951 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.surface-5951 a:hover {
  color: white;
}

.black-1cda {
  list-style: none;
  padding: 0;
}

.black-1cda li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.black-1cda a {
  color: #b0b0b0;
  text-decoration: none;
}

.black-1cda a:hover {
  color: white;
}

.highlight_current_d2d5 {
  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);
}

.silver_cd9a p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.silver_cd9a a {
  color: #4caf50;
  text-decoration: none;
}

.advanced_194e {
  font-size: 0.75rem;
  color: #666666;
}

.menu-old-bbde {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.menu-old-bbde a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.menu-old-bbde 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;
}

.banner-right-6eb3 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.banner-right-6eb3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .highlight_current_d2d5 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .container-first-4532 {
    font-size: 2rem;
  }
  
  .hidden_a266 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .card_529d,
  .alert_wide_e2bc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block_yellow_83f8,
  .gradient_large_6595,
  .tooltip_6010,
  .basic-5a9a,
  .content-4d1f,
  .gas_b8a7,
  .summary-48d8,
  .hidden_out_668e,
  .pattern-d34e {
    grid-template-columns: 1fr;
  }
  
  .picture_next_7674 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .accordion-bronze-8271 {
    padding: var(--space-lg) 0;
  }
  
  .rough_6352 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .rough_6352 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dropdown-full-b0dc {
    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;
  }
  
  .picture_next_7674 {
    grid-template-columns: 1fr;
  }
  
  .active_0c2a,
  .shadow_08ce,
  .first-ca8e {
    flex-direction: column;
    width: 100%;
  }
  
  .over_f9d9,
  .dirty-9e9b,
  .active_0c2a .dropdown-full-b0dc,
  .shadow_08ce .dropdown-full-b0dc {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .container-first-4532 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hidden_a266 {
    font-size: 1.375rem;
  }
  
  .active_slow_e042 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thumbnail_b00d,
  .section-dynamic-d563,
  .orange-d7a3,
  .photo_3376,
  .last_5c2a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .black-9d26 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .block_cool_2978 {
    gap: var(--space-xs);
  }
  
  .module_6b08 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .video_light_0e73 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .blue_2960 {
    width: 150px;
    height: 150px;
  }
  
  .upper_f231 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dark_d5ee,
  .highlight-173f,
  .active_0c2a,
  .next-0e2b,
  .sort-b837,
  .focus_purple_dc66,
  .sort-30b2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .accordion-bronze-8271 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.outline_up_925a {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 50d7 */
.phantom-card-n7 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.0;
}
