/* Game overrides: dark theme and layout */

/* Dark body background for escape-room feel */
body {
  background-color: #1a1a2e;
  color: #eaeaea;
  min-height: 100vh;
}

/* Game nav stays dark; ensure contrast */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

/* Main content area */
.game-container,
.game .container {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

/* Location images: max height so layout is consistent */
.game .img-fluid.rounded,
.game .img-fluid.rounded-circle {
  max-height: 320px;
  object-fit: cover;
}

/* Buttons stand out on dark background */
.game .btn-primary {
  margin: 0.25rem;
}

/* Centered content blocks */
.text-center p {
  margin-bottom: 0.5rem;
}
