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

.thick_06f2:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .hero-fixed-2a7f {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .hero-fixed-2a7f {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.basic_78f5,
header,
.white-04d2,
.secondary_last_521e,
.element_3b78,
.title-26fb,
.photo_e880,
.dynamic-ce91,
.active-3ed0 {
  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
   ============================================ */
.basic_78f5 {
  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);
}

.small-489c {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.block-dynamic-4acb {
  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;
}

.border-d81f {
  flex: 1;
}

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

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

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

.carousel_50a6.fn-active-459c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fresh-28f5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .border-d81f {
    display: none;
  }
  
  .full-d31c {
    display: flex;
  }
  
  .block-dynamic-4acb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fresh-28f5,
  .sort_b76a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .status_3021 {
    position: relative;
  }
  
  .hovered_9ead {
    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;
  }
  
  .primary_old_dc16[aria-expanded="true"] + .hovered_9ead {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .layout-b0f1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .white_d58c {
    gap: 8px;
  }
  
  .fresh-28f5 {
    display: none;
  }
  
  .sort_b76a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .texture_left_cc15 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.gold-b4a5 svg {
  flex-shrink: 0;
}

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

.gold-b4a5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .background-86c1 {
    grid-template-columns: 1fr;
  }
  
  .light-27ef {
    font-size: 1.75rem;
  }
  
  .list_0227 {
    order: -1;
    max-width: 100%;
  }
  
  .element_easy_6abc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .light-27ef {
    font-size: 1.5rem;
  }
  
  .primary-full-dccf {
    font-size: 1rem;
  }
  
  .layout_1719 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .element_easy_6abc {
    max-width: 250px;
  }
}

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

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

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

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

.outer-7e05:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.gradient-static-9ca1 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.liquid-0f18 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.liquid-0f18 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);
}

.liquid-0f18 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;
}

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

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

.main-409b {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-cool-91e1 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.message-cool-91e1 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) {
  .tabs_small_0527 {
    grid-template-columns: 1fr;
  }
  
  .plasma-e6a3 {
    font-size: 1.75rem;
  }
  
  .search_bronze_2a04 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .plasma-e6a3 {
    font-size: 1.5rem;
  }
  
  .search_bronze_2a04 h3 {
    font-size: 1.375rem;
  }
  
  .search_bronze_2a04 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.message-upper-4df9 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.cool-5b24 {
  flex-shrink: 0;
}

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

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

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

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

.shade_soft_4aa8 thead,
.smooth_7e11 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.shade_soft_4aa8 th,
.smooth_7e11 th,
.photo_narrow_e599 th {
  font-weight: 600;
}

.shade_soft_4aa8 tbody tr:hover,
.smooth_7e11 tbody tr:hover,
.photo_narrow_e599 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.main-2ba5 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.summary-103a {
  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);
}

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

.element-selected-1e6b {
  font-weight: 600;
  color: white;
}

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

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

.table_699d {
  color: #4caf50;
}

.glass-b9a5 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-selected-1e6b {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

.layout-fast-6a35 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-ff20 .steel-906e {
  width: 100%;
  background: white;
}

.media_122e .steel-906e {
  color: #667eea;
}

.pagination-fast-6edf .steel-906e {
  color: #f5576c;
}

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

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

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

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

.center-1054 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .center-1054 {
    padding: var(--space-md);
  }
  
  .first-aa49 {
    padding: var(--space-md);
  }
  
  .preview-3249 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.outline_bright_b9d5,
.wrapper_6363,
.wrapper-4ca3,
.gradient-e276 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thick_46fa .soft_a7f2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.gas_bdb4 .soft_a7f2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline_1b32 {
  text-align: center;
}

.label-plasma-4fba {
  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-6b13 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.label-plasma-4fba .element-selected-1e6b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.carousel-4b78 {
  color: var(--color-text-light);
}

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

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

.texture-wood-5438 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.box-5569 {
  text-align: right;
}

.box-5569 .secondary_8e31 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.mask-over-88f8 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.red-9b4d {
  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);
}

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

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

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

.complex_c4c6,
.focus-f543 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.complex_c4c6 h4,
.focus-f543 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.complex_c4c6 ul,
.focus-f543 ul {
  list-style: none;
  padding: 0;
}

.complex_c4c6 li,
.focus-f543 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.article-098c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.pro-68f5 {
  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);
}

.hidden_86ca {
  font-style: italic;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .avatar-red-4d74 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.summary_aaed a:hover {
  color: white;
}

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

.cool-1f52 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);
}

.cool-1f52 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.fresh-fea4 a:hover {
  color: white;
}

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

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

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

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

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

.steel_8f2b .bronze-f2d9 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.brown_c30c a:hover {
  color: white;
}

.action-cf8b {
  list-style: none;
  padding: 0;
}

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

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

.action-cf8b a:hover {
  color: white;
}

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

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

.image-bottom-7f69 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

.gradient-green-964a {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.gradient-green-964a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .highlight_5ad6 {
    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;
  }
  
  .light-27ef {
    font-size: 2rem;
  }
  
  .plasma-e6a3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .background-86c1,
  .tabs_small_0527 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .progress-rough-4054,
  .frame_paper_191c,
  .menu-hovered-1081,
  .old_bfc2,
  .copper-de2c,
  .clean-ef1c,
  .avatar-red-4d74,
  .tiny_1c91,
  .disabled-f518 {
    grid-template-columns: 1fr;
  }
  
  .accent_cb83 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .photo_e880 {
    padding: var(--space-lg) 0;
  }
  
  .liquid-0f18 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .liquid-0f18 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .steel-906e {
    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;
  }
  
  .accent_cb83 {
    grid-template-columns: 1fr;
  }
  
  .shadow_small_36d3,
  .carousel_45d2,
  .active_orange_7799 {
    flex-direction: column;
    width: 100%;
  }
  
  .under_7234,
  .gradient-static-9ca1,
  .shadow_small_36d3 .steel-906e,
  .carousel_45d2 .steel-906e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .light-27ef {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .plasma-e6a3 {
    font-size: 1.375rem;
  }
  
  .notification-mini-f559 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .item-a0c2,
  .mask-0623,
  .large_7fac,
  .disabled-ccd7,
  .column-center-9460 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .button_advanced_cab5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tag_hovered_b2e8 {
    gap: var(--space-xs);
  }
  
  .gold-b4a5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .summary-103a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .label-plasma-4fba {
    width: 150px;
    height: 150px;
  }
  
  .solid-6b13 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .basic_78f5,
  .white-04d2,
  .shadow_small_36d3,
  .popup_center_5569,
  .dynamic-ce91,
  .active-3ed0,
  .full-d31c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .photo_e880 {
    page-break-inside: avoid;
  }
}

/* css-noise: 5cb5 */
.widget-item-i0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
