/* ============================================
   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)
   ============================================ */
.disabled-a66b {
  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;
}

.disabled-a66b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.video_iron_86f7,
header,
.bronze-d567,
.west-c6e6,
.dropdown-smooth-e8c4,
.message-3c02,
.badge_7d0c,
.icon_8d95,
.over_7480 {
  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
   ============================================ */
.video_iron_86f7 {
  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);
}

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

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

/* Scrolled state */
.video_iron_86f7.highlight-dirty-812e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.tertiary-mini-84fd {
  flex: 1;
}

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

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

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

.shade-1295.fn-active-9d8d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.row-yellow-c32b {
  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;
}

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

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

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

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

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

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

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

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

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

/* Header Download Button */
.search-clean-dafc {
  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-clean-dafc: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-clean-dafc svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .tertiary-mini-84fd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .tertiary-mini-84fd.tabs_f55f {
    display: block;
    right: 0;
  }
  
  .fast-5f3f {
    flex-direction: column;
    gap: 0;
  }
  
  .shade-1295 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .tertiary-mini-84fd::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;
  }
  
  .tertiary-mini-84fd.tabs_f55f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .tertiary-mini-84fd {
    display: none;
  }
  
  .tag_bronze_f7db {
    display: flex;
  }
  
  .east-f4b0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .cold-d51b,
  .search-clean-dafc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .iron_8274 {
    position: relative;
  }
  
  .row-yellow-c32b {
    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;
  }
  
  .static_3a00[aria-expanded="true"] + .row-yellow-c32b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .active-stone-1961 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .aside-729d {
    gap: 8px;
  }
  
  .cold-d51b {
    display: none;
  }
  
  .search-clean-dafc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .brown_8eb3 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .search-clean-dafc {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .search-clean-dafc svg {
    width: 14px;
    height: 14px;
  }
  
  .hero-dynamic-6b35 {
    gap: var(--space-sm);
  }
}

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

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

.aside-soft-0612 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.aside-soft-0612 svg {
  flex-shrink: 0;
}

.aside-soft-0612 a {
  color: var(--color-primary);
  text-decoration: none;
}

.aside-soft-0612 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.basic-cfa2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.widget-bottom-d801 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .inner_18ac {
    grid-template-columns: 1fr;
  }
  
  .aside-fresh-f4e0 {
    font-size: 1.75rem;
  }
  
  .widget-bottom-d801 {
    order: -1;
    max-width: 100%;
  }
  
  .tabs_a10e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .aside-fresh-f4e0 {
    font-size: 1.5rem;
  }
  
  .active_b710 {
    font-size: 1rem;
  }
  
  .basic-cfa2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tabs_a10e {
    max-width: 250px;
  }
}

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

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

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

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

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

.status-motion-9e76 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.status-motion-9e76:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

.item-center-55ed {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-slow-6883 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.backdrop-slow-6883 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);
}

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

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

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

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

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

.backdrop-slow-6883 strong {
  font-weight: 600;
  color: var(--color-text);
}

.backdrop-slow-6883 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.backdrop-slow-6883 a:hover {
  color: var(--color-primary-dark);
}

.secondary-liquid-4bf4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.secondary-liquid-4bf4 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) {
  .active-dynamic-4fce {
    grid-template-columns: 1fr;
  }
  
  .carousel_cccb {
    font-size: 1.75rem;
  }
  
  .backdrop-slow-6883 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel_cccb {
    font-size: 1.5rem;
  }
  
  .backdrop-slow-6883 h3 {
    font-size: 1.375rem;
  }
  
  .backdrop-slow-6883 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.thick-832b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.tertiary-short-d679 {
  flex-shrink: 0;
}

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

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

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

.link_basic_8f27,
.cold_610b,
.badge_light_67fa {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.link_basic_8f27 thead,
.cold_610b thead {
  background: var(--color-primary);
  color: white;
}

.link_basic_8f27 th,
.link_basic_8f27 td,
.cold_610b th,
.cold_610b td,
.badge_light_67fa th,
.badge_light_67fa td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .link_basic_8f27 th,
  .link_basic_8f27 td,
  .cold_610b th,
  .cold_610b td,
  .badge_light_67fa th,
  .badge_light_67fa td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .link_basic_8f27,
  .cold_610b,
  .badge_light_67fa {
    min-width: 600px;
  }
}

.link_basic_8f27 th,
.cold_610b th,
.badge_light_67fa th {
  font-weight: 600;
}

.link_basic_8f27 tbody tr:hover,
.cold_610b tbody tr:hover,
.badge_light_67fa tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.primary-steel-ba12 h4 {
  color: white;
}

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

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

.chip-d9c8:last-child {
  border-bottom: none;
}

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

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

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

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

.down-e23b:hover {
  text-decoration: underline;
}

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

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

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

.footer-basic-e3c6 {
  font-weight: 600;
  color: white;
}

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

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

.photo-action-9943 {
  color: #4caf50;
}

.breadcrumb_3f6e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover_warm_366c .carousel-yellow-bbc1 {
  width: 100%;
  background: white;
}

.top_0c3b .carousel-yellow-bbc1 {
  color: #667eea;
}

.cold_2b90 .carousel-yellow-bbc1 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.hidden-action-7b28 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.accordion-0b74 {
  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);
}

