/* ============================
   游戏结束样式
   ============================ */
#screen-gameover {
  background: rgba(0,0,0,0.82);
  flex-direction: column;
  z-index: 25;
}

.gameover-panel {
  text-align: center;
  background: rgba(12,18,40,0.8);
  border: 1px solid rgba(255,23,68,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  backdrop-filter: blur(8px);
}

.gameover-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--hp);
  text-shadow: 0 0 20px rgba(255,23,68,0.3);
  margin-bottom: 20px;
}

.gameover-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.go-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.go-label {
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 4px;
}
.go-value {
  font-size: 22px;
  font-weight: 700;
}
.go-gold { color: var(--gold); }

#screen-gameover .menu-btn {
  margin-top: 4px;
}
