* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #111;
  color: #fff;
}

/* ── Banner ── */

#banner {
  position: relative;
  height: 720px;
  overflow: hidden;
}

#banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
}

#banner-title {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  white-space: nowrap;
}

#banner-title p {
  font-family: 'Jua', serif;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
}

#banner-title h1 {
  font-family: 'Jua', serif;
  font-size: 5.25rem;
  color: #fff;
  text-shadow: 3px 3px 0 #000;
}

@media (max-width: 768px) {
  #banner-title {
    white-space: normal;
    width: 90%;
  }

  #banner-title p {
    font-size: 1.5rem;
  }

  #banner-title h1 {
    font-size: 4.5rem;
  }

  .game-section {
    padding: 32px 24px;
  }

  .game-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-play {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .game-cover {
    width: 140px;
  }
}

/* ── Sections jeux ── */

.game-section {
  padding: 48px 64px;
}

.game-content {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.game-cover {
  width: 200px;
  height: auto;
  flex-shrink: 0;
  image-rendering: pixelated;
}

.game-info h2 {
  font-family: 'Jua', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.game-about {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.game-about p {
  margin: 0;
}

.btn-play {
  background-color: #27acf9;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-family: 'Jua', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: transform 0.15s ease;
}

.btn-play:hover {
  transform: scale(1.08);
}

/* ── Footer ── */

#footer {
  background: #111;
  padding: 32px 24px;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}

#footer a {
    color: #888;
}
#footer a:hover {
    color: white;
}
