* {
  -webkit-tap-highlight-color: transparent;
}

body {
  background: radial-gradient(circle at top, #0a3d62 0%, #0c2461 40%, #0a0a23 100%);
  color: #fff;
  min-height: 100vh;
}

section, .container, .row {
  pointer-events: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0.75rem auto 0;
  opacity: 0.85;
}

.game-card {
  background: #0f1f3d;
  border: 1px solid rgba(64, 224, 208, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(64, 224, 208, 0.25);
  border-color: rgba(64, 224, 208, 0.4);
}

.game-card:focus,
.game-card:active,
.game-card *:focus,
.game-card *:active {
  outline: none;
}

.btn-demo:focus {
  outline: none;
  box-shadow: none;
}

.game-card img {
  object-fit: contain;
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: #0a1628;
}

.game-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.game-card .card-title {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #fff;
}

.game-card .card-text {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.5;
  color: #fff;
}

.btn-demo {
  font-weight: 600;
  border-radius: 999px;
}

footer {
  text-align: center;
  padding: 2rem 1rem 1rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

