.hockey-game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hockey-rink-wrapper {
  position: relative;
  display: block;
  width: 1100px;
  max-width: 100%;
  height: 550px;
  overflow: hidden;
}

.hockey-game-container canvas {
  display: block;
  width: 1100px;
  max-width: 100%;
  height: 550px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #e0f4ff 0%, #b8e0f0 50%, #a8d8e8 100%);
  touch-action: none;
}

.hockey-emoji-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hockey-sprite {
  position: absolute;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}

.hockey-puck {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.hockey-paddle {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.hockey-paddle-right {
  transform: translate(-50%, -50%) scaleX(-1);
}

.game-hud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.game-hud-pause-btn {
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 18px;
}

.game-hud-board {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(8, 15, 30, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
}

.hud-scores {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
}

.hud-scores .player-score {
  color: #7dd3fc;
  letter-spacing: 0.02em;
}

.hud-scores .ai-score {
  color: #fca5a5;
  letter-spacing: 0.02em;
}

.hud-vs {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hud-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.hud-hits {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
}

.hud-timer {
  color: #a3e635;
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  min-width: 3rem;
  text-align: center;
  text-shadow: 0 0 8px rgba(163, 230, 53, 0.5);
}

.hockey-rink-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.hockey-game-over {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.hockey-trophy {
  font-size: 4rem;
  display: block;
  animation: trophyPop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes trophyPop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.hockey-game-over .btn {
  margin-top: 0.5rem;
}

.hockey-defend-hint {
  margin-bottom: 0.5rem;
}
