body {
  margin: 0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #333;
}

header.game-header {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

.game-logo {
  height: 70px;
  width: auto;
  margin-right: 25px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.game-title {
  font-size: 2.4rem;
  margin: 0;
  font-weight: bold;
  background: linear-gradient(90deg, #ffffff, #dddddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.game-title:hover {
  transform: scale(1.03);
}

main.game-page {
  flex-grow: 1;
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.download-section {
  text-align: center;
  margin-bottom: 40px;
}

.download-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.platform-section {
  margin-bottom: 20px;
}

.platform-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.store-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-link img {
  height: 60px;
  transition: transform 0.2s ease;
}

.store-link img:hover {
  transform: scale(1.05);
}

.description-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 40px 0 20px;
  text-align: center;
}

.game-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: #444;
}

footer {
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
}

footer a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
