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

.feature-59c6:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.mini_7fdb,
header,
.filter-3196,
.tertiary-effd,
.pagination-action-14bb,
.section_silver_c467,
.next_d522,
.south_fbc7,
.top_a027 {
  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
   ============================================ */
.mini_7fdb {
  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);
}

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

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

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

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

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

.secondary-d27b img {
  height: 36px;
  width: auto;
  display: block;
}

.banner-last-6d76 {
  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;
}

.menu_blue_d024 {
  flex: 1;
}

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

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

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

.card_85ee.fn-active-4763 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.widget-prev-9d41 {
  position: relative;
}

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

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

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

.content-61b2 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.widget-prev-9d41:hover .content-61b2 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.current-e077 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .menu_blue_d024 {
    display: none;
  }
  
  .article-dcbd {
    display: flex;
  }
  
  .banner-last-6d76 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .current-e077,
  .slider_large_ef8a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .widget-prev-9d41 {
    position: relative;
  }
  
  .content-61b2 {
    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;
  }
  
  .shadow_c97e[aria-expanded="true"] + .content-61b2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .element-49d7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .surface-6bb5 {
    gap: 8px;
  }
  
  .current-e077 {
    display: none;
  }
  
  .slider_large_ef8a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .secondary-d27b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.tag_9d5e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.media-4c11 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.medium-463d {
  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;
}

.caption-down-4ce7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.caption-down-4ce7 strong {
  font-weight: 600;
  color: var(--color-text);
}

.caption-down-4ce7 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.small_d1b3 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .modal_bottom_10c5 {
    grid-template-columns: 1fr;
  }
  
  .accordion-da2e {
    font-size: 1.75rem;
  }
  
  .tertiary_8a55 {
    order: -1;
    max-width: 100%;
  }
  
  .small_d1b3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accordion-da2e {
    font-size: 1.5rem;
  }
  
  .static-7e66 {
    font-size: 1rem;
  }
  
  .complex_df2e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .small_d1b3 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.tertiary-stale-172d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-copper-5730 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.feature-copper-5730 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);
}

.feature-copper-5730 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;
}

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

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

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

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

.sort-39a6 {
  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);
}

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

.pattern-paper-8cef {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo_1b80 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) {
  .icon-ec22 {
    grid-template-columns: 1fr;
  }
  
  .mask_66c8 {
    font-size: 1.75rem;
  }
  
  .video-2991 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mask_66c8 {
    font-size: 1.5rem;
  }
  
  .video-2991 h3 {
    font-size: 1.375rem;
  }
  
  .video-2991 h4 {
    font-size: 1.125rem;
  }
}

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

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

.stale-1b8f {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.text-inner-914b {
  flex-shrink: 0;
}

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

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

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

.status-7269,
.tag_89a6,
.up_dfb1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.status-7269 thead,
.tag_89a6 thead {
  background: var(--color-primary);
  color: white;
}

.status-7269 th,
.status-7269 td,
.tag_89a6 th,
.tag_89a6 td,
.up_dfb1 th,
.up_dfb1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .status-7269 th,
  .status-7269 td,
  .tag_89a6 th,
  .tag_89a6 td,
  .up_dfb1 th,
  .up_dfb1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .status-7269,
  .tag_89a6,
  .up_dfb1 {
    min-width: 600px;
  }
}

.status-7269 th,
.tag_89a6 th,
.up_dfb1 th {
  font-weight: 600;
}

.status-7269 tbody tr:hover,
.tag_89a6 tbody tr:hover,
.up_dfb1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.static_383c h4 {
  color: white;
}

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

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

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

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

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

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

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

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

.status-outer-40c8 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.brown-0fda {
  font-weight: 600;
  color: white;
}

.notification-ed7a {
  list-style: none;
  padding: 0;
}

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

.tooltip_4a59 {
  color: #4caf50;
}

.progress-left-ce16 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .image-north-7bdf {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-a058 .tertiary-stale-172d {
  width: 100%;
  background: white;
}

.pressed_f36c .tertiary-stale-172d {
  color: #667eea;
}

.button-active-bef5 .tertiary-stale-172d {
  color: #f5576c;
}

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

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

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

.popup-147a {
  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);
}

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

