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

.component_next_88f6:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.nav-2a47,
header,
.detail-fe1e,
.popup-copper-37d9,
.video_upper_2deb,
.tooltip_smooth_20d0,
.module_green_30d7,
.title_purple_5244,
.secondary_iron_6b4d {
  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
   ============================================ */
.nav-2a47 {
  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);
}

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

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

/* Scrolled state */
.nav-2a47.main-fast-b770 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.right-c675 {
  flex: 1;
}

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

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

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

.input-fcb2.fn-active-efb0 {
  background: var(--color-primary);
  color: white;
}

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

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

.info-next-02a1 svg {
  transition: transform 0.2s ease;
}

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

.tooltip-up-ddc9 {
  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;
}

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

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

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

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

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

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

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

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

.media-ed19 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .right-c675::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .right-c675.backdrop-bf01 {
    display: block;
    right: 0;
  }
  
  .yellow-bdf1 {
    flex-direction: column;
    gap: 0;
  }
  
  .input-fcb2 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .right-c675::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;
  }
  
  .right-c675.backdrop-bf01::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .right-c675 {
    display: none;
  }
  
  .backdrop_5494 {
    display: flex;
  }
  
  .header_ddb2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .media-ed19,
  .caption_gas_ac0e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .disabled_brown_fac9 {
    position: relative;
  }
  
  .tooltip-up-ddc9 {
    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;
  }
  
  .info-next-02a1[aria-expanded="true"] + .tooltip-up-ddc9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .banner-bronze-ac1a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .logo-d66a {
    gap: 8px;
  }
  
  .media-ed19 {
    display: none;
  }
  
  .caption_gas_ac0e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .white_9a34 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.notice-clean-c0b1 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-clean-c0b1 svg {
  flex-shrink: 0;
}

.notice-clean-c0b1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-clean-c0b1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.thumbnail-full-13bf a {
  color: var(--color-primary);
  text-decoration: none;
}

.thumbnail-full-13bf a:hover {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .preview-lower-71a5 {
    grid-template-columns: 1fr;
  }
}

.modal-top-4b23 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.label-last-fbdd {
  display: flex;
  align-items: center;
  justify-content: center;
}

.backdrop-warm-c82d {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .blue_0114 {
    grid-template-columns: 1fr;
  }
  
  .module_18c8 {
    font-size: 1.75rem;
  }
  
  .label-last-fbdd {
    order: -1;
    max-width: 100%;
  }
  
  .backdrop-warm-c82d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .module_18c8 {
    font-size: 1.5rem;
  }
  
  .hard_a42b {
    font-size: 1rem;
  }
  
  .thumbnail-full-13bf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .backdrop-warm-c82d {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-d697 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;
}

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

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

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

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

.section-black-5649 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim_bb84 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) {
  .thumbnail_f36d {
    grid-template-columns: 1fr;
  }
  
  .footer_thick_ce73 {
    font-size: 1.75rem;
  }
  
  .yellow-ea97 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer_thick_ce73 {
    font-size: 1.5rem;
  }
  
  .yellow-ea97 h3 {
    font-size: 1.375rem;
  }
  
  .yellow-ea97 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.popup-steel-f941 {
  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;
}

.large_062d {
  flex-shrink: 0;
}

.description-orange-1eb7 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.wood-2871,
.wrapper_f9b2,
.label_liquid_b821 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.wood-2871 thead,
.wrapper_f9b2 thead {
  background: var(--color-primary);
  color: white;
}

.wood-2871 th,
.wood-2871 td,
.wrapper_f9b2 th,
.wrapper_f9b2 td,
.label_liquid_b821 th,
.label_liquid_b821 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .wood-2871 th,
  .wood-2871 td,
  .wrapper_f9b2 th,
  .wrapper_f9b2 td,
  .label_liquid_b821 th,
  .label_liquid_b821 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .wood-2871,
  .wrapper_f9b2,
  .label_liquid_b821 {
    min-width: 600px;
  }
}

.wood-2871 th,
.wrapper_f9b2 th,
.label_liquid_b821 th {
  font-weight: 600;
}

.wood-2871 tbody tr:hover,
.wrapper_f9b2 tbody tr:hover,
.label_liquid_b821 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.short-a564 h4 {
  color: white;
}

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

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

.border-76ec:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.hover-smooth-5dcd {
  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);
}

