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

.tabs-hard-f0e3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.chip-ad1e,
header,
.border-4d6a,
.module-first-a38c,
.carousel-fc92,
.widget_bright_c9f0,
.left-b4c7,
.disabled-large-aa56,
.advanced_b83c {
  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
   ============================================ */
.chip-ad1e {
  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);
}

.gradient-advanced-06b7 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.chip-ad1e.content-643e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.narrow-bb58 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.orange_0439 {
  flex: 1;
}

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

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

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

.copper-f976.fn-active-9faf {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.image-8bba {
  position: relative;
}

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

.block-in-f537 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.notification-action-858f {
  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;
}

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

.notification-action-858f svg {
  flex-shrink: 0;
}

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

.paragraph-0f60: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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .orange_0439 {
    display: none;
  }
  
  .banner_47ad {
    display: flex;
  }
  
  .static-b968 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .notification-action-858f,
  .paragraph-0f60 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .image-8bba {
    position: relative;
  }
  
  .slider_0553 {
    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;
  }
  
  .block-in-f537[aria-expanded="true"] + .slider_0553 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wood-847f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dropdown_yellow_f644 {
    gap: 8px;
  }
  
  .notification-action-858f {
    display: none;
  }
  
  .paragraph-0f60 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .narrow-bb58 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .paragraph-0f60 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .paragraph-0f60 svg {
    width: 14px;
    height: 14px;
  }
  
  .highlight-hovered-59ee {
    gap: var(--space-sm);
  }
}

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

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

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

.panel_west_d1a7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-77f1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-complex-c937 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .modal_87ca {
    grid-template-columns: 1fr;
  }
  
  .tiny_c80f {
    font-size: 1.75rem;
  }
  
  .hard-77f1 {
    order: -1;
    max-width: 100%;
  }
  
  .label-complex-c937 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tiny_c80f {
    font-size: 1.5rem;
  }
  
  .filter-clean-4019 {
    font-size: 1rem;
  }
  
  .highlight_rough_5915 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .label-complex-c937 {
    max-width: 250px;
  }
}

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

.secondary-warm-662e {
  background: var(--color-primary);
  color: white;
}

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

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

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

.panel-smooth-2cf6 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.panel-smooth-2cf6:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-fresh-b360 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.background-fresh-b360 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);
}

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

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

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

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

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

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

.background-fresh-b360 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.background-fresh-b360 a:hover {
  color: var(--color-primary-dark);
}

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

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

.notification_yellow_64a8 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) {
  .item-selected-f622 {
    grid-template-columns: 1fr;
  }
  
  .huge_be49 {
    font-size: 1.75rem;
  }
  
  .background-fresh-b360 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .huge_be49 {
    font-size: 1.5rem;
  }
  
  .background-fresh-b360 h3 {
    font-size: 1.375rem;
  }
  
  .background-fresh-b360 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.tertiary-up-621f strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.item_west_378c {
  flex-shrink: 0;
}

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

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

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

.overlay_top_eb97,
.badge-cold-25af,
.badge-selected-3049 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.overlay_top_eb97 thead,
.badge-cold-25af thead {
  background: var(--color-primary);
  color: white;
}

.overlay_top_eb97 th,
.overlay_top_eb97 td,
.badge-cold-25af th,
.badge-cold-25af td,
.badge-selected-3049 th,
.badge-selected-3049 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .overlay_top_eb97 th,
  .overlay_top_eb97 td,
  .badge-cold-25af th,
  .badge-cold-25af td,
  .badge-selected-3049 th,
  .badge-selected-3049 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .overlay_top_eb97,
  .badge-cold-25af,
  .badge-selected-3049 {
    min-width: 600px;
  }
}

.overlay_top_eb97 th,
.badge-cold-25af th,
.badge-selected-3049 th {
  font-weight: 600;
}

.overlay_top_eb97 tbody tr:hover,
.badge-cold-25af tbody tr:hover,
.badge-selected-3049 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.section-bottom-695c h4 {
  color: white;
}

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

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

.focused-649a:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.avatar-cool-f971 {
  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);
}

.avatar-cool-f971 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.last-b9a0 {
  font-weight: 600;
  color: white;
}

.surface-pro-4d52 {
  list-style: none;
  padding: 0;
}

.surface-pro-4d52 li {
  padding: var(--space-xs) 0;
}

