/* ============================================
   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)
   ============================================ */
.status-easy-d952 {
  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;
}

.status-easy-d952:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.picture_dark_1668,
header,
.texture-down-b056,
.photo-in-95cb,
.wide-5bab,
.gallery_complex_3cb2,
.new_a10a,
.status_next_7eab,
.bronze_a33b {
  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
   ============================================ */
.picture_dark_1668 {
  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);
}

.secondary-selected-6cfe {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.box_f0f3 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.last-e66b {
  flex: 1;
}

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

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

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

.solid_adac.fn-active-bb42 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.warm_1ec6 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.widget_tiny_6f49 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .last-e66b {
    display: none;
  }
  
  .media_29a5 {
    display: flex;
  }
  
  .wrapper_3785 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .widget_tiny_6f49,
  .pattern_cce1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .warm_1ec6 {
    position: relative;
  }
  
  .clean-ef59 {
    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;
  }
  
  .sort_iron_0255[aria-expanded="true"] + .clean-ef59 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .heading-rough-9108 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .new-f48e {
    gap: 8px;
  }
  
  .widget_tiny_6f49 {
    display: none;
  }
  
  .pattern_cce1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .box_f0f3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.table-725f {
  display: flex;
  align-items: center;
  gap: 6px;
}

.table-725f svg {
  flex-shrink: 0;
}

.table-725f a {
  color: var(--color-primary);
  text-decoration: none;
}

.table-725f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.last-8f4d a {
  color: var(--color-primary);
  text-decoration: none;
}

.last-8f4d a:hover {
  text-decoration: underline;
}

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

.slider-cold-988d {
  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) {
  .slider-cold-988d {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .slider-cold-988d {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

.carousel-wide-09e8 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .aside-south-8195 {
    grid-template-columns: 1fr;
  }
  
  .slider-cold-988d {
    font-size: 1.75rem;
  }
  
  .carousel-wide-09e8 {
    order: -1;
    max-width: 100%;
  }
  
  .panel_b268 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slider-cold-988d {
    font-size: 1.5rem;
  }
  
  .main-26df {
    font-size: 1rem;
  }
  
  .last-8f4d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .panel_b268 {
    max-width: 250px;
  }
}

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

.sort-old-a265 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.clean-64d0 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.status-copper-4556 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-f51a 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;
}

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

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

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

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

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

.info-dim-2f7b {
  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);
}

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

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

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

.tag-outer-138e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.tag-outer-138e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tag-outer-138e pre,
.tag-outer-138e code {
  overflow-x: auto;
  max-width: 100%;
}

.tag-outer-138e 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);
}

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

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

.tag-outer-138e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.tag-outer-138e ul,
.tag-outer-138e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.tag-outer-138e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.tag-outer-138e strong {
  font-weight: 600;
  color: var(--color-text);
}

.tag-outer-138e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tag-outer-138e a:hover {
  color: var(--color-primary-dark);
}

.input-active-0cb7 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.input-active-0cb7 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) {
  .plasma-481b {
    grid-template-columns: 1fr;
  }
  
  .info-dim-2f7b {
    font-size: 1.75rem;
  }
  
  .tag-outer-138e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .info-dim-2f7b {
    font-size: 1.5rem;
  }
  
  .tag-outer-138e h3 {
    font-size: 1.375rem;
  }
  
  .tag-outer-138e h4 {
    font-size: 1.125rem;
  }
}

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

.solid-0d56 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.text-01e8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.lite-e48f {
  flex-shrink: 0;
}

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

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

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

.current-0d58,
.up_e21c,
.article_87d8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.current-0d58 thead,
.up_e21c thead {
  background: var(--color-primary);
  color: white;
}

.current-0d58 th,
.current-0d58 td,
.up_e21c th,
.up_e21c td,
.article_87d8 th,
.article_87d8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .current-0d58 th,
  .current-0d58 td,
  .up_e21c th,
  .up_e21c td,
  .article_87d8 th,
  .article_87d8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .current-0d58,
  .up_e21c,
  .article_87d8 {
    min-width: 600px;
  }
}

.current-0d58 th,
.up_e21c th,
.article_87d8 th {
  font-weight: 600;
}

.current-0d58 tbody tr:hover,
.up_e21c tbody tr:hover,
.article_87d8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.table_e94d h4 {
  color: white;
}

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

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

.north-8c87:last-child {
  border-bottom: none;
}

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

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

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

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

.modal-light-9fa8:hover {
  text-decoration: underline;
}

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

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

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

.widget-basic-faac {
  font-weight: 600;
  color: white;
}

.card-paper-612e {
  list-style: none;
  padding: 0;
}

