/* ============================================
   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)
   ============================================ */
.gradient-75dd {
  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;
}

.gradient-75dd:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.progress_gas_4617,
header,
.item_new_4966,
.hero_00eb,
.menu-52ec,
.tabs-21cd,
.lite-231f,
.progress-old-a390,
.thick_772d {
  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
   ============================================ */
.progress_gas_4617 {
  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);
}

.progress-5e5b {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.breadcrumb-a2db img {
  height: 36px;
  width: auto;
  display: block;
}

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

.detail-2141 {
  flex: 1;
}

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

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

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

.list_5c15.fn-active-6c4f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.backdrop-420e {
  position: relative;
}

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

.outline-small-a8b4 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.search-f1cb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .detail-2141::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .detail-2141.texture-914b {
    display: block;
    right: 0;
  }
  
  .primary-436d {
    flex-direction: column;
    gap: 0;
  }
  
  .list_5c15 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .detail-2141::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;
  }
  
  .detail-2141.texture-914b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .detail-2141 {
    display: none;
  }
  
  .short_243b {
    display: flex;
  }
  
  .fast-e5d4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .search-f1cb,
  .module_yellow_b4f6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .backdrop-420e {
    position: relative;
  }
  
  .hard-0318 {
    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;
  }
  
  .outline-small-a8b4[aria-expanded="true"] + .hard-0318 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .text_0377 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .left-d2ca {
    gap: 8px;
  }
  
  .search-f1cb {
    display: none;
  }
  
  .module_yellow_b4f6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .breadcrumb-a2db img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.cold-4067 svg {
  flex-shrink: 0;
}

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

.cold-4067 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.gradient-gold-beef a {
  color: var(--color-primary);
  text-decoration: none;
}

.gradient-gold-beef a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hovered-7b73 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.main-thick-5957 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .smooth_8262 {
    grid-template-columns: 1fr;
  }
  
  .simple-3788 {
    font-size: 1.75rem;
  }
  
  .banner_22bb {
    order: -1;
    max-width: 100%;
  }
  
  .main-thick-5957 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .simple-3788 {
    font-size: 1.5rem;
  }
  
  .message-8d93 {
    font-size: 1rem;
  }
  
  .gradient-gold-beef {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .main-thick-5957 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.active_4f42 {
  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-new-9a46 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.green-0986 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;
}

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

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

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

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

.old-2b41 {
  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);
}

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

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

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

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

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

.sort-gold-4482 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.sort-gold-4482 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-gold-4482 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

.sort-gold-4482 strong {
  font-weight: 600;
  color: var(--color-text);
}

.sort-gold-4482 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.sort-gold-4482 a:hover {
  color: var(--color-primary-dark);
}

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

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

.status_warm_b142 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) {
  .east-6f12 {
    grid-template-columns: 1fr;
  }
  
  .element_solid_78e2 {
    font-size: 1.75rem;
  }
  
  .sort-gold-4482 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .element_solid_78e2 {
    font-size: 1.5rem;
  }
  
  .sort-gold-4482 h3 {
    font-size: 1.375rem;
  }
  
  .sort-gold-4482 h4 {
    font-size: 1.125rem;
  }
}

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

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

.soft-4eb4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.title-92db {
  flex-shrink: 0;
}

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

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

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

.hard-604b,
.paragraph_d5c6,
.search_bronze_ad9d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hard-604b thead,
.paragraph_d5c6 thead {
  background: var(--color-primary);
  color: white;
}

.hard-604b th,
.hard-604b td,
.paragraph_d5c6 th,
.paragraph_d5c6 td,
.search_bronze_ad9d th,
.search_bronze_ad9d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hard-604b th,
  .hard-604b td,
  .paragraph_d5c6 th,
  .paragraph_d5c6 td,
  .search_bronze_ad9d th,
  .search_bronze_ad9d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hard-604b,
  .paragraph_d5c6,
  .search_bronze_ad9d {
    min-width: 600px;
  }
}

.hard-604b th,
.paragraph_d5c6 th,
.search_bronze_ad9d th {
  font-weight: 600;
}

.hard-604b tbody tr:hover,
.paragraph_d5c6 tbody tr:hover,
.search_bronze_ad9d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.disabled-over-01b2 h4 {
  color: white;
}

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

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

.primary-1bf9:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.glass-1d13 {
  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);
}

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

