/* QVX 卡片样式 - 仅暗色模式 */
.hero-stat.hero-weather {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.hero-stat.hero-weather .weather-label {
  color: #00E5FF;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-stat.hero-weather .weather-location {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero-stat.hero-weather .weather-pill {
  background: rgba(0, 255, 135, 0.1);
  color: #00FF87;
  border: 1px solid rgba(0, 255, 135, 0.2);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}
.hero-stat.hero-weather .weather-temp {
  font-family: monospace;
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-stat.hero-weather .bias-tag {
  font-size: 14px;
  font-weight: 800;
  background: rgba(0, 255, 135, 0.05);
  border: 1px solid rgba(0, 255, 135, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  color: #00FF87;
}
.hero-stat.hero-weather .weather-summary {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-align: justify;
  margin-top: 8px;
}
.hero-stat.hero-weather .weather-visual {
  color: #00E5FF;
  opacity: 0.8;
  font-family: monospace;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  padding-top: 4px;
  text-align: right;
}
.hero-stat.hero-weather .weather-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.hero-stat.hero-weather .weather-metric {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 12px;
}
.hero-stat.hero-weather .weather-metric span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}
.hero-stat.hero-weather .weather-metric strong {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
.hero-stat.hero-weather .weather-metric-danger {
  background: rgba(255, 59, 48, 0.05);
  border: 1px solid rgba(255, 59, 48, 0.15);
}
.hero-stat.hero-weather .weather-metric-danger span {
  color: rgba(255, 59, 48, 0.7);
  font-weight: 600;
}
.hero-stat.hero-weather .weather-metric-danger strong {
  color: #FF3B30;
}
.hero-stat.hero-weather .weather-meta {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin: 12px 0 0 0;
  text-align: right;
  font-family: monospace;
}