.hover-smooth-5dcd span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.pressed-5b83 {
  font-weight: 600;
  color: white;
}

.disabled-f429 {
  list-style: none;
  padding: 0;
}

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

.table_green_a5c1 {
  color: #4caf50;
}

.hidden_first_757c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mini-eb70 .logo_plasma_214d {
  width: 100%;
  background: white;
}

.link-steel-eb1b .logo_plasma_214d {
  color: #667eea;
}

.caption-b335 .logo_plasma_214d {
  color: #f5576c;
}

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

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

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

.filter-975b {
  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);
}

.label-light-05b0 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.caption-smooth-3361 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .label-light-05b0 {
    padding: var(--space-md);
  }
  
  .caption-smooth-3361 {
    padding: var(--space-md);
  }
  
  .row_south_0bf6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.steel-d890,
.secondary_center_b1ed,
.chip_2262,
.list_261f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.focused-1bea:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.static-8f30 {
  border-color: var(--color-warning);
}

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

.out_67a0 .filter-a23b {
  background: #e8f5e9;
  color: var(--color-success);
}

.static-8f30 .filter-a23b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.active-6e9b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.element-24e9 {
  text-align: center;
}

.column-dark-20cb {
  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);
}

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

.column-dark-20cb .pressed-5b83 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-d506 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.element-old-0e30 {
  text-align: right;
}

.element-old-0e30 .paragraph-0d07 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.carousel-dark-3fc3 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

.section-first-0d95 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.widget-9efc {
  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);
}

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

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

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

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

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

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

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

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

.image-full-5244 {
  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);
}

.image-full-5244:hover {
  background: var(--color-bg-alt);
}

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

.image-full-5244[aria-expanded="true"] .tag_large_4d8e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip_5895 ul,
.caption_9a96 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern_212d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.bright-34cd {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.grid_silver_ab80 a:hover {
  color: white;
}

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

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

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

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

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

.short_ce53 a:hover {
  color: white;
}

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

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

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

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

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

.secondary-static-dc03 .modal-top-4b23 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.icon_center_fcde a:hover {
  color: white;
}

.heading-43ea {
  list-style: none;
  padding: 0;
}

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

.heading-43ea a {
  color: #b0b0b0;
  text-decoration: none;
}

.heading-43ea a:hover {
  color: white;
}

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

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

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

.complex-6bf0 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

.row-fresh-12a3 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.row-fresh-12a3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .frame_simple_e7f1 {
    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;
  }
  
  .module_18c8 {
    font-size: 2rem;
  }
  
  .footer_thick_ce73 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .blue_0114,
  .thumbnail_f36d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hidden-1e62,
  .filter-4e53,
  .filter-0d3d,
  .thumbnail_over_a0cd,
  .media-white-cf05,
  .active_plasma_7226,
  .card-0f02,
  .slow_fff5,
  .column-c14a {
    grid-template-columns: 1fr;
  }
  
  .light-bdac {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .module_green_30d7 {
    padding: var(--space-lg) 0;
  }
  
  .detail-d697 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .detail-d697 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .logo_plasma_214d {
    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;
  }
  
  .light-bdac {
    grid-template-columns: 1fr;
  }
  
  .photo_fresh_388f,
  .action-af3c,
  .stone-9327 {
    flex-direction: column;
    width: 100%;
  }
  
  .slider-fbb1,
  .focused-a84e,
  .photo_fresh_388f .logo_plasma_214d,
  .action-af3c .logo_plasma_214d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .module_18c8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .footer_thick_ce73 {
    font-size: 1.375rem;
  }
  
  .info-light-deb9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .nav_soft_3cf6,
  .shade_1452,
  .in-3768,
  .stone_444e,
  .layout_50ea {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .search_full_d196 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .bright-dd78 {
    gap: var(--space-xs);
  }
  
  .notice-clean-c0b1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hover-smooth-5dcd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .column-dark-20cb {
    width: 150px;
    height: 150px;
  }
  
  .text-9f24 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .nav-2a47,
  .detail-fe1e,
  .photo_fresh_388f,
  .container_inner_9f12,
  .title_purple_5244,
  .secondary_iron_6b4d,
  .backdrop_5494 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .module_green_30d7 {
    page-break-inside: avoid;
  }
}

/* css-noise: afe6 */
.phantom-card-r7 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
