/* ============================================
   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-current-9b71 {
  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-current-9b71:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.alert_78e7,
header,
.block_simple_a163,
.yellow-d3fa,
.wrapper-easy-bfa5,
.gradient_1bc2,
.section_bcf7,
.table-out-1925,
.element_386c {
  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
   ============================================ */
.alert_78e7 {
  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);
}

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

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

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

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

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

.advanced-0ab6 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.component-42d6 {
  flex: 1;
}

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

.alert-down-a2ad {
  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);
}

.alert-down-a2ad:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.alert-down-a2ad.fn-active-a958 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.nav-under-ec33 {
  position: relative;
}

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

.media-gas-875f svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.hidden_676a svg {
  flex-shrink: 0;
}

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

.backdrop-2b12: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);
}

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

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

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

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

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

.backdrop_600e[aria-expanded="true"] .item-action-1222:nth-child(2) {
  opacity: 0;
}

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

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

  .component-42d6::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .component-42d6.breadcrumb-down-75be {
    display: block;
    right: 0;
  }
  
  .module-f678 {
    flex-direction: column;
    gap: 0;
  }
  
  .alert-down-a2ad {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .component-42d6::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;
  }
  
  .component-42d6.breadcrumb-down-75be::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .component-42d6 {
    display: none;
  }
  
  .backdrop_600e {
    display: flex;
  }
  
  .simple_18de {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hidden_676a,
  .backdrop-2b12 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav-under-ec33 {
    position: relative;
  }
  
  .component_b344 {
    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;
  }
  
  .media-gas-875f[aria-expanded="true"] + .component_b344 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pagination-93df {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .link_bbd3 {
    gap: 8px;
  }
  
  .hidden_676a {
    display: none;
  }
  
  .backdrop-2b12 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .advanced-0ab6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.text_large_40e9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-wide-9041 {
  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;
}

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

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

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

.banner-static-4dad {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.component-hot-e213 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tertiary-motion-bb67 {
    grid-template-columns: 1fr;
  }
  
  .action_140c {
    font-size: 1.75rem;
  }
  
  .list-df07 {
    order: -1;
    max-width: 100%;
  }
  
  .component-hot-e213 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .action_140c {
    font-size: 1.5rem;
  }
  
  .avatar_2d12 {
    font-size: 1rem;
  }
  
  .disabled_black_3b58 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .component-hot-e213 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.thick-3f23 {
  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;
}

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

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

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

.hard-423e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-88f3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.yellow-88f3 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);
}

.yellow-88f3 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;
}

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

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

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

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

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

.photo-yellow-99e5 {
  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);
}

.background-hard-23e0 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

.hover-dynamic-32b9 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hover-dynamic-32b9 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hover-dynamic-32b9 pre,
.hover-dynamic-32b9 code {
  overflow-x: auto;
  max-width: 100%;
}

.hover-dynamic-32b9 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);
}

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

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

.hover-dynamic-32b9 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hover-dynamic-32b9 ul,
.hover-dynamic-32b9 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.hover-dynamic-32b9 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.hover-dynamic-32b9 strong {
  font-weight: 600;
  color: var(--color-text);
}

.hover-dynamic-32b9 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hover-dynamic-32b9 a:hover {
  color: var(--color-primary-dark);
}

.filter-iron-b417 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.filter-iron-b417 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) {
  .pagination-silver-17bb {
    grid-template-columns: 1fr;
  }
  
  .photo-yellow-99e5 {
    font-size: 1.75rem;
  }
  
  .hover-dynamic-32b9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .photo-yellow-99e5 {
    font-size: 1.5rem;
  }
  
  .hover-dynamic-32b9 h3 {
    font-size: 1.375rem;
  }
  
  .hover-dynamic-32b9 h4 {
    font-size: 1.125rem;
  }
}

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

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

.panel-glass-d12f {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.tabs-pink-8446 {
  flex-shrink: 0;
}

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

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

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

.border_hovered_741a,
.alert-dirty-470b,
.content_af29 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.border_hovered_741a thead,
.alert-dirty-470b thead {
  background: var(--color-primary);
  color: white;
}

.border_hovered_741a th,
.border_hovered_741a td,
.alert-dirty-470b th,
.alert-dirty-470b td,
.content_af29 th,
.content_af29 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .border_hovered_741a th,
  .border_hovered_741a td,
  .alert-dirty-470b th,
  .alert-dirty-470b td,
  .content_af29 th,
  .content_af29 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .border_hovered_741a,
  .alert-dirty-470b,
  .content_af29 {
    min-width: 600px;
  }
}

.border_hovered_741a th,
.alert-dirty-470b th,
.content_af29 th {
  font-weight: 600;
}

.border_hovered_741a tbody tr:hover,
.alert-dirty-470b tbody tr:hover,
.content_af29 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.east_1820 h4 {
  color: white;
}

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

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

