body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #f8f9fa, #dfe6e9);
  margin: 0;
  padding: 0;
  color: #2d3436;
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(90deg, #0984e3, #00cec9);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

header h1 {
  font-size: 3rem;
  margin: 0;
  animation: fadeSlideIn 2s ease-out forwards;
  opacity: 0;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 3s ease forwards 1.5s;
}

@keyframes fadeSlideIn {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Navigation */
nav {
  background-color: #74b9ff;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.8;
}

/* Content */
.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

h2 {
  color: #0984e3;
  border-left: 5px solid #00cec9;
  padding-left: 10px;
  font-size: 1.8rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Buttons & Images */
.play-button, .community-button {
  display: inline-block;
  background-color: #00b894;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover, .community-button:hover {
  background-color: #019874;
  transform: translateY(-2px);
}

.game-image {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.game-image:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  background-color: #2d3436;
  color: white;
  text-align: center;
  padding: 25px 0;
  margin-top: 70px;
  font-size: 0.95rem;
}
