/* 显卡文章页 —— RTX 5060 深度解析（深色主题适配） */

/* 标签胶囊 */
.md-typeset .mg-gpu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}
.md-typeset .mg-gpu-tags span {
  display: inline-block;
  padding: 0.22em 0.75em;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #334155;
  white-space: nowrap;
}

/* 核心价格高亮框 */
.md-typeset .mg-gpu-price {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  margin: 1.25rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.md-typeset .mg-gpu-price__label {
  font-size: 0.82rem;
  opacity: 0.9;
}
.md-typeset .mg-gpu-price__value {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0.2rem 0;
}
.md-typeset .mg-gpu-price__meta {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* 图表容器（深色，与主题一致） */
.md-typeset .mg-gpu-chart {
  background: #0f172a;
  border-radius: 0.875rem;
  padding: 1.2rem 0.875rem 0.875rem;
  margin: 1.25rem 0;
  color: #ffffff;
}
.md-typeset .mg-gpu-chart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f8fafc;
}
.md-typeset .mg-gpu-chart__unit {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 400;
}

/* 统计卡片 */
.md-typeset .mg-gpu-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1rem 0 1.25rem;
}
@media (max-width: 600px) {
  .md-typeset .mg-gpu-stats {
    grid-template-columns: 1fr;
  }
}
.md-typeset .mg-gpu-stat {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  box-sizing: border-box;
}
.md-typeset .mg-gpu-stat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.375rem;
}
.md-typeset .mg-gpu-stat__badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  background: #334155;
  padding: 0.12rem 0.5rem;
  border-radius: 0.25rem;
}
.md-typeset .mg-gpu-stat__trend {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ef4444;
}
.md-typeset .mg-gpu-stat__value {
  font-size: 1.375rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}
.md-typeset .mg-gpu-stat__detail {
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.4;
}
.md-typeset .mg-gpu-stat__vol-high {
  color: #f59e0b;
  font-weight: 600;
}
.md-typeset .mg-gpu-stat__vol-steady {
  color: #10b981;
  font-weight: 600;
}
