/* Reset and Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  text-align: center;
}

/* Header Image */
.header img {
  width: 100%;
  height: auto;
  display: block;
}

/* Game Title and Description */
.intro {
  padding: 40px 20px;
}

.intro h1 {
  font-size: 3em;
  margin-bottom: 0.3em;
}

.intro p {
  font-size: 1.2em;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Play Store Button */
.playstore {
  margin: 30px 0;
}

.playstore img {
  height: 60px;
  transition: transform 0.3s;
}

.playstore img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 20px;
  font-size: 0.9em;
  color: #888;
  background-color: #1a1a1a;
}
