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

.photo_e12c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.link-blue-78a4,
header,
.inner-869a,
.card_b8f6,
.gradient_4d62,
.highlight_e49e,
.feature_active_f244,
.background_full_6403,
.wrapper_out_2e27 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.link-blue-78a4 {
  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);
}

.inner-3dba {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.link-blue-78a4.notification_4306 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.copper-f965 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.red-8847 {
  flex: 1;
}

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

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

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

.primary_4a92.caption-right-2327 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.right-3a8a {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.purple-0d79 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

/* Hamburger animation when active */
.border-bronze-7e73[aria-expanded="true"] .badge-clean-2642:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.border-bronze-7e73[aria-expanded="true"] .badge-clean-2642:nth-child(2) {
  opacity: 0;
}

.border-bronze-7e73[aria-expanded="true"] .badge-clean-2642:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .red-8847 {
    display: none;
  }
  
  .border-bronze-7e73 {
    display: flex;
  }
  
  .huge_e53f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .purple-0d79,
  .east_d87a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .right-3a8a {
    position: relative;
  }
  
  .middle_65d3 {
    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;
  }
  
  .alert_dark_e25a[aria-expanded="true"] + .middle_65d3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .preview-selected-9e6e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .bronze-674b {
    gap: 8px;
  }
  
  .purple-0d79 {
    display: none;
  }
  
  .east_d87a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .copper-f965 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .east_d87a {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .east_d87a svg {
    width: 14px;
    height: 14px;
  }
  
  .status-55cc {
    gap: var(--space-sm);
  }
}

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

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

.glass-626f {
  display: flex;
  align-items: center;
  gap: 6px;
}

.glass-626f svg {
  flex-shrink: 0;
}

.glass-626f a {
  color: var(--color-primary);
  text-decoration: none;
}

.glass-626f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.column-purple-ca6d {
  color: var(--color-text-lighter);
}

.menu-paper-875e {
  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) {
  .menu-paper-875e {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .menu-paper-875e {
    font-size: 1.5rem;
  }
}

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

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

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

.texture-67f7 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.heading-5160 {
  position: relative;
  text-align: center;
}

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

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

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

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

.popup-fluid-7e1b {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .in_e50c {
    grid-template-columns: 1fr;
  }
  
  .menu-paper-875e {
    font-size: 1.75rem;
  }
  
  .component_fixed_b728 {
    order: -1;
    max-width: 100%;
  }
  
  .heading-5160 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .menu-paper-875e {
    font-size: 1.5rem;
  }
  
  .warm_f68b {
    font-size: 1rem;
  }
  
  .orange_35cd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .heading-5160 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.up-07be {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-b5d6 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;
}

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

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

.tall-261c {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-dark-6a27 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.carousel-dark-6a27 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) {
  .highlight_1dab {
    grid-template-columns: 1fr;
  }
  
  .box_top_69a2 {
    font-size: 1.75rem;
  }
  
  .active-cf44 {
    max-width: 100%;
  }
}

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

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

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

.filter-copper-3c00 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.paragraph-north-9ab0 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.carousel_large_2907 {
  flex-shrink: 0;
}

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

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

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

.middle-87e9,
.logo_1d68,
.status_6a04 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.middle-87e9 thead,
.logo_1d68 thead {
  background: var(--color-primary);
  color: white;
}

.middle-87e9 th,
.middle-87e9 td,
.logo_1d68 th,
.logo_1d68 td,
.status_6a04 th,
.status_6a04 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .middle-87e9 th,
  .middle-87e9 td,
  .logo_1d68 th,
  .logo_1d68 td,
  .status_6a04 th,
  .status_6a04 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .middle-87e9,
  .logo_1d68,
  .status_6a04 {
    min-width: 600px;
  }
}

.middle-87e9 th,
.logo_1d68 th,
.status_6a04 th {
  font-weight: 600;
}

.middle-87e9 tbody tr:hover,
.logo_1d68 tbody tr:hover,
.status_6a04 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.outline_ee62 h4 {
  color: white;
}

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

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

.pagination-complex-ba47:last-child {
  border-bottom: none;
}

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

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

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

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

.steel-3d02:hover {
  text-decoration: underline;
}

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

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

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

.sort-369d {
  font-weight: 600;
  color: white;
}

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

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

.secondary-tall-7403 {
  color: #4caf50;
}

.label_active_0c37 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.wrapper-slow-1d01 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.section-stone-b60f {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.iron_83ad .article-6abf {
  width: 100%;
  background: white;
}

.picture_04cd .article-6abf {
  color: #667eea;
}

.message_pink_6900 .article-6abf {
  color: #f5576c;
}

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

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

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

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

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

.brown-335c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .row_c8a6 {
    padding: var(--space-md);
  }
  
  .brown-335c {
    padding: var(--space-md);
  }
  
  .secondary-22ad {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.selected-415a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.soft-b22c,
.active-first-7190,
.slider-efea,
.footer_first_a7f6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.hover-simple-1e79 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.thumbnail-silver-37af {
  border-color: var(--color-success);
}

.module-active-6fb2 {
  border-color: var(--color-warning);
}

.mask-south-fee3 {
  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);
}

.thumbnail-silver-37af .mask-south-fee3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.module-active-6fb2 .mask-south-fee3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.slider-hot-c57f {
  margin-top: var(--space-xxl);
}

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

.caption_iron_4e00 {
  text-align: center;
}

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

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

.active_3d8d .sort-369d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.alert-blue-97a0 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.liquid-e7b6 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.purple-1eff {
  text-align: right;
}

.purple-1eff .down_bafc {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.white-da4c {
  background: #e3f2fd;
  color: #1565c0;
}

.pink-dd3d {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-6c37 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.solid_db6d[aria-expanded="true"] .yellow-6c37 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.module-wood-3c57 {
  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);
}

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

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

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

.header-fluid-5dd0,
.breadcrumb_a415 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.header-fluid-5dd0 h4,
.breadcrumb_a415 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.header-fluid-5dd0 ul,
.breadcrumb_a415 ul {
  list-style: none;
  padding: 0;
}

.header-fluid-5dd0 li,
.breadcrumb_a415 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.detail-0cea {
  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);
}

.wrapper_ac59 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.info-fresh-8a3c {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.thumbnail-brown-ec31 .texture-67f7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.sort-3c74 {
  list-style: none;
  padding: 0;
}

.sort-3c74 li {
  margin-bottom: var(--space-xs);
}

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

.sort-3c74 a:hover {
  color: white;
}

.menu-next-e5d7 {
  list-style: none;
  padding: 0;
}

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

.menu-next-e5d7 a {
  color: #b0b0b0;
  text-decoration: none;
}

.menu-next-e5d7 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .silver_2dff {
    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;
  }
  
  .menu-paper-875e {
    font-size: 2rem;
  }
  
  .box_top_69a2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .in_e50c,
  .highlight_1dab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .avatar-8eeb,
  .thumbnail_95f0,
  .pressed-c7a8,
  .motion-6db6,
  .header_6161,
  .smooth_ef51,
  .pattern-left-f561,
  .media_1773 {
    grid-template-columns: 1fr;
  }
  
  .layout_4ff1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .feature_active_f244 {
    padding: var(--space-lg) 0;
  }
  
  .header-b5d6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .header-b5d6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .article-6abf {
    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;
  }
  
  .layout_4ff1 {
    grid-template-columns: 1fr;
  }
  
  .backdrop_active_82ff,
  .wood_88ea,
  .green_5bad {
    flex-direction: column;
    width: 100%;
  }
  
  .up-07be,
  .description_804f,
  .backdrop_active_82ff .article-6abf,
  .wood_88ea .article-6abf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .menu-paper-875e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .box_top_69a2 {
    font-size: 1.375rem;
  }
  
  .south_c587 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .column_08ec,
  .active-487c,
  .hard_43b6,
  .row_6985,
  .widget-b47b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .description-b3b8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .popup_easy_df98 {
    gap: var(--space-xs);
  }
  
  .glass-626f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tag-0937 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .active_3d8d {
    width: 150px;
    height: 150px;
  }
  
  .easy_78ee {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .link-blue-78a4,
  .inner-869a,
  .backdrop_active_82ff,
  .tabs_fff2,
  .background_full_6403,
  .wrapper_out_2e27,
  .border-bronze-7e73 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .feature_active_f244 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.shadow_thick_2796 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 5cab */
.shadow-element-p6 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
