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

.text-upper-c74e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.component_white_e2bb,
header,
.aside-iron-a004,
.icon-huge-2626,
.slider_brown_51ff,
.border_active_0a26,
.background-steel-22b3,
.widget-easy-fa61,
.focus_in_57ae {
  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
   ============================================ */
.component_white_e2bb {
  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);
}

.video-basic-1117 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.silver-8191 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.slow_345f {
  flex: 1;
}

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

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

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

.main_e5a7.fn-active-876b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.form-5e3e {
  position: relative;
}

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

.component-647d svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.old_eb5b svg {
  flex-shrink: 0;
}

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

.link-red-d1e2: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);
}

.link-red-d1e2 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.border-outer-6cb4[aria-expanded="true"] .pattern_b5e9:nth-child(2) {
  opacity: 0;
}

.border-outer-6cb4[aria-expanded="true"] .pattern_b5e9:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .slow_345f {
    display: none;
  }
  
  .border-outer-6cb4 {
    display: flex;
  }
  
  .panel_f89b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .old_eb5b,
  .link-red-d1e2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .form-5e3e {
    position: relative;
  }
  
  .static-9357 {
    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;
  }
  
  .component-647d[aria-expanded="true"] + .static-9357 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .outer-ee7f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .link-fixed-cbee {
    gap: 8px;
  }
  
  .old_eb5b {
    display: none;
  }
  
  .link-red-d1e2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .silver-8191 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.gas_b35f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.under-1773 a:hover {
  text-decoration: underline;
}

.hot-5f7d {
  color: var(--color-text-lighter);
}

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

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

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

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

@media (max-width: 768px) {
  .wrapper-liquid-4a81 {
    grid-template-columns: 1fr;
  }
}

.hover-cold-5944 {
  display: flex;
  gap: var(--space-sm);
}

.modal-2ddb {
  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;
}

.banner-4c33 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner-4c33 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.green-fe74 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tabs_4e17 {
    grid-template-columns: 1fr;
  }
  
  .silver-cc51 {
    font-size: 1.75rem;
  }
  
  .mini-ec95 {
    order: -1;
    max-width: 100%;
  }
  
  .green-fe74 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .silver-cc51 {
    font-size: 1.5rem;
  }
  
  .small_eaf2 {
    font-size: 1rem;
  }
  
  .under-1773 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .green-fe74 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.wood-9d54 {
  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;
}

.dropdown-tiny-7a91 {
  background: var(--color-primary);
  color: white;
}

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

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

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

.sidebar-rough-30d0 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.sidebar-rough-30d0:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.surface-black-25c8 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.sidebar-plasma-ac06 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.background-steel-22b3 {
  padding: var(--space-xxl) 0;
}

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

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