.list_4317 {
  color: #4caf50;
}

.header_056c {
  color: #ff9800;
}

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

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

.slider-medium-187d {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-hard-b74e .cold-6e9b {
  width: 100%;
  background: white;
}

.paragraph_da2e .cold-6e9b {
  color: #667eea;
}

.pro_0b9d .cold-6e9b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .tiny-e69f {
    padding: var(--space-md);
  }
  
  .media_mini_3469 {
    padding: var(--space-md);
  }
  
  .container_dark_17b1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.easy-17f1 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.tall-a58c,
.cool_a81a,
.disabled_old_e18b,
.accent-tall-ab25 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag_b6d7 .secondary_abb1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.down-dc99 .secondary_abb1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.button-upper-8d22 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

.new-874f {
  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);
}

.thick_9196 {
  text-align: center;
}

.progress-focused-d8c6 {
  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);
}

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

.progress-focused-d8c6 .last-b9a0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.heading-238a {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.tertiary-slow-1d6b {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.small-a207 {
  text-align: right;
}

.small-a207 .article_bronze_d481 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.gas-f3f6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.table-stale-5810 {
  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);
}

.table-stale-5810:hover {
  background: var(--color-bg-alt);
}

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

.table-stale-5810[aria-expanded="true"] .info_2111 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

.smooth-5f60 {
  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-5f60 {
    grid-template-columns: 1fr;
  }
}

.top-7476,
.texture-easy-6b72 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.top-7476 h4,
.texture-easy-6b72 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.top-7476 ul,
.texture-easy-6b72 ul {
  list-style: none;
  padding: 0;
}

.top-7476 li,
.texture-easy-6b72 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.white-ee07 {
  font-style: italic;
}

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

.card-rough-a8e3 {
  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;
}

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

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

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

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

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

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

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

.tall-38fe {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.avatar-d347 a:hover {
  color: white;
}

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

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

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

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

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

.tall_6428 a:hover {
  color: white;
}

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

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

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

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

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

.new-d4d9 .gold_d2db {
  color: #4caf50;
  font-size: 0.875rem;
}

.surface-0740 {
  list-style: none;
  padding: 0;
}

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

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

.surface-0740 a:hover {
  color: white;
}

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

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

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

.bright_264c a:hover {
  color: white;
}

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

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

.cold-76a8 a {
  color: #4caf50;
  text-decoration: none;
}

.caption-lite-8c67 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .left_e2fb {
    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;
  }
  
  .tiny_c80f {
    font-size: 2rem;
  }
  
  .huge_be49 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .modal_87ca,
  .item-selected-f622 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent_large_1d11,
  .texture-light-b64a,
  .cold_e02d,
  .icon-325d,
  .smooth-5f60,
  .widget_easy_81a6,
  .outline-6d6c,
  .backdrop-a9d8,
  .fresh_6a93 {
    grid-template-columns: 1fr;
  }
  
  .block-6419 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .left-b4c7 {
    padding: var(--space-lg) 0;
  }
  
  .footer_7990 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .footer_7990 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cold-6e9b {
    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;
  }
  
  .block-6419 {
    grid-template-columns: 1fr;
  }
  
  .gallery-3062,
  .form_5ada,
  .modal-white-2a0e {
    flex-direction: column;
    width: 100%;
  }
  
  .pagination_f822,
  .east_1691,
  .gallery-3062 .cold-6e9b,
  .form_5ada .cold-6e9b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tiny_c80f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .huge_be49 {
    font-size: 1.375rem;
  }
  
  .outer_db60 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .heading_94a3,
  .wrapper_ff1d,
  .main_9ae2,
  .active_a935,
  .list_left_8050 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .clean-3503 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .black-f7c5 {
    gap: var(--space-xs);
  }
  
  .panel_west_d1a7 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .avatar-cool-f971 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .progress-focused-d8c6 {
    width: 150px;
    height: 150px;
  }
  
  .tabs-9da9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .chip-ad1e,
  .border-4d6a,
  .gallery-3062,
  .card-rough-a8e3,
  .disabled-large-aa56,
  .advanced_b83c,
  .banner_47ad {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .left-b4c7 {
    page-break-inside: avoid;
  }
}

/* css-noise: 657e */
.ghost-box-c1 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
