/* ============================================
   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)
   ============================================ */
.north-94e5 {
  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;
}

.north-94e5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.active-34e3,
header,
.motion_1aef,
.caption_up_7571,
.backdrop-289f,
.silver_b607,
.picture_6ce2,
.primary_7318,
.sort_current_95b0 {
  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
   ============================================ */
.active-34e3 {
  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);
}

.fresh-4da3 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

.container-pink-02e2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.outer-3191 img {
  height: 36px;
  width: auto;
  display: block;
}

.title-iron-9f7c {
  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;
}

.card-963e {
  flex: 1;
}

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

.first-300c {
  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);
}

.first-300c:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.first-300c.fn-active-660f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.sort-center-b25d {
  position: relative;
}

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

.middle-d864 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.slow_828f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.gradient-last-030d[aria-expanded="true"] .tooltip_hard_2cf9:nth-child(2) {
  opacity: 0;
}

.gradient-last-030d[aria-expanded="true"] .tooltip_hard_2cf9:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .card-963e::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .card-963e.paper_a7f5 {
    display: block;
    right: 0;
  }
  
  .box-7f10 {
    flex-direction: column;
    gap: 0;
  }
  
  .first-300c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .card-963e::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;
  }
  
  .card-963e.paper_a7f5::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .card-963e {
    display: none;
  }
  
  .gradient-last-030d {
    display: flex;
  }
  
  .title-iron-9f7c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .slow_828f,
  .popup-0048 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sort-center-b25d {
    position: relative;
  }
  
  .next_5557 {
    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;
  }
  
  .middle-d864[aria-expanded="true"] + .next_5557 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay-f657 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hero-79ec {
    gap: 8px;
  }
  
  .slow_828f {
    display: none;
  }
  
  .popup-0048 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outer-3191 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .popup-0048 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .popup-0048 svg {
    width: 14px;
    height: 14px;
  }
  
  .shadow-pressed-106c {
    gap: var(--space-sm);
  }
}

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

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

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

.table_steel_2132 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.article-complex-dc61 a {
  color: var(--color-primary);
  text-decoration: none;
}

.article-complex-dc61 a:hover {
  text-decoration: underline;
}

.status-orange-89b6 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.focused-8b16 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.disabled-7e9f {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .outer-c999 {
    grid-template-columns: 1fr;
  }
  
  .iron-f8a2 {
    font-size: 1.75rem;
  }
  
  .footer_680c {
    order: -1;
    max-width: 100%;
  }
  
  .disabled-7e9f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .iron-f8a2 {
    font-size: 1.5rem;
  }
  
  .sidebar_green_0029 {
    font-size: 1rem;
  }
  
  .article-complex-dc61 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .disabled-7e9f {
    max-width: 250px;
  }
}

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

.pressed-049a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.texture-bronze-eb95 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.wrapper-dim-fe52 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.wrapper-dim-fe52 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);
}

.wrapper-dim-fe52 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;
}

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

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

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

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

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

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

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

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

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

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

.row-79cc img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.row-79cc 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);
}

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

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

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

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

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

.row-79cc strong {
  font-weight: 600;
  color: var(--color-text);
}

.row-79cc a {
  color: var(--color-primary);
  text-decoration: underline;
}

.row-79cc a:hover {
  color: var(--color-primary-dark);
}

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

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

.media_stone_b888 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) {
  .slider-26f5 {
    grid-template-columns: 1fr;
  }
  
  .brown_f7ac {
    font-size: 1.75rem;
  }
  
  .row-79cc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .brown_f7ac {
    font-size: 1.5rem;
  }
  
  .row-79cc h3 {
    font-size: 1.375rem;
  }
  
  .row-79cc h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.hard_be90 {
  flex-shrink: 0;
}

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

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

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

.orange-8516,
.small-4216,
.photo_0c98 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.orange-8516 thead,
.small-4216 thead {
  background: var(--color-primary);
  color: white;
}

.orange-8516 th,
.orange-8516 td,
.small-4216 th,
.small-4216 td,
.photo_0c98 th,
.photo_0c98 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .orange-8516 th,
  .orange-8516 td,
  .small-4216 th,
  .small-4216 td,
  .photo_0c98 th,
  .photo_0c98 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .orange-8516,
  .small-4216,
  .photo_0c98 {
    min-width: 600px;
  }
}

.orange-8516 th,
.small-4216 th,
.photo_0c98 th {
  font-weight: 600;
}

.orange-8516 tbody tr:hover,
.small-4216 tbody tr:hover,
.photo_0c98 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.primary-8384 h4 {
  color: white;
}

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

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

.clean-bf54:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.middle-bc67 {
  list-style: none;
  padding: 0;
}

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

.pressed-9844 {
  color: #4caf50;
}

