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

.pattern-4e8e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.hidden-d777,
header,
.article-east-9621,
.logo-clean-6ad7,
.preview_5756,
.button-2d48,
.hero-cb18,
.focus-a4e4,
.bright_2e31 {
  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
   ============================================ */
.hidden-d777 {
  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);
}

.article-22ac {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.hidden-d777.form-new-41e0 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.box-eeb8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.thumbnail_5bc4 {
  flex: 1;
}

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

.module-a977 {
  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-a977:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.module-a977.fn-active-6d6f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.in-4e6c {
  position: relative;
}

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

.main-8740 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.focused-4154 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.tooltip-stale-6c4f {
  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;
}

.tooltip-stale-6c4f: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);
}

.tooltip-stale-6c4f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.highlight-4e28[aria-expanded="true"] .filter-9fb2:nth-child(2) {
  opacity: 0;
}

.highlight-4e28[aria-expanded="true"] .filter-9fb2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .thumbnail_5bc4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .thumbnail_5bc4.tag-copper-22e9 {
    display: block;
    right: 0;
  }
  
  .large-e372 {
    flex-direction: column;
    gap: 0;
  }
  
  .module-a977 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .thumbnail_5bc4::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;
  }
  
  .thumbnail_5bc4.tag-copper-22e9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .thumbnail_5bc4 {
    display: none;
  }
  
  .highlight-4e28 {
    display: flex;
  }
  
  .next-7c12 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .focused-4154,
  .tooltip-stale-6c4f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .in-4e6c {
    position: relative;
  }
  
  .surface_c4bc {
    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;
  }
  
  .main-8740[aria-expanded="true"] + .surface_c4bc {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .narrow_7c1f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .up_d190 {
    gap: 8px;
  }
  
  .focused-4154 {
    display: none;
  }
  
  .tooltip-stale-6c4f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .box-eeb8 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tooltip-stale-6c4f {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .tooltip-stale-6c4f svg {
    width: 14px;
    height: 14px;
  }
  
  .input_e0ef {
    gap: var(--space-sm);
  }
}

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

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

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

.message_5f04 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.narrow-5063 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.hidden-0840 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

.orange-1a13 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thick-de75 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .aside-7f8b {
    grid-template-columns: 1fr;
  }
  
  .warm-1e2a {
    font-size: 1.75rem;
  }
  
  .orange-1a13 {
    order: -1;
    max-width: 100%;
  }
  
  .thick-de75 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .warm-1e2a {
    font-size: 1.5rem;
  }
  
  .active-9194 {
    font-size: 1rem;
  }
  
  .narrow-5063 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .thick-de75 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.section-upper-10e6 {
  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;
}

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

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

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

.summary-last-a2de:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.feature-top-0e3c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.up-971a {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-f0df 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-8562 {
    grid-template-columns: 1fr;
  }
  
  .up-971a {
    font-size: 1.75rem;
  }
  
  .card_d312 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .up-971a {
    font-size: 1.5rem;
  }
  
  .card_d312 h3 {
    font-size: 1.375rem;
  }
  
  .card_d312 h4 {
    font-size: 1.125rem;
  }
}

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

.dropdown-72b3 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.main_d87f {
  flex-shrink: 0;
}

.sidebar-prev-99e3 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

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

.component_yellow_fce8 thead,
.right_e4c2 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.component_yellow_fce8 th,
.right_e4c2 th,
.advanced_25a3 th {
  font-weight: 600;
}

.component_yellow_fce8 tbody tr:hover,
.right_e4c2 tbody tr:hover,
.advanced_25a3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.button-white-1b9e {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.picture_active_20ca h4 {
  color: white;
}

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

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

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

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

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

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

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

.card-iron-f053:hover {
  text-decoration: underline;
}

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

.item-wide-8adb {
  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);
}

.item-wide-8adb span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.grid-06be {
  list-style: none;
  padding: 0;
}

.grid-06be li {
  padding: var(--space-xs) 0;
}

.text_eb11 {
  color: #4caf50;
}

.photo_aef6 {
  color: #ff9800;
}

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

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

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

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

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

.message-cool-11ac {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.medium-15bf {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.article-08d7 .section-upper-10e6 {
  width: 100%;
  background: white;
}

.icon_smooth_3fa6 .section-upper-10e6 {
  color: #667eea;
}

.section_pro_1736 .section-upper-10e6 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .disabled_bdf3 {
    padding: var(--space-md);
  }
  
  .top-4778 {
    padding: var(--space-md);
  }
  
  .breadcrumb-fbf4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.media_focused_d0c5,
.tertiary_left_88b8,
.input_f038,
.panel_02fb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.over-0eeb:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.aside_smooth_b29d .dropdown_outer_3189 {
  background: #e8f5e9;
  color: var(--color-success);
}

.west_f1fc .dropdown_outer_3189 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mini-01c9 {
  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);
}

.warm-c11d {
  text-align: center;
}

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

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

.dropdown_easy_801a .link_aeb2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.container-94e7 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-e86c {
  border: 2px solid #4caf50;
}

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

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

.purple-5bfd {
  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;
}

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

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

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

.tabs_mini_7579 {
  text-align: right;
}

.tabs_mini_7579 .text-ec5a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.logo-light-3962 {
  background: #e8f5e9;
  color: #2e7d32;
}

.static-0f69 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.border-lite-1dc3 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.static-0ac0 {
  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);
}

.static-0ac0:hover {
  background: var(--color-bg-alt);
}

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

.static-0ac0[aria-expanded="true"] .thumbnail_south_a241 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-medium-10f6,
.container_0432 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.wrapper-medium-10f6 h4,
.container_0432 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.wrapper-medium-10f6 ul,
.container_0432 ul {
  list-style: none;
  padding: 0;
}

.wrapper-medium-10f6 li,
.container_0432 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.motion-dfdb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.border-smooth-e722 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.widget_gold_4931 a:hover {
  color: white;
}

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

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

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

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

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

.tabs_slow_70d9 a:hover {
  color: white;
}

.hidden-over-4af3 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.detail_da55 .wide-cd29 {
  color: #4caf50;
  font-size: 0.875rem;
}

.notice-fc81 {
  list-style: none;
  padding: 0;
}

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

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

.notice-fc81 a:hover {
  color: white;
}

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

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

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

.surface_d2d3 a:hover {
  color: white;
}

.hidden-over-4af3 {
  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);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hidden-over-4af3 {
    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;
  }
  
  .warm-1e2a {
    font-size: 2rem;
  }
  
  .up-971a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .aside-7f8b,
  .red-8562 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .dirty_bbb7,
  .static_a896,
  .gold-25dc,
  .label-b6cf,
  .label_current_93d4,
  .outline-north-259c,
  .media-3521,
  .cold_729c,
  .box_copper_2d4e {
    grid-template-columns: 1fr;
  }
  
  .box-easy-997f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero-cb18 {
    padding: var(--space-lg) 0;
  }
  
  .tag_glass_fe17 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tag_glass_fe17 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .section-upper-10e6 {
    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;
  }
  
  .box-easy-997f {
    grid-template-columns: 1fr;
  }
  
  .icon_outer_990e,
  .table_9828,
  .solid-ecdb {
    flex-direction: column;
    width: 100%;
  }
  
  .yellow_5174,
  .down-cec3,
  .icon_outer_990e .section-upper-10e6,
  .table_9828 .section-upper-10e6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .warm-1e2a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .up-971a {
    font-size: 1.375rem;
  }
  
  .silver-d863 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .brown_8496,
  .wood-1c7b,
  .texture-pressed-4c11,
  .secondary-fed1,
  .module-selected-7884 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .item_orange_3713 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .link-light-63ce {
    gap: var(--space-xs);
  }
  
  .message_5f04 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .item-wide-8adb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dropdown_easy_801a {
    width: 150px;
    height: 150px;
  }
  
  .outer_9f66 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hidden-d777,
  .article-east-9621,
  .icon_outer_990e,
  .link_active_abea,
  .focus-a4e4,
  .bright_2e31,
  .highlight-4e28 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-cb18 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1186 */
.shadow-element-n2 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
