.game-page {
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
  min-height: 85vh;
}

.game-header {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.game-cover {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
}

.game-info-block {
  flex: 1;
}

.game-title {
  margin: 0;
  font-size: 2.5rem;
  color: #ff00ff;
  margin-bottom: 10px;
}

.game-price {
  font-size: 1.5rem;
  color: #00ffcc;
  margin-bottom: 20px;
}

.game-retro-button {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  padding: 10px 15px;
  cursor: pointer;
  box-shadow:
    0 0 8px #00ffff,
    0 0 15px #ff00ff;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.game-retro-button:hover {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #fff;
  box-shadow:
    0 0 15px #ff00ff,
    0 0 25px #00ffff,
    0 0 35px #ff00ff;
}

.game-meta ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.game-meta ul li {
  margin-bottom: 8px;
  color: #b0f7ff;
}

.game-description {
  margin-top: 30px;
}

.game-description h2 {
  color: #ff00ff;
  margin-bottom: 15px;
}

.game-screenshots {
  margin-top: 40px;
}

.game-screenshots h2 {
  margin-bottom: 20px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.screenshots-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 2px solid #00ffff;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffff;
}

@media(max-width: 600px) {
  .game-header {
    justify-content: center;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .game-title {
    font-size: 1.8rem;
  }
}