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

.light_c4ff:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.right_d200,
header,
.feature-simple-0582,
.chip_255e,
.chip_tall_102e,
.pink_499c,
.wrapper-66fc,
.over_0a81,
.frame_hovered_5abf {
  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
   ============================================ */
.right_d200 {
  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);
}

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

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

/* Scrolled state */
.right_d200.message-basic-578b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.short-3a6a {
  flex: 1;
}

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

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

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

.nav-b2c4.fn-active-9a89 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.fast-be97 {
  position: relative;
}

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

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

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

.container-fresh-2b38 {
  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;
}

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

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

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

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

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

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

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

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

.layout_5de9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .short-3a6a {
    display: none;
  }
  
  .item_dee0 {
    display: flex;
  }
  
  .full-c13d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .layout_5de9,
  .liquid-f1ec {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .fast-be97 {
    position: relative;
  }
  
  .container-fresh-2b38 {
    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;
  }
  
  .module_dark_0738[aria-expanded="true"] + .container-fresh-2b38 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pro_f26e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .header_e978 {
    gap: 8px;
  }
  
  .layout_5de9 {
    display: none;
  }
  
  .liquid-f1ec {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .preview_iron_b1b4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.stone-eddf svg {
  flex-shrink: 0;
}

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

.stone-eddf a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.secondary-hot-7ad7 a {
  color: var(--color-primary);
  text-decoration: none;
}

.secondary-hot-7ad7 a:hover {
  text-decoration: underline;
}

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

.slider_b2f4 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .slider_b2f4 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

.tabs-015c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tabs-015c strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.silver-0e1e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .status-9b66 {
    grid-template-columns: 1fr;
  }
  
  .slider_b2f4 {
    font-size: 1.75rem;
  }
  
  .fresh-e5d3 {
    order: -1;
    max-width: 100%;
  }
  
  .silver-0e1e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slider_b2f4 {
    font-size: 1.5rem;
  }
  
  .slider_832b {
    font-size: 1rem;
  }
  
  .secondary-hot-7ad7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .silver-0e1e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-849b {
  list-style: none;
  counter-reset: toc-counter;
}

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

.tabs-849b 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);
}

.tabs-849b 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;
}

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

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

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

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

.thumbnail-east-9f22 {
  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);
}

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

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

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

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

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

.status-black-a030 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.status-black-a030 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);
}

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

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

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

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

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

.status-black-a030 strong {
  font-weight: 600;
  color: var(--color-text);
}

.status-black-a030 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.status-black-a030 a:hover {
  color: var(--color-primary-dark);
}

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

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

.carousel-cf74 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) {
  .steel-cbe7 {
    grid-template-columns: 1fr;
  }
  
  .shade-11e7 {
    font-size: 1.75rem;
  }
  
  .status-black-a030 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shade-11e7 {
    font-size: 1.5rem;
  }
  
  .status-black-a030 h3 {
    font-size: 1.375rem;
  }
  
  .status-black-a030 h4 {
    font-size: 1.125rem;
  }
}

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

