body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #54B848, #a8e063);
  color: #1f2d1f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-page {
  width: 90%;
  max-width: 900px;
  text-align: center;
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  border: 6px solid #f9d44a;
}

.logo-placeholder {
  width: 240px;
  height: 130px;
  margin: 0 auto 25px;
  border: 4px dashed #54B848;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #54B848;
  font-size: 20px;
  font-weight: bold;
  background: #f2fff0;
}

.logo {
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 auto 25px;
}


h1 {
  margin: 0 0 15px;
  font-size: 44px;
  color: #54B848;
}

.welcome-text {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 19px;
  line-height: 1.6;
  color: #405040;
}

.game-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.game-button {
  display: inline-block;
  min-width: 200px;
  padding: 18px 26px;
  background: #54B848;
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-size: 20px;
  font-weight: bold;
  border: 3px solid #2f8f2f;
  box-shadow: 0 6px 0 #2f8f2f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.game-button:hover {
  background: #46a83d;
  transform: translateY(-4px);
  box-shadow: 0 10px 0 #2f8f2f;
}

.game-button:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #2f8f2f;
}

@media (max-width: 600px) {
  .welcome-page {
    padding: 35px 20px;
  }

  h1 {
    font-size: 32px;
  }

  .welcome-text {
    font-size: 16px;
  }

  .game-button {
    width: 100%;
    max-width: 280px;
  }


  .logo {
    max-width: 280px;
  }

}