/* ============================================
   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)
   ============================================ */
.description-huge-54e3 {
  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;
}

.description-huge-54e3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.solid-c6dc,
header,
.narrow_a685,
.outline-east-3923,
.primary-rough-1114,
.widget-red-d0cc,
.motion_35d6,
.gold_cc55,
.module-pro-1801 {
  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
   ============================================ */
.solid-c6dc {
  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);
}

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

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

/* Scrolled state */
.solid-c6dc.menu-large-5ecd {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.current-b8f0 {
  flex: 1;
}

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

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

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

.avatar-5861.fn-active-5781 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.down_0eae svg {
  flex-shrink: 0;
}

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

.sidebar-72af: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);
}

.sidebar-72af svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.disabled_brown_8f14[aria-expanded="true"] .accordion-dark-c924:nth-child(2) {
  opacity: 0;
}

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

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

  .current-b8f0::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .current-b8f0.lite-9ffe {
    display: block;
    right: 0;
  }
  
  .widget-over-94ea {
    flex-direction: column;
    gap: 0;
  }
  
  .avatar-5861 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .current-b8f0::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;
  }
  
  .current-b8f0.lite-9ffe::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .current-b8f0 {
    display: none;
  }
  
  .disabled_brown_8f14 {
    display: flex;
  }
  
  .hot_57d5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .down_0eae,
  .sidebar-72af {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav_a19f {
    position: relative;
  }
  
  .table_9ced {
    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;
  }
  
  .picture_9170[aria-expanded="true"] + .table_9ced {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .warm_710f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .table_0aa0 {
    gap: 8px;
  }
  
  .down_0eae {
    display: none;
  }
  
  .sidebar-72af {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .content_95a6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.tertiary-9491 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tertiary-9491 svg {
  flex-shrink: 0;
}

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

.tertiary-9491 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.steel-b327 a:hover {
  text-decoration: underline;
}

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

.detail-inner-29a6 {
  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) {
  .detail-inner-29a6 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .detail-inner-29a6 {
    font-size: 1.5rem;
  }
}

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

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

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

.wide-7b4d {
  display: flex;
  gap: var(--space-sm);
}

.alert-5270 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.border-04e3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.border-04e3 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.notice-dark-8b27 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.lite-1d7e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .west-902d {
    grid-template-columns: 1fr;
  }
  
  .detail-inner-29a6 {
    font-size: 1.75rem;
  }
  
  .layout-7455 {
    order: -1;
    max-width: 100%;
  }
  
  .lite-1d7e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail-inner-29a6 {
    font-size: 1.5rem;
  }
  
  .pressed_95e3 {
    font-size: 1rem;
  }
  
  .steel-b327 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .lite-1d7e {
    max-width: 250px;
  }
}

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

.texture-03d0 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.prev-3ab0 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-black-370e {
  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);
}

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

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

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

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

.light-190c img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.light-190c 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);
}

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

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

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

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

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

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

.light-190c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.light-190c a:hover {
  color: var(--color-primary-dark);
}

.row-wide-7e10 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.row-wide-7e10 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) {
  .alert_8978 {
    grid-template-columns: 1fr;
  }
  
  .tag-black-370e {
    font-size: 1.75rem;
  }
  
  .light-190c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-black-370e {
    font-size: 1.5rem;
  }
  
  .light-190c h3 {
    font-size: 1.375rem;
  }
  
  .light-190c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.link-old-2d52 {
  flex-shrink: 0;
}

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

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

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

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

.chip_af49 thead,
.search_d43e thead {
  background: var(--color-primary);
  color: white;
}

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

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

.chip_af49 th,
.search_d43e th,
.box_8168 th {
  font-weight: 600;
}

.chip_af49 tbody tr:hover,
.search_d43e tbody tr:hover,
.box_8168 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.link_dirty_4b2d h4 {
  color: white;
}

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

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

.stale-59e4:last-child {
  border-bottom: none;
}

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

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

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

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

.picture-silver-e2a8:hover {
  text-decoration: underline;
}

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

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

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

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

.info-active-e479 {
  list-style: none;
  padding: 0;
}

.info-active-e479 li {
  padding: var(--space-xs) 0;
}

.gold-eef1 {
  color: #4caf50;
}

.hovered-8b75 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.white_71ad .element_a251 {
  width: 100%;
  background: white;
}

.gradient-ed81 .element_a251 {
  color: #667eea;
}

.column-319c .element_a251 {
  color: #f5576c;
}

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

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

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

.wrapper-pro-3b30 {
  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);
}

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

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