.gold-88f8 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.stale-565f {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.paragraph-hard-010d {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.hard_e123 {
  flex-shrink: 0;
}

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

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

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

.gradient-5847,
.hidden-6fc5,
.old_847f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gradient-5847 thead,
.hidden-6fc5 thead {
  background: var(--color-primary);
  color: white;
}

.gradient-5847 th,
.gradient-5847 td,
.hidden-6fc5 th,
.hidden-6fc5 td,
.old_847f th,
.old_847f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gradient-5847 th,
  .gradient-5847 td,
  .hidden-6fc5 th,
  .hidden-6fc5 td,
  .old_847f th,
  .old_847f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gradient-5847,
  .hidden-6fc5,
  .old_847f {
    min-width: 600px;
  }
}

.gradient-5847 th,
.hidden-6fc5 th,
.old_847f th {
  font-weight: 600;
}

.gradient-5847 tbody tr:hover,
.hidden-6fc5 tbody tr:hover,
.old_847f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.left_a978 h4 {
  color: white;
}

.filter-complex-055f {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

.pressed-87fa {
  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);
}

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

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

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

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

.layout-bottom-703a {
  color: #4caf50;
}

.video-short-e999 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.hero-old-7e9a {
  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;
}

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

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

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

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

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

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

.sort-new-72e8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.hover-tall-14c2 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.top-ea51 .fresh-b142 {
  width: 100%;
  background: white;
}

.accent_8067 .fresh-b142 {
  color: #667eea;
}

.icon_right_2ac2 .fresh-b142 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.texture-inner-9d5b {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.out-66e3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.shadow-white-bc10 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .out-66e3 {
    padding: var(--space-md);
  }
  
  .shadow-white-bc10 {
    padding: var(--space-md);
  }
  
  .banner_bottom_97bd {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.plasma-43ab,
.content_advanced_9090,
.orange-12ba,
.summary-advanced-07ce {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.pressed-5ab2 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.frame-88e2 {
  border-color: var(--color-success);
}

.notification-lower-c978 {
  border-color: var(--color-warning);
}

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

.frame-88e2 .container_dynamic_77c2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notification-lower-c978 .container_dynamic_77c2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.copper-3d3f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.notification-bright-1c17 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.frame-medium-747e {
  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);
}

.tooltip-8d3c {
  text-align: center;
}

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

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

.module_eede .mask_ac27 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.notification-22c0 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.panel-9f09 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.over-f9da {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.component-d664 {
  border: 2px solid #4caf50;
}

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

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

.list-yellow-27c0 {
  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;
}

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

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

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

.section-thick-bcda {
  text-align: right;
}

.section-thick-bcda .wrapper_cold_9e7c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hero-red-0811 {
  background: #e8f5e9;
  color: #2e7d32;
}

.pink-1af2 {
  background: #e3f2fd;
  color: #1565c0;
}

.form-thick-b991 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.tag-5b74 {
  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);
}

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

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

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

.slider-17b2 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.pattern-43a8 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.glass-6935[aria-expanded="true"] .pattern-43a8 {
  transform: rotate(180deg);
}

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

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

.lower-167a ul,
.lower-167a ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.lower-167a li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.row_d0d5 ul,
.footer_39cb ul {
  list-style: none;
  padding: 0;
}

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

.feature_c3f3 {
  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_c3f3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.search-bb5a {
  font-style: italic;
}

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

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

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

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

.banner-plasma-5c64 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero_new_0c37 a:hover {
  color: white;
}

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

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

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

.card-9cfe {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.card-9cfe a:hover {
  color: white;
}

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

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

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

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

.content-down-5b0a {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.content-down-5b0a .photo_4b53 {
  color: #4caf50;
  font-size: 0.875rem;
}

.avatar-2bf3 {
  list-style: none;
  padding: 0;
}

.avatar-2bf3 li {
  margin-bottom: var(--space-xs);
}

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

.avatar-2bf3 a:hover {
  color: white;
}

.thumbnail-north-a95e {
  list-style: none;
  padding: 0;
}

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

.thumbnail-north-a95e a {
  color: #b0b0b0;
  text-decoration: none;
}

.thumbnail-north-a95e a:hover {
  color: white;
}

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

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

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

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

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

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

.backdrop-ab80 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;
}

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

.fixed-b76a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .green_06c3 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .slider_b2f4 {
    font-size: 2rem;
  }
  
  .shade-11e7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .status-9b66,
  .steel-cbe7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block-ff54,
  .warm_b4f7,
  .article_next_44e4,
  .highlight_b1b5,
  .article-3bd0,
  .feature_c3f3,
  .carousel_stone_c0a8,
  .tiny_a68e,
  .title-last-6842 {
    grid-template-columns: 1fr;
  }
  
  .main-solid-aa47 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wrapper-66fc {
    padding: var(--space-lg) 0;
  }
  
  .tabs-849b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs-849b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .fresh-b142 {
    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;
  }
  
  .main-solid-aa47 {
    grid-template-columns: 1fr;
  }
  
  .filter_cold_c1dc,
  .banner-plasma-5c64,
  .in-d245 {
    flex-direction: column;
    width: 100%;
  }
  
  .stone_02f3,
  .alert_cc86,
  .filter_cold_c1dc .fresh-b142,
  .banner-plasma-5c64 .fresh-b142 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slider_b2f4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .shade-11e7 {
    font-size: 1.375rem;
  }
  
  .status-stone-f7e6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .button-9d4a,
  .first-1d65,
  .header_f985,
  .video-5a29,
  .easy-338d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hovered_b89a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .heading_b3fa {
    gap: var(--space-xs);
  }
  
  .stone-eddf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pressed-87fa {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .module_eede {
    width: 150px;
    height: 150px;
  }
  
  .tertiary-732d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .right_d200,
  .feature-simple-0582,
  .filter_cold_c1dc,
  .cold_bec8,
  .over_0a81,
  .frame_hovered_5abf,
  .item_dee0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wrapper-66fc {
    page-break-inside: avoid;
  }
}

/* css-noise: 4737 */
.promo-block-u7 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
