body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #1e2b22, #2f3e34);
  color: #e0e0dc;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3a4f3d;
  padding: 1rem 2rem;
  border-radius: 12px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #cce6cc;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #e0e0dc;
  font-weight: bold;
}

nav a:hover {
  color: #a8d5ba;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: url('nature_banner.jpg') center/cover no-repeat;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  background: #a8d5ba;
  color: #1e2b22;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.cta:hover {
  background: #cce6cc;
}

.games h2, .studio h2, .contact h2 {
  color: #cce6cc;
  margin-bottom: 1rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.game-card {
  background: #2f3e34;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
}

.game-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

footer {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem 1rem;
  background: #3a4f3d;
  border-radius: 10px;
}

.footer-links a {
  margin: 0 0.5rem;
  color: #cce6cc;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #a8d5ba;
}