.hard-ffe5 {
  font-weight: 600;
  color: white;
}

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

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

.wrapper-4fce {
  color: #4caf50;
}

.section_up_f81a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.hidden-center-84a8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.lite-9df5 {
  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;
}

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

.hidden-center-84a8 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.module-35bd {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.sidebar_4793 .active_4f42 {
  width: 100%;
  background: white;
}

.shade_liquid_5304 .active_4f42 {
  color: #667eea;
}

.hover_down_a6c9 .active_4f42 {
  color: #f5576c;
}

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

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

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

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

.label-glass-f607 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.filter-tall-b71b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .label-glass-f607 {
    padding: var(--space-md);
  }
  
  .filter-tall-b71b {
    padding: var(--space-md);
  }
  
  .widget-e0c6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.preview_2a64,
.badge-01ec,
.icon_rough_11e8,
.steel-1471 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.hero-wood-8ead {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.avatar-31e1 {
  border-color: var(--color-success);
}

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

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

.avatar-31e1 .overlay-1130 {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget_333d .overlay-1130 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-2a9d {
  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);
}

.liquid_ad23 {
  text-align: center;
}

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

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

.preview_first_8907 .hard-ffe5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.icon-2d80 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.disabled-last-3630 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.brown-bbc9 {
  text-align: right;
}

.brown-bbc9 .primary-d24e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.steel-cf22 {
  background: #e3f2fd;
  color: #1565c0;
}

.row-wide-d6b8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.backdrop-53bc {
  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);
}

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

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

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

.main-stone-eecb strong {
  color: var(--color-primary);
}

.tooltip-prev-739c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.alert-new-2305 {
  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);
}

.alert-new-2305:hover {
  background: var(--color-bg-alt);
}

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

.alert-new-2305[aria-expanded="true"] .detail_2880 {
  transform: rotate(180deg);
}

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

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

.menu-cold-425f ul,
.menu-cold-425f ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.menu-cold-425f li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.alert-dark-db35,
.fresh-f6da {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.alert-dark-db35 h4,
.fresh-f6da h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.alert-dark-db35 ul,
.fresh-f6da ul {
  list-style: none;
  padding: 0;
}

.alert-dark-db35 li,
.fresh-f6da li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.video-da08 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.stone-9c1d {
  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);
}

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

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

.stone-9c1d h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.stone-9c1d p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.pressed-6203 .hovered-7b73 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.filter_dirty_5791 a:hover {
  color: white;
}

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

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

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

.detail_east_b202 a:hover {
  color: white;
}

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

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

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

.warm-4ece {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .aside_dirty_c2fb {
    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;
  }
  
  .simple-3788 {
    font-size: 2rem;
  }
  
  .element_solid_78e2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .smooth_8262,
  .east-6f12 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shade-3405,
  .overlay_center_96ee,
  .button-dc22,
  .title-action-d877,
  .footer_red_db81,
  .widget_tiny_e2e2,
  .grid_upper_3a8e,
  .pattern-5a48 {
    grid-template-columns: 1fr;
  }
  
  .banner_36ad {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .lite-231f {
    padding: var(--space-lg) 0;
  }
  
  .green-0986 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .green-0986 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .active_4f42 {
    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;
  }
  
  .banner_36ad {
    grid-template-columns: 1fr;
  }
  
  .column_fast_9881,
  .narrow-3d62,
  .stone-58b6 {
    flex-direction: column;
    width: 100%;
  }
  
  .banner-c4ce,
  .new-fd92,
  .column_fast_9881 .active_4f42,
  .narrow-3d62 .active_4f42 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .simple-3788 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element_solid_78e2 {
    font-size: 1.375rem;
  }
  
  .tag_8858 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .accent_advanced_b154,
  .hidden-center-84a8,
  .background-pro-6e4e,
  .mask_tiny_208b,
  .pink-9d3b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .stone_e3c2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .image_909c {
    gap: var(--space-xs);
  }
  
  .cold-4067 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .glass-1d13 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .preview_first_8907 {
    width: 150px;
    height: 150px;
  }
  
  .button-dffc {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .progress_gas_4617,
  .item_new_4966,
  .column_fast_9881,
  .highlight_dirty_cced,
  .progress-old-a390,
  .thick_772d,
  .short_243b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .lite-231f {
    page-break-inside: avoid;
  }
}

/* css-noise: a2e0 */
.shadow-element-m9 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
