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

.old-204a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.sidebar_040d,
header,
.complex-9e95,
.hot-4c4a,
.slow-a277,
.box_e0b3,
.yellow-10b2,
.gas-deb8,
.widget_b160 {
  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
   ============================================ */
.sidebar_040d {
  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);
}

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

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

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

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

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

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

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

.article-8c81 {
  flex: 1;
}

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

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

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

.panel_4eec.fn-active-347d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.red-8b4c {
  position: relative;
}

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

.message-1fb6 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.hero-south-45c5 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.icon_orange_c335 svg {
  flex-shrink: 0;
}

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

.complex-95ba: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);
}

.complex-95ba svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.feature-d0e4[aria-expanded="true"] .disabled_bcb9:nth-child(2) {
  opacity: 0;
}

.feature-d0e4[aria-expanded="true"] .disabled_bcb9:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .article-8c81 {
    display: none;
  }
  
  .feature-d0e4 {
    display: flex;
  }
  
  .frame-fdda {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .icon_orange_c335,
  .complex-95ba {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .red-8b4c {
    position: relative;
  }
  
  .lower-4168 {
    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;
  }
  
  .message-1fb6[aria-expanded="true"] + .lower-4168 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .easy_f09b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hero-south-45c5 {
    gap: 8px;
  }
  
  .icon_orange_c335 {
    display: none;
  }
  
  .complex-95ba {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .gallery_e57c img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .complex-95ba {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .complex-95ba svg {
    width: 14px;
    height: 14px;
  }
  
  .banner-13a1 {
    gap: var(--space-sm);
  }
}

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

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

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

.white_65cc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.stale-202a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.thumbnail-1455 {
  display: flex;
  gap: var(--space-sm);
}

.caption-small-8f08 {
  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;
}

.accent-tall-5b4b {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accent-tall-5b4b strong {
  font-weight: 600;
  color: var(--color-text);
}

.accent-tall-5b4b span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.menu-hard-7c07 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.title-3ddc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-motion-f0e0 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .next-9338 {
    grid-template-columns: 1fr;
  }
  
  .pagination_prev_3b57 {
    font-size: 1.75rem;
  }
  
  .title-3ddc {
    order: -1;
    max-width: 100%;
  }
  
  .notification-motion-f0e0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pagination_prev_3b57 {
    font-size: 1.5rem;
  }
  
  .wrapper_next_60d6 {
    font-size: 1rem;
  }
  
  .hard_02bf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notification-motion-f0e0 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.iron-f763 {
  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;
}

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

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

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

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

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

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

.focus-stale-4c83 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.link-fresh-6c0d {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.glass-0958 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;
}

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

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

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

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

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

.surface-soft-af8e {
  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);
}

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

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

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

.filter-bright-638b {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.filter-bright-638b img {
  max-width: 100%;
  height: auto;
  display: block;
}

.filter-bright-638b pre,
.filter-bright-638b code {
  overflow-x: auto;
  max-width: 100%;
}

.filter-bright-638b 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);
}

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

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

.filter-bright-638b p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.filter-bright-638b ul,
.filter-bright-638b ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.filter-bright-638b li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.filter-bright-638b strong {
  font-weight: 600;
  color: var(--color-text);
}

.filter-bright-638b a {
  color: var(--color-primary);
  text-decoration: underline;
}

.filter-bright-638b a:hover {
  color: var(--color-primary-dark);
}

.gallery-purple-0f2d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.gallery-purple-0f2d 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) {
  .dropdown_df48 {
    grid-template-columns: 1fr;
  }
  
  .surface-soft-af8e {
    font-size: 1.75rem;
  }
  
  .filter-bright-638b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .surface-soft-af8e {
    font-size: 1.5rem;
  }
  
  .filter-bright-638b h3 {
    font-size: 1.375rem;
  }
  
  .filter-bright-638b h4 {
    font-size: 1.125rem;
  }
}

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

.left-69f0 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.purple-35e0 {
  flex-shrink: 0;
}

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

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

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

.label_1052,
.fluid_3b2b,
.outline-narrow-7406 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.label_1052 thead,
.fluid_3b2b thead {
  background: var(--color-primary);
  color: white;
}

.label_1052 th,
.label_1052 td,
.fluid_3b2b th,
.fluid_3b2b td,
.outline-narrow-7406 th,
.outline-narrow-7406 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .label_1052 th,
  .label_1052 td,
  .fluid_3b2b th,
  .fluid_3b2b td,
  .outline-narrow-7406 th,
  .outline-narrow-7406 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .label_1052,
  .fluid_3b2b,
  .outline-narrow-7406 {
    min-width: 600px;
  }
}

.label_1052 th,
.fluid_3b2b th,
.outline-narrow-7406 th {
  font-weight: 600;
}

.label_1052 tbody tr:hover,
.fluid_3b2b tbody tr:hover,
.outline-narrow-7406 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.light_bc3b h4 {
  color: white;
}

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

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