.tall-c4c5:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.gas-d30a {
  list-style: none;
  padding: 0;
}

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

.outline-next-3982 {
  color: #4caf50;
}

.red-b73b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-hard-0fd3 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-0eb0 .thick-3f23 {
  width: 100%;
  background: white;
}

.icon_a90f .thick-3f23 {
  color: #667eea;
}

.row_action_3649 .thick-3f23 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .accordion-ed88 {
    padding: var(--space-md);
  }
  
  .image_steel_532a {
    padding: var(--space-md);
  }
  
  .mini-8f75 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.outline-dim-8fb5 ol,
.outline-dim-8fb5 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.outline-dim-8fb5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.section-13a0,
.pink_04b2,
.button-98a2,
.breadcrumb_409b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.dim-226d {
  border-color: var(--color-success);
}

.component-421b {
  border-color: var(--color-warning);
}

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

.dim-226d .paragraph_02bd {
  background: #e8f5e9;
  color: var(--color-success);
}

.component-421b .paragraph_02bd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .badge-green-10da {
    grid-template-columns: 1fr;
  }
}

.sidebar-light-232b {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.logo-black-b9a5 {
  text-align: center;
}

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

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

.lower-7c4a .search_stone_4cac {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.backdrop-47d3 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.column-2e8f {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.current-f5db {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.stale_1ee0 {
  text-align: right;
}

.stale_1ee0 .media-middle-9722 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.paragraph-hard-59cd {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.container-thick-d300 {
  background: #e8f5e9;
  color: #2e7d32;
}

.info-5585 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.clean-521f strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.feature-hard-2fa9 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.chip-hovered-bf31 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.card_6341[aria-expanded="true"] .chip-hovered-bf31 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .info-plasma-2ad2 {
    grid-template-columns: 1fr;
  }
}

.hover-last-7034,
.form-paper-5e01 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hover-last-7034 h4,
.form-paper-5e01 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hover-last-7034 ul,
.form-paper-5e01 ul {
  list-style: none;
  padding: 0;
}

.hover-last-7034 li,
.form-paper-5e01 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.notification-f35c {
  font-style: italic;
}

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

.preview-new-1e61 {
  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;
}

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

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

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

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

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

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

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

.backdrop-inner-d731 {
  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);
}

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

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

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

.backdrop-inner-d731 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.disabled_down_c260 a:hover {
  color: white;
}

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

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

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

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

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

.description_east_35a2 a:hover {
  color: white;
}

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

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

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

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

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

.breadcrumb-green-0112 .logo_dynamic_d74c {
  color: #4caf50;
  font-size: 0.875rem;
}

.green-4458 {
  list-style: none;
  padding: 0;
}

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

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

.green-4458 a:hover {
  color: white;
}

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

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

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

.carousel_solid_47b9 a:hover {
  color: white;
}

.secondary-fresh-5160 {
  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);
}

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

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

.highlight-6bb6 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.avatar-soft-c15f 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;
}

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

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

@media (max-width: 768px) {
  .secondary-fresh-5160 {
    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;
  }
  
  .action_140c {
    font-size: 2rem;
  }
  
  .photo-yellow-99e5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tertiary-motion-bb67,
  .pagination-silver-17bb {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tag_brown_2a80,
  .gallery-medium-6cd4,
  .focus-down-828d,
  .badge-green-10da,
  .info-plasma-2ad2,
  .list-151c,
  .status-64e8,
  .paper-359e,
  .button_47ad {
    grid-template-columns: 1fr;
  }
  
  .shade-cb2b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .section_bcf7 {
    padding: var(--space-lg) 0;
  }
  
  .yellow-88f3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .yellow-88f3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .thick-3f23 {
    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;
  }
  
  .shade-cb2b {
    grid-template-columns: 1fr;
  }
  
  .banner-static-4dad,
  .preview-b9d7,
  .tall-4696 {
    flex-direction: column;
    width: 100%;
  }
  
  .gallery_5982,
  .hard_f383,
  .banner-static-4dad .thick-3f23,
  .preview-b9d7 .thick-3f23 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .action_140c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .photo-yellow-99e5 {
    font-size: 1.375rem;
  }
  
  .pagination-0504 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort_c2e9,
  .banner-dark-de7e,
  .summary-hot-5761,
  .dark-be9c,
  .secondary_huge_0b53 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .orange-7c23 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .surface-soft-3c9a {
    gap: var(--space-xs);
  }
  
  .text_large_40e9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .soft-fe0a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .lower-7c4a {
    width: 150px;
    height: 150px;
  }
  
  .hidden-398f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .alert_78e7,
  .block_simple_a163,
  .banner-static-4dad,
  .preview-new-1e61,
  .table-out-1925,
  .element_386c,
  .backdrop_600e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .section_bcf7 {
    page-break-inside: avoid;
  }
}

/* css-noise: 4e10 */
.widget-item-s2 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