.feature-full-26f2 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .feature-full-26f2 {
    padding: var(--space-md);
  }
  
  .primary_6af1 {
    padding: var(--space-md);
  }
  
  .sidebar_west_d881 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.texture-27c2 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.active_bright_9d39,
.secondary_lower_317b,
.inner_df48,
.top-1660 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-ae4c .form-0415 {
  background: #e8f5e9;
  color: var(--color-success);
}

.content-d3cb .form-0415 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview-9e0b {
  margin-top: var(--space-xxl);
}

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

.search-thick-d36d {
  text-align: center;
}

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

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

.hover-ab37 .footer-basic-e3c6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.title-4b36 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-dirty-a265 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.detail_over_bdfa {
  text-align: right;
}

.detail_over_bdfa .slider-a690 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.new-cb70 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

.tooltip-last-f695 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.tabs_76c9[aria-expanded="true"] .large_174b {
  transform: rotate(180deg);
}

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

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

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

.panel-dim-c1b9 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.liquid-3c46 {
  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);
}

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

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

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

.hard-2889,
.notification-paper-eefd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hard-2889 h4,
.notification-paper-eefd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hard-2889 ul,
.notification-paper-eefd ul {
  list-style: none;
  padding: 0;
}

.hard-2889 li,
.notification-paper-eefd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.filter-60e4 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.slow-1a03 {
  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);
}

.overlay_2d78 {
  font-style: italic;
}

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

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

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

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

.tertiary-steel-59c6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.info-pro-eac5 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.middle_9be0 a:hover {
  color: white;
}

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

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

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

.hot_de05 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hot_de05 a:hover {
  color: white;
}

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

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

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

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

.gallery-solid-85a7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.gallery-solid-85a7 .block_a737 {
  color: #4caf50;
  font-size: 0.875rem;
}

.content-fb39 {
  list-style: none;
  padding: 0;
}

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

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

.content-fb39 a:hover {
  color: white;
}

.motion-151b {
  list-style: none;
  padding: 0;
}

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

.motion-151b a {
  color: #b0b0b0;
  text-decoration: none;
}

.motion-151b a:hover {
  color: white;
}

.pro-46fc {
  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);
}

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

.rough-61c5 a {
  color: #4caf50;
  text-decoration: none;
}

.grid-hovered-d6f7 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.slow-0f4c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pro-46fc {
    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;
  }
  
  .aside-fresh-f4e0 {
    font-size: 2rem;
  }
  
  .carousel_cccb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .inner_18ac,
  .active-dynamic-4fce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .last_61b7,
  .image-0c13,
  .info_cc4e,
  .alert-9eae,
  .feature-plasma-6998,
  .easy-9b3c,
  .component_slow_fc44,
  .message-2d5a,
  .nav_plasma_aa56 {
    grid-template-columns: 1fr;
  }
  
  .sort_4672 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .badge_7d0c {
    padding: var(--space-lg) 0;
  }
  
  .element_thick_203e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .element_thick_203e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel-yellow-bbc1 {
    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;
  }
  
  .sort_4672 {
    grid-template-columns: 1fr;
  }
  
  .notification-ea66,
  .tertiary-steel-59c6,
  .highlight-cool-793f {
    flex-direction: column;
    width: 100%;
  }
  
  .plasma_8149,
  .item-center-55ed,
  .notification-ea66 .carousel-yellow-bbc1,
  .tertiary-steel-59c6 .carousel-yellow-bbc1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .aside-fresh-f4e0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .carousel_cccb {
    font-size: 1.375rem;
  }
  
  .row-old-3acc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tabs-2ea8,
  .east-947f,
  .down-def9,
  .notice_red_f6c5,
  .box_9253 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .active_dbe4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pattern_6f01 {
    gap: var(--space-xs);
  }
  
  .aside-soft-0612 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .center-f54a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hover-ab37 {
    width: 150px;
    height: 150px;
  }
  
  .solid_f45f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .video_iron_86f7,
  .bronze-d567,
  .notification-ea66,
  .current_1f48,
  .icon_8d95,
  .over_7480,
  .tag_bronze_f7db {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .badge_7d0c {
    page-break-inside: avoid;
  }
}

/* css-noise: fa46 */
.phantom-card-q2 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.0;
}
