/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('');
  background-size: cover; /* Adjusts the size of the background image to cover the entire body */
  background-position: center; /* Centers the background image */

}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #555;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #0056b3;
}

nav {
  position: absolute;
  top: 10px; /* Adjust the top position as needed */
  left: 10px; /* Adjust the left position as needed */
}

nav img {
  width: 150px; /* Adjust the width of the logo as needed */
}



/* About Us Section */
.about-us {
  padding: 60px 0;
}

.about-us p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 60px 0;
}

.how-it-works ol {
  list-style-type: decimal;
}

.how-it-works ol li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Features Section */
.features {
  padding: 60px 0;
}

.features ul {
  list-style-type: disc;
}

.features ul li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

/* Footer Section */
.footer {
  background-color: #000000;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

.footer p {
  font-size: 1rem;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  text-decoration: underline;
}

/* Games List Section */
.games-list {
  padding: 60px 0;
}

.games-list h2 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.game-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.game-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 5px;
}