.form-bright-ead2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .narrow-5918 {
    padding: var(--space-md);
  }
  
  .form-bright-ead2 {
    padding: var(--space-md);
  }
  
  .backdrop-418c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.hidden-6efb li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.east_436d,
.easy-fa10,
.input-middle-84e0,
.heading_green_61f2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-brown-074c {
  border-color: var(--color-success);
}

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

.component-solid-8bf9 {
  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);
}

.tabs-brown-074c .component-solid-8bf9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.accordion_north_3cc1 .component-solid-8bf9 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-ca1c {
  text-align: center;
}

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

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

.pattern_focused_c119 .brown-0fda {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.tag-fast-3999 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.hero-cool-9416 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.chip_fluid_f948 {
  border: 2px solid #4caf50;
}

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

.block-easy-2619 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.logo-west-8e49 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.new_062b {
  text-align: right;
}

.new_062b .notice-1881 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.outer-99e0 {
  background: #e3f2fd;
  color: #1565c0;
}

.pagination-d07c {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-inner-be62 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.brown_e5cb[aria-expanded="true"] .border-inner-be62 {
  transform: rotate(180deg);
}

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

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

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

.list-06a4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.module_action_a5cf,
.sidebar-7e2e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.module_action_a5cf h4,
.sidebar-7e2e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.module_action_a5cf ul,
.sidebar-7e2e ul {
  list-style: none;
  padding: 0;
}

.module_action_a5cf li,
.sidebar-7e2e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.filter_plasma_1665 {
  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_plasma_1665 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.surface-bottom-c04c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.button-huge-81af {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.wrapper_d80e {
  font-style: italic;
}

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

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

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

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

.media-clean-20f0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.thumbnail-2e4f {
  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);
}

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

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

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

.thumbnail-2e4f p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.shadow_b615 a:hover {
  color: white;
}

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

.simple-286e 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);
}

.simple-286e a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.hovered-0160 a:hover {
  color: white;
}

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

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

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

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

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

.tooltip_pro_a680 .header-ca7a {
  color: #4caf50;
  font-size: 0.875rem;
}

.info-03b4 {
  list-style: none;
  padding: 0;
}

.info-03b4 li {
  margin-bottom: var(--space-xs);
}

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

.info-03b4 a:hover {
  color: white;
}

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

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

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

.slow_31ef a:hover {
  color: white;
}

.popup-fluid-b1a9 {
  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);
}

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

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

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

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

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

.tag_mini_4cc5 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-hard-8142 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.description-hard-8142:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .popup-fluid-b1a9 {
    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;
  }
  
  .accordion-da2e {
    font-size: 2rem;
  }
  
  .mask_66c8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .modal_bottom_10c5,
  .icon-ec22 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .image-north-7bdf,
  .iron-d0c7,
  .focused-0d48,
  .content-47eb,
  .prev-b0e6,
  .filter_plasma_1665,
  .shadow_6d56,
  .feature_current_c952,
  .active_warm_c6e6 {
    grid-template-columns: 1fr;
  }
  
  .popup_under_5545 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .next_d522 {
    padding: var(--space-lg) 0;
  }
  
  .feature-copper-5730 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .feature-copper-5730 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tertiary-stale-172d {
    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;
  }
  
  .popup_under_5545 {
    grid-template-columns: 1fr;
  }
  
  .center_a2e7,
  .media-clean-20f0,
  .accordion_advanced_c764 {
    flex-direction: column;
    width: 100%;
  }
  
  .content_pro_0a38,
  .east_d3cc,
  .center_a2e7 .tertiary-stale-172d,
  .media-clean-20f0 .tertiary-stale-172d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accordion-da2e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .mask_66c8 {
    font-size: 1.375rem;
  }
  
  .wrapper-8f6e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .backdrop_fast_d1d0,
  .main-ef5c,
  .hover_wood_2f7a,
  .caption_wide_cb02,
  .last-2f51 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .table_4e26 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .block-479d {
    gap: var(--space-xs);
  }
  
  .tag_9d5e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tertiary_in_5c13 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pattern_focused_c119 {
    width: 150px;
    height: 150px;
  }
  
  .card_3898 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .mini_7fdb,
  .filter-3196,
  .center_a2e7,
  .north_a818,
  .south_fbc7,
  .top_a027,
  .article-dcbd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .next_d522 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2093 */
.promo-block-y2 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
