* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 59, 59, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(88, 101, 242, 0.16), transparent 35%),
    #080810;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

.games-page {
  padding: 60px 7% 90px;
}

.games-hero {
  margin-bottom: 38px;
}

.games-tagline,
.game-tag {
  color: #ff3b3b;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.games-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 18px;
}

.games-hero p {
  color: #b8b8c8;
  line-height: 1.7;
  max-width: 760px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  background: rgba(17, 17, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 20px;
  transition: 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.game-card.locked {
  opacity: 0.65;
}

.game-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 59, 59, 0.12);
  border: 1px solid rgba(255, 59, 59, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.game-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.game-card p {
  color: #b8b8c8;
  line-height: 1.6;
}

.play-btn {
  width: fit-content;
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  background: #5865f2;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.play-btn:hover {
  background: #6d78f5;
  transform: translateY(-2px);
}

.play-btn.disabled {
  background: rgba(255, 255, 255, 0.12);
  color: #888899;
  cursor: not-allowed;
}

.play-btn.disabled:hover {
  transform: none;
}

@media (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .games-page {
    padding: 40px 5% 70px;
  }

  .play-btn {
    width: 100%;
    text-align: center;
  }
}