/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #1a1a1d;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #00ffcc;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li {
  list-style: none;
}

nav ul li a:hover {
  color: #00ffcc;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('hero-bg.jpg') no-repeat center center/cover;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 15px 30px;
  background-color: #00ffcc;
  color: #000;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #00cc99;
}

/* Features Section */
.features {
  padding: 50px 0;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.feature-item {
  margin: 20px 0;
}

.feature-item h3 {
  font-size: 24px;
  color: #00ffcc;
}

/* Games Section */
.games {
  background-color: #2c2f33;
  padding: 50px 0;
}

.games h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.game-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.game-item {
  margin: 20px;
  text-align: center;
}

/* Adjusted image size */
.game-item img {
  width: 200px; /* Increase image size */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 10px;
}

/* Download Section */
.download {
  padding: 50px 0;
  text-align: center;
}

.download .cta-btn {
  background-color: #ff3366;
}

.download .cta-btn:hover {
  background-color: #cc0055;
}

/* Footer */
.footer {
  padding: 20px 0;
  text-align: center;
  background-color: #000;
}
