/* Game Over Screen */
.game-over-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.game-over-modal {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0f2e 100%);
  border: 2px solid #4a9eff;
  padding: 60px 80px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 0 60px rgba(74, 158, 255, 0.4), inset 0 0 30px rgba(74, 158, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-over-title {
  font-size: 56px;
  font-weight: 300;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

.game-over-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  font-size: 18px;
  color: #9db4ff;
  min-width: 320px;
}

.stat-label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #64c8ff;
  min-width: 80px;
  text-align: right;
}

.game-over-button {
  padding: 14px 48px;
  font-size: 16px;
  color: #64c8ff;
  border: 2px solid #4a9eff;
  background: rgba(74, 158, 255, 0.1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  font-family: 'Space Mono', monospace;
  font-weight: 600;
  align-self: center;
}

.game-over-button:hover {
  border-color: #64c8ff;
  background: rgba(100, 200, 255, 0.2);
  box-shadow: 0 0 25px rgba(100, 200, 255, 0.3);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .game-over-modal {
    padding: 40px 30px;
    gap: 30px;
  }

  .game-over-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .stat-row {
    gap: 20px;
    font-size: 16px;
    min-width: auto;
    flex-direction: column;
    align-items: center;
  }

  .stat-value {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .game-over-modal {
    padding: 30px 20px;
    gap: 25px;
  }

  .game-over-title {
    font-size: 32px;
  }

  .stat-row {
    font-size: 14px;
  }

  .game-over-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}