* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1720;
  color: #c7d5e0;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: #171d25;
  border-bottom: 1px solid #2a475e;
}

.logo {
  font-weight: 900;
  font-size: 1.2rem;
}

.nav a {
  color: #c7d5e0;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.nav a:hover {
  color: #66c0f4;
}

/* HERO */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
  background:
    radial-gradient(circle at top right, rgba(102,192,244,0.15), transparent 40%),
    #0f1720;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #66c0f4;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin: 12px 0 24px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.25rem;
  line-height: 1.6;
}

/* BUTTONS */
.button {
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  padding: 14px 22px;
  background: #66c0f4;
  color: #0f1720;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.button:hover {
  background: #417a9b;
}

.secondary {
  background: #2a475e;
  color: #c7d5e0;
}

.secondary:hover {
  background: #1f3a4d;
}

/* SECTIONS */
.section {
  padding: 80px 8%;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

/* GAME CARD */
.game-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  background: #171d25;
  border: 1px solid #2a475e;
  border-radius: 10px;
  padding: 32px;
}

.game-art {
  height: 220px;
  display: grid;
  place-items: center;
  background: #2a475e;
  border-radius: 8px;
}

.game-art span {
  font-size: 6rem;
}

.game-info h3 {
  font-size: 2.2rem;
  margin: 8px 0 12px;
}

.game-info p,
.about p,
.contact p {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 32px 8%;
  background: #171d25;
  color: #8f98a0;
}

/* MOBILE */
@media (max-width: 750px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav a {
    margin: 0 8px;
  }

  .game-card {
    grid-template-columns: 1fr;
  }
}