.card-paper-612e li {
  padding: var(--space-xs) 0;
}

.sort-under-d9a1 {
  color: #4caf50;
}

.grid_ebb9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light-83da {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.hero-f081 .element_0db9 {
  width: 100%;
  background: white;
}

.nav-wood-180e .element_0db9 {
  color: #667eea;
}

.north_2bf0 .element_0db9 {
  color: #f5576c;
}

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

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

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

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

.tall-b333 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .tall-b333 {
    padding: var(--space-md);
  }
  
  .steel_af12 {
    padding: var(--space-md);
  }
  
  .wood_3d10 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.modal_narrow_25f8,
.paper_0109,
.form-upper-e8ac,
.hover-cool-569a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover_hot_65e1 .in_bf6e {
  background: #e8f5e9;
  color: var(--color-success);
}

.bottom_e7d0 .in_bf6e {
  background: #fff3e0;
  color: var(--color-warning);
}

.feature-bright-135f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.feature-bright-135f p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.gallery-stale-a670 {
  margin-top: var(--space-xxl);
}

.list-south-0831 {
  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);
}

.shadow-fast-84c9 {
  text-align: center;
}

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

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

.hidden_f416 .widget-basic-faac {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.box-009e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.huge-40bb {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.sidebar-39e8 {
  text-align: right;
}

.sidebar-39e8 .aside-bronze-4153 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-rough-ecf8 {
  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);
}

.tag-rough-ecf8:hover {
  background: var(--color-bg-alt);
}

.form-396f {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tag-rough-ecf8[aria-expanded="true"] .form-396f {
  transform: rotate(180deg);
}

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

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

.breadcrumb-orange-694b ul,
.breadcrumb-orange-694b ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.breadcrumb-orange-694b li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.list-bright-2e34 {
  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);
}

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

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

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

.narrow-9618,
.photo-stale-f6fd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.narrow-9618 h4,
.photo-stale-f6fd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.narrow-9618 ul,
.photo-stale-f6fd ul {
  list-style: none;
  padding: 0;
}

.narrow-9618 li,
.photo-stale-f6fd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.popup-97cb {
  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);
}

.prev_fe2b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-soft-0a2b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-soft-0a2b .hard-a8dc {
  color: #4caf50;
  font-size: 0.875rem;
}

.layout-285e {
  list-style: none;
  padding: 0;
}

.layout-285e li {
  margin-bottom: var(--space-xs);
}

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

.layout-285e a:hover {
  color: white;
}

.grid-out-a8c1 {
  list-style: none;
  padding: 0;
}

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

.grid-out-a8c1 a {
  color: #b0b0b0;
  text-decoration: none;
}

.grid-out-a8c1 a:hover {
  color: white;
}

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

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

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

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

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

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

.over-4211:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .filter_1809 {
    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;
  }
  
  .slider-cold-988d {
    font-size: 2rem;
  }
  
  .info-dim-2f7b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .aside-south-8195,
  .plasma-481b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .carousel_over_3ce5,
  .wide_1287,
  .upper-9cca,
  .aside-motion-e45b,
  .photo_medium_bd22,
  .paragraph-first-b463,
  .article-907e,
  .photo-d8c7 {
    grid-template-columns: 1fr;
  }
  
  .up-8ff8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .new_a10a {
    padding: var(--space-lg) 0;
  }
  
  .widget-f51a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .widget-f51a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .element_0db9 {
    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;
  }
  
  .up-8ff8 {
    grid-template-columns: 1fr;
  }
  
  .liquid_bf09,
  .paragraph_e8df,
  .over-7de5 {
    flex-direction: column;
    width: 100%;
  }
  
  .clean-64d0,
  .status-copper-4556,
  .liquid_bf09 .element_0db9,
  .paragraph_e8df .element_0db9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slider-cold-988d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .info-dim-2f7b {
    font-size: 1.375rem;
  }
  
  .in-ae4c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .narrow-cf5b,
  .surface-middle-dae6,
  .menu_bb49,
  .layout-cad3,
  .secondary-4bf2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .summary_north_9fa9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thick-cc60 {
    gap: var(--space-xs);
  }
  
  .table-725f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .shade_ca30 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hidden_f416 {
    width: 150px;
    height: 150px;
  }
  
  .selected_543b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture_dark_1668,
  .texture-down-b056,
  .liquid_bf09,
  .component_2a6d,
  .status_next_7eab,
  .bronze_a33b,
  .media_29a5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .new_a10a {
    page-break-inside: avoid;
  }
}

/* css-noise: 271c */
.ghost-box-z9 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