.preview-fixed-8055 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-bcda 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) {
  .tag_0655 {
    grid-template-columns: 1fr;
  }
  
  .row_hard_57ab {
    font-size: 1.75rem;
  }
  
  .sort_496a {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.silver_b82e {
  flex-shrink: 0;
}

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

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

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

.hot-03a8,
.preview-6bb1,
.mask-iron-f534 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hot-03a8 thead,
.preview-6bb1 thead {
  background: var(--color-primary);
  color: white;
}

.hot-03a8 th,
.hot-03a8 td,
.preview-6bb1 th,
.preview-6bb1 td,
.mask-iron-f534 th,
.mask-iron-f534 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hot-03a8 th,
  .hot-03a8 td,
  .preview-6bb1 th,
  .preview-6bb1 td,
  .mask-iron-f534 th,
  .mask-iron-f534 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hot-03a8,
  .preview-6bb1,
  .mask-iron-f534 {
    min-width: 600px;
  }
}

.hot-03a8 th,
.preview-6bb1 th,
.mask-iron-f534 th {
  font-weight: 600;
}

.hot-03a8 tbody tr:hover,
.preview-6bb1 tbody tr:hover,
.mask-iron-f534 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tabs_b097 h4 {
  color: white;
}

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

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

.glass-50ef:last-child {
  border-bottom: none;
}

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

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

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

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

.image-solid-2170:hover {
  text-decoration: underline;
}

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

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

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

.shade-fast-556e {
  font-weight: 600;
  color: white;
}

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

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

.tooltip_401d {
  color: #4caf50;
}

.filter-motion-042e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-fast-556e {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-silver-c794 .wood-9d54 {
  width: 100%;
  background: white;
}

.in-cf7f .wood-9d54 {
  color: #667eea;
}

.component-ad64 .wood-9d54 {
  color: #f5576c;
}

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

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

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

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

.layout-focused-b14c h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.tertiary-45bd {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .layout-focused-b14c {
    padding: var(--space-md);
  }
  
  .tertiary-45bd {
    padding: var(--space-md);
  }
  
  .first_7aca {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.secondary_b256,
.input-39ce,
.container_action_8679,
.box_427a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.paper-9e1b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.tertiary-67b1 {
  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);
}

.gas_a7f9 .tertiary-67b1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.right-7017 .tertiary-67b1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.south-56b8 {
  margin-top: var(--space-xxl);
}

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

.list_hovered_8f5a {
  text-align: center;
}

.column-rough-252e {
  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);
}

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

.column-rough-252e .shade-fast-556e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.feature-92d2 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-bottom-0e7b {
  text-align: right;
}

.secondary-bottom-0e7b .easy_b52f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.preview-next-f1d8 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.backdrop-east-03ca {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.clean-55cf strong {
  color: var(--color-primary);
}

.shadow-fresh-22d3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.iron-c634[aria-expanded="true"] .progress_9c99 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.sidebar-glass-8132 {
  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);
}

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

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

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

.container_fb04,
.lower-4916 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container_fb04 h4,
.lower-4916 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container_fb04 ul,
.lower-4916 ul {
  list-style: none;
  padding: 0;
}

.container_fb04 li,
.lower-4916 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.outer_d066 {
  font-style: italic;
}

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

.outline-wood-1527 {
  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;
}

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

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

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

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

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

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

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

.icon-in-acc0 {
  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);
}

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

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

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

.icon-in-acc0 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.orange-5e36 .hover-cold-5944 {
  color: #4caf50;
  font-size: 0.875rem;
}

.filter-f9dd {
  list-style: none;
  padding: 0;
}

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

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

.filter-f9dd a:hover {
  color: white;
}

.tooltip-under-3b89 {
  list-style: none;
  padding: 0;
}

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

.tooltip-under-3b89 a {
  color: #b0b0b0;
  text-decoration: none;
}

.tooltip-under-3b89 a:hover {
  color: white;
}

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

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

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

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

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

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

.clean-4272:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fast_8752 {
    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;
  }
  
  .silver-cc51 {
    font-size: 2rem;
  }
  
  .row_hard_57ab {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tabs_4e17,
  .tag_0655 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .small_f56c,
  .tall_3424,
  .easy_efc1,
  .pagination-south-b1b6,
  .hard_31c1,
  .text-next-1fb7,
  .yellow_7111,
  .description_mini_13f2 {
    grid-template-columns: 1fr;
  }
  
  .search_8831 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .background-steel-22b3 {
    padding: var(--space-lg) 0;
  }
  
  .icon_7daa li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .icon_7daa li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wood-9d54 {
    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;
  }
  
  .search_8831 {
    grid-template-columns: 1fr;
  }
  
  .pagination_fluid_e651,
  .sort-white-5168,
  .alert_e53b {
    flex-direction: column;
    width: 100%;
  }
  
  .surface-black-25c8,
  .sidebar-plasma-ac06,
  .pagination_fluid_e651 .wood-9d54,
  .sort-white-5168 .wood-9d54 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .silver-cc51 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .row_hard_57ab {
    font-size: 1.375rem;
  }
  
  .overlay-huge-68e2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .modal-pro-a409,
  .column_7219,
  .iron-9c03,
  .mask_smooth_6bfd,
  .filter_lite_c0a0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .footer_east_8109 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .stale-1f69 {
    gap: var(--space-xs);
  }
  
  .gas_b35f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .footer_9198 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .column-rough-252e {
    width: 150px;
    height: 150px;
  }
  
  .background-e959 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .component_white_e2bb,
  .aside-iron-a004,
  .pagination_fluid_e651,
  .outline-wood-1527,
  .widget-easy-fa61,
  .focus_in_57ae,
  .border-outer-6cb4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .background-steel-22b3 {
    page-break-inside: avoid;
  }
}

/* css-noise: a4a3 */
.widget-item-c1 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
