/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.feature_wood_4d41 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.feature_wood_4d41:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.background_outer_c28c,
header,
.wrapper_f00b,
.tooltip_pink_57be,
.tag-basic-913d,
.notice-5330,
.up-8400,
.photo_67d3,
.tabs-9ee3 {
  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
   ============================================ */
.background_outer_c28c {
  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);
}

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

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

/* Scrolled state */
.background_outer_c28c.menu-fixed-14d6 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.filter-fixed-d978 {
  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;
}

.background_bb49 {
  flex: 1;
}

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

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

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

.cold_d045.fn-active-a956 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.action-2209 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.search-selected-991f {
  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;
}

.search-selected-991f: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);
}

.search-selected-991f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .background_bb49 {
    display: none;
  }
  
  .tiny_128b {
    display: flex;
  }
  
  .filter-fixed-d978 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .action-2209,
  .search-selected-991f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .heading_iron_beee {
    position: relative;
  }
  
  .right_c061 {
    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;
  }
  
  .detail_soft_7c4f[aria-expanded="true"] + .right_c061 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .element_b1f3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .wide_8ef2 {
    gap: 8px;
  }
  
  .action-2209 {
    display: none;
  }
  
  .search-selected-991f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .out_847c img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .search-selected-991f {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .search-selected-991f svg {
    width: 14px;
    height: 14px;
  }
  
  .wrapper-out-0df1 {
    gap: var(--space-sm);
  }
}

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

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

.text-white-039e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-white-039e svg {
  flex-shrink: 0;
}

.text-white-039e a {
  color: var(--color-primary);
  text-decoration: none;
}

.text-white-039e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-west-e2ea {
  display: flex;
  gap: var(--space-sm);
}

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

.block-05b4 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.block-05b4 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.gradient-wood-5ac0 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .message-c467 {
    grid-template-columns: 1fr;
  }
  
  .hover_0a3c {
    font-size: 1.75rem;
  }
  
  .gradient-wood-5ac0 {
    order: -1;
    max-width: 100%;
  }
  
  .gradient_hot_1721 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hover_0a3c {
    font-size: 1.5rem;
  }
  
  .gold-0eda {
    font-size: 1rem;
  }
  
  .border_6537 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gradient_hot_1721 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-current-57ae {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wood-69c5 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.wood-69c5 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) {
  .article_solid_dcf8 {
    grid-template-columns: 1fr;
  }
  
  .solid-0631 {
    font-size: 1.75rem;
  }
  
  .soft_2f54 {
    max-width: 100%;
  }
}

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

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

.carousel-4eea {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.tag-iron-47b4 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.tertiary-liquid-1d20 {
  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;
}

.copper-b125 {
  flex-shrink: 0;
}

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

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

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

.hover_center_27da,
.search_pressed_b611,
.photo-c37e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hover_center_27da thead,
.search_pressed_b611 thead {
  background: var(--color-primary);
  color: white;
}

.hover_center_27da th,
.hover_center_27da td,
.search_pressed_b611 th,
.search_pressed_b611 td,
.photo-c37e th,
.photo-c37e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hover_center_27da th,
  .hover_center_27da td,
  .search_pressed_b611 th,
  .search_pressed_b611 td,
  .photo-c37e th,
  .photo-c37e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hover_center_27da,
  .search_pressed_b611,
  .photo-c37e {
    min-width: 600px;
  }
}

.hover_center_27da th,
.search_pressed_b611 th,
.photo-c37e th {
  font-weight: 600;
}

.hover_center_27da tbody tr:hover,
.search_pressed_b611 tbody tr:hover,
.photo-c37e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.action-630c h4 {
  color: white;
}

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

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

.notification_stale_46ed:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.status-778c {
  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);
}

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

.logo-complex-aead {
  font-weight: 600;
  color: white;
}

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

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

.avatar_f740 {
  color: #4caf50;
}