.preview-stale-9518:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.preview-current-500f {
  list-style: none;
  padding: 0;
}

.preview-current-500f li {
  padding: var(--space-xs) 0;
}

.steel-c580 {
  color: #4caf50;
}

.article_0b9d {
  color: #ff9800;
}

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

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

.header-motion-5ac2 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough_7efd .iron-f763 {
  width: 100%;
  background: white;
}

.preview-4339 .iron-f763 {
  color: #667eea;
}

.right_b992 .iron-f763 {
  color: #f5576c;
}

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

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

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

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

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

.status-84b3 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .slow_201a {
    padding: var(--space-md);
  }
  
  .status-84b3 {
    padding: var(--space-md);
  }
  
  .photo_e50e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.label-2e54,
.panel-90c1,
.menu_paper_2d45,
.banner-complex-c89b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.status-dark-7d29 {
  border-color: var(--color-success);
}

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

.preview-static-7a52 {
  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);
}

.status-dark-7d29 .preview-static-7a52 {
  background: #e8f5e9;
  color: var(--color-success);
}

.accordion_tiny_f240 .preview-static-7a52 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-dark-afdb {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.box-hovered-5435 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.message-last-14fc {
  border: 2px solid #4caf50;
}

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

.gallery-lite-4999 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.black_7df7 {
  text-align: right;
}

.black_7df7 .tooltip_368a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hovered-5fa4 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.static-17fe {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.notification-tiny-0bb8 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.breadcrumb-dirty-3efc {
  max-width: 900px;
  margin: 0 auto;
}

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

.component-white-9f0e {
  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);
}

.component-white-9f0e:hover {
  background: var(--color-bg-alt);
}

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

.component-white-9f0e[aria-expanded="true"] .badge_40c2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_3f98,
.short-3217 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.frame_3f98 h4,
.short-3217 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.frame_3f98 ul,
.short-3217 ul {
  list-style: none;
  padding: 0;
}

.frame_3f98 li,
.short-3217 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.pattern-2cdf {
  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);
}

.hero_stale_0e7c {
  font-style: italic;
}

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

.yellow-3ba9 {
  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;
}

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

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

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

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

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

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

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

.section-lite-4c69 {
  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);
}

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

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

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

.section-lite-4c69 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.steel_47f3 a:hover {
  color: white;
}

.widget-active-718a {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.widget-active-718a 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);
}

.widget-active-718a a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.purple_1190 a:hover {
  color: white;
}

.tiny-3933 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.search-fixed-a9ab .thumbnail-1455 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.button_0549 a:hover {
  color: white;
}

.action-1fbb {
  list-style: none;
  padding: 0;
}

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

.action-1fbb a {
  color: #b0b0b0;
  text-decoration: none;
}

.action-1fbb a:hover {
  color: white;
}

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

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

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

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

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

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

.progress-pink-d443 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;
}

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

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

@media (max-width: 768px) {
  .tiny-3933 {
    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;
  }
  
  .pagination_prev_3b57 {
    font-size: 2rem;
  }
  
  .surface-soft-af8e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .next-9338,
  .dropdown_df48 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .steel_8b26,
  .new-22a2,
  .progress_2085,
  .up-a569,
  .in-be66,
  .filter_0236,
  .pattern_active_001b,
  .video-hovered-ded8,
  .detail_ccf6 {
    grid-template-columns: 1fr;
  }
  
  .cool_32b8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .yellow-10b2 {
    padding: var(--space-lg) 0;
  }
  
  .glass-0958 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .glass-0958 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .iron-f763 {
    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;
  }
  
  .cool_32b8 {
    grid-template-columns: 1fr;
  }
  
  .menu-hard-7c07,
  .block-d0e5,
  .out-71d2 {
    flex-direction: column;
    width: 100%;
  }
  
  .focus-stale-4c83,
  .gradient_next_bf4e,
  .menu-hard-7c07 .iron-f763,
  .block-d0e5 .iron-f763 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pagination_prev_3b57 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .surface-soft-af8e {
    font-size: 1.375rem;
  }
  
  .focused_fa3f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .next-0d1b,
  .element-smooth-d4ed,
  .first-7ebf,
  .complex-a14c,
  .texture_paper_e2eb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .selected-33f1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .footer-green-450d {
    gap: var(--space-xs);
  }
  
  .white_65cc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .cold-1812 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .video_silver_965e {
    width: 150px;
    height: 150px;
  }
  
  .dropdown-12e5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .sidebar_040d,
  .complex-9e95,
  .menu-hard-7c07,
  .yellow-3ba9,
  .gas-deb8,
  .widget_b160,
  .feature-d0e4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .yellow-10b2 {
    page-break-inside: avoid;
  }
}

/* css-noise: 4e70 */
.phantom-card-j2 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