.feature-motion-cf1f {
  color: #ff9800;
}

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

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

.layout-easy-2ee0 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside_da24 .wood-acc2 {
  width: 100%;
  background: white;
}

.form-action-00bf .wood-acc2 {
  color: #667eea;
}

.accent-easy-e8c9 .wood-acc2 {
  color: #f5576c;
}

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

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

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

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

.blue-eaa6 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .blue-eaa6 {
    padding: var(--space-md);
  }
  
  .tooltip_large_b582 {
    padding: var(--space-md);
  }
  
  .avatar_glass_a050 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.simple-7d94,
.box-lower-dd70,
.east_692d,
.video_thick_5acb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.surface-last-c14d h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.form-in-7679 {
  border-color: var(--color-warning);
}

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

.info_fresh_9d46 .black_e6ce {
  background: #e8f5e9;
  color: var(--color-success);
}

.form-in-7679 .black_e6ce {
  background: #fff3e0;
  color: var(--color-warning);
}

.heading-in-81d2 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.heading-in-81d2 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.dropdown-mini-70c9 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.section-static-4ade {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.chip-liquid-640e {
  margin-top: var(--space-xxl);
}

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

.hero-d3e2 {
  text-align: center;
}

.label-white-3b4c {
  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-glass-8246 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.label-white-3b4c .tooltip_3d36 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.top-707e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.breadcrumb-lite-5373 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.table-up-1ea4 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.pink-7ad8 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.card_0e89 {
  text-align: right;
}

.card_0e89 .light-c0e8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.status-514e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.paragraph-4ac4 {
  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);
}

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

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

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

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

.row-hovered-5b7e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.brown_ad04 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.popup-old-f88a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.brown_ad04[aria-expanded="true"] .popup-old-f88a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.short_047c h4,
.cold_7b4d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.short_047c ul,
.cold_7b4d ul {
  list-style: none;
  padding: 0;
}

.short_047c li,
.cold_7b4d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.overlay-thick-9b32 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.overlay-thick-9b32 ul {
  list-style: none;
  padding: 0;
}

.overlay-thick-9b32 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.hover-fluid-d7e2 {
  font-style: italic;
}

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

.hover-pro-68a9 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.center_fb18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.purple-2833 a:hover {
  color: white;
}

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

.badge_west_37a1 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

.icon-steel-561f {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.icon-steel-561f a:hover {
  color: white;
}

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

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

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

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

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

.hot_9fdf .focused-8b16 {
  color: #4caf50;
  font-size: 0.875rem;
}

.table-10e3 {
  list-style: none;
  padding: 0;
}

.table-10e3 li {
  margin-bottom: var(--space-xs);
}

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

.table-10e3 a:hover {
  color: white;
}

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

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

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

.slow_6b90 a:hover {
  color: white;
}

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

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

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

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

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

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

.chip-26b5 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.full-8e20:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .active_bronze_a3b1 {
    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;
  }
  
  .iron-f8a2 {
    font-size: 2rem;
  }
  
  .brown_f7ac {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .outer-c999,
  .slider-26f5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .fixed-a302,
  .status-8748,
  .clean_df6a,
  .badge-3100,
  .header-e247,
  .next_3285,
  .cool-74d0,
  .iron_fdee,
  .center_fb18 {
    grid-template-columns: 1fr;
  }
  
  .section_ab13 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .picture_6ce2 {
    padding: var(--space-lg) 0;
  }
  
  .wrapper-dim-fe52 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .wrapper-dim-fe52 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wood-acc2 {
    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;
  }
  
  .section_ab13 {
    grid-template-columns: 1fr;
  }
  
  .dark_704e,
  .liquid-dc1d,
  .glass_a4cd {
    flex-direction: column;
    width: 100%;
  }
  
  .texture-bronze-eb95,
  .brown-c3fb,
  .dark_704e .wood-acc2,
  .liquid-dc1d .wood-acc2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .iron-f8a2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .brown_f7ac {
    font-size: 1.375rem;
  }
  
  .disabled_19af {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .section-bottom-d101,
  .notice-53d6,
  .picture_yellow_b80e,
  .table-e8db,
  .rough_1bc7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .badge_gas_5102 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .backdrop_advanced_5cea {
    gap: var(--space-xs);
  }
  
  .table_steel_2132 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .component_cold_c681 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .label-white-3b4c {
    width: 150px;
    height: 150px;
  }
  
  .button-glass-8246 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active-34e3,
  .motion_1aef,
  .dark_704e,
  .hover-pro-68a9,
  .primary_7318,
  .sort_current_95b0,
  .gradient-last-030d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .picture_6ce2 {
    page-break-inside: avoid;
  }
}

/* css-noise: 80d3 */
.promo-block-f4 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.0;
}