.search-glass-2b8b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.advanced_8654 .up-7433 {
  width: 100%;
  background: white;
}

.header-e8c8 .up-7433 {
  color: #667eea;
}

.row-over-ee56 .up-7433 {
  color: #f5576c;
}

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

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

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

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

.hover-pressed-aa1a h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .hover-pressed-aa1a {
    padding: var(--space-md);
  }
  
  .new-9667 {
    padding: var(--space-md);
  }
  
  .focus_lower_5915 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.full_bb70,
.header_0035,
.dropdown_selected_88d1,
.orange_fa3d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.button-advanced-9e65:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.orange_3db6 .box-e34a {
  background: #e8f5e9;
  color: var(--color-success);
}

.element_rough_637d .box-e34a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel-6004 {
  text-align: center;
}

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

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

.disabled-7f91 .logo-complex-aead {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.badge-stale-7f9c {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.hover-solid-5a56 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.full-4812 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.over_8966 {
  text-align: right;
}

.over_8966 .feature-large-b171 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.texture-wood-da69 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-4df6 {
  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);
}

.carousel-4df6:hover {
  background: var(--color-bg-alt);
}

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

.carousel-4df6[aria-expanded="true"] .search-0511 {
  transform: rotate(180deg);
}

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

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

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

.grid-active-a8d4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_plasma_2d66 ul,
.image_clean_f761 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-upper-99a9 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-dark-8e17 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo-dark-8e17 li {
  margin-bottom: var(--space-xs);
}

.logo-dark-8e17 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo-dark-8e17 a:hover {
  color: white;
}

.icon-slow-7d08 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.icon-slow-7d08 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);
}

.icon-slow-7d08 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.heading-steel-f6d0 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.heading-steel-f6d0 a:hover {
  color: white;
}

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

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

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

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

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

.header_focused_25d4 .section-west-e2ea {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.orange_5ebf a:hover {
  color: white;
}

.large-63f0 {
  list-style: none;
  padding: 0;
}

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

.large-63f0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.large-63f0 a:hover {
  color: white;
}

.backdrop-purple-c41c {
  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);
}

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

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

.hover-action-0232 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.steel-1a3b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .backdrop-purple-c41c {
    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;
  }
  
  .hover_0a3c {
    font-size: 2rem;
  }
  
  .solid-0631 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .message-c467,
  .article_solid_dcf8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .header_4af9,
  .bronze_e4e2,
  .dark-08f0,
  .status-2898,
  .gold-1659,
  .filter_51e2,
  .disabled_058f,
  .box_bronze_5d49,
  .info-08ae {
    grid-template-columns: 1fr;
  }
  
  .shade_abf1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .up-8400 {
    padding: var(--space-lg) 0;
  }
  
  .background_brown_f1dd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .background_brown_f1dd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .up-7433 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .shade_abf1 {
    grid-template-columns: 1fr;
  }
  
  .paper_fd33,
  .outer-5aef,
  .carousel_small_f1d8 {
    flex-direction: column;
    width: 100%;
  }
  
  .list-4712,
  .badge_f679,
  .paper_fd33 .up-7433,
  .outer-5aef .up-7433 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hover_0a3c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .solid-0631 {
    font-size: 1.375rem;
  }
  
  .photo-light-9875 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .widget-bc61,
  .slider_bronze_4a55,
  .focus_focused_ebe2,
  .shadow_motion_a97e,
  .content-easy-d37e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .menu_clean_4b6a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .component-7dd8 {
    gap: var(--space-xs);
  }
  
  .text-white-039e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .status-778c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .disabled-7f91 {
    width: 150px;
    height: 150px;
  }
  
  .gallery-new-f95d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .background_outer_c28c,
  .wrapper_f00b,
  .paper_fd33,
  .wide_cf66,
  .photo_67d3,
  .tabs-9ee3,
  .tiny_128b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .up-8400 {
    page-break-inside: avoid;
  }
}

/* css-noise: 131f */
.promo-block-h9 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