@media (max-width: 768px) {
  .panel_dynamic_67f8 {
    padding: var(--space-md);
  }
  
  .stale_1bc8 {
    padding: var(--space-md);
  }
  
  .basic-b324 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.hot-41f1 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.component_dynamic_eb2c,
.left_0e28,
.narrow-f48d,
.accent_b4a1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.pagination-cold-517c {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.element-static-3112:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.icon-36e8 {
  border-color: var(--color-success);
}

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

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

.icon-36e8 .media_advanced_70e3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget-4506 .media_advanced_70e3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.silver-845b {
  margin-top: var(--space-xxl);
}

.badge-pressed-1a92 {
  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);
}

.gradient-gold-1507 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.image-orange-2469 {
  color: var(--color-text-light);
}

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

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

.gas-fd85 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

.logo-red-894a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

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

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

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

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

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

.hover_dirty_11be {
  text-align: right;
}

.hover_dirty_11be .picture_last_2043 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.shadow-under-93a0 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.photo-right-de87 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.table-brown-af43 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.section-simple-b470 {
  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);
}

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

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

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

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

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

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

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

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

.modal-up-9fda {
  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);
}

.modal-up-9fda:hover {
  background: var(--color-bg-alt);
}

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

.modal-up-9fda[aria-expanded="true"] .under_27b9 {
  transform: rotate(180deg);
}

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

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

.message-fluid-97e3 ul,
.message-fluid-97e3 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.message-fluid-97e3 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.cold_1de0 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

.complex-d4bd,
.white-2592 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.complex-d4bd h4,
.white-2592 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.complex-d4bd ul,
.white-2592 ul {
  list-style: none;
  padding: 0;
}

.complex-d4bd li,
.white-2592 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.filter-last-8e3a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.filter-last-8e3a ul {
  list-style: none;
  padding: 0;
}

.filter-last-8e3a li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.aside-5e8b {
  font-style: italic;
}

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

.popup_0890 {
  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_0890 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

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

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

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

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

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

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

.smooth-741f {
  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);
}

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

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

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

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

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

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

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

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

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

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

.popup_cda7 .wide-7b4d {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.caption_dfc3 a:hover {
  color: white;
}

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

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

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

.gas_d10f a:hover {
  color: white;
}

.detail-up-f8c1 {
  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);
}

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

.search-5ba7 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.tabs-ef5f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .detail-up-f8c1 {
    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;
  }
  
  .detail-inner-29a6 {
    font-size: 2rem;
  }
  
  .tag-black-370e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .west-902d,
  .alert_8978 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pressed_23e5,
  .container_orange_83b9,
  .label-steel-a240,
  .pattern-in-3262,
  .fresh-787d,
  .smooth_2ce9,
  .box_stale_1eef,
  .main_9db5 {
    grid-template-columns: 1fr;
  }
  
  .hovered-d21d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .motion_35d6 {
    padding: var(--space-lg) 0;
  }
  
  .picture_glass_2da9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .picture_glass_2da9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .element_a251 {
    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;
  }
  
  .hovered-d21d {
    grid-template-columns: 1fr;
  }
  
  .notice-dark-8b27,
  .disabled_rough_07bf,
  .aside-up-bb4e {
    flex-direction: column;
    width: 100%;
  }
  
  .active-6685,
  .prev-3ab0,
  .notice-dark-8b27 .element_a251,
  .disabled_rough_07bf .element_a251 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail-inner-29a6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-black-370e {
    font-size: 1.375rem;
  }
  
  .section-out-3c37 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .motion-78e6,
  .progress_8203,
  .highlight-dark-8db0,
  .icon-green-9117,
  .content_large_30cd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dropdown-518c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gas-280c {
    gap: var(--space-xs);
  }
  
  .tertiary-9491 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .list_1292 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .article_action_7044 {
    width: 150px;
    height: 150px;
  }
  
  .advanced_e122 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .solid-c6dc,
  .narrow_a685,
  .notice-dark-8b27,
  .popup_0890,
  .gold_cc55,
  .module-pro-1801,
  .disabled_brown_8f14 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .motion_35d6 {
    page-break-inside: avoid;
  }
}

/* css-noise: 47b2 */
.shadow-element-a4 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
