/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: black;
  color: #fff;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #1a1a1a;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #fff);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
}

nav a.signup {
  background-color: #ff5722;
  color: white;
}

.hero {
  padding: 60px 20px;
  text-align: left;
  background: url(img_land/spinzo.jpg); 
  background-repeat: no-repeat;
background-size: cover;
background-position: center;
  color: #0f0;
}

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

.hero span {
  color: #fff59d;
}

.hero button {
  padding: 12px 24px;
  background-color: #0f0;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.upcoming {
  text-align: center;
  padding: 40px 20px;
  background-color: black;
}

.upcoming h1 span {
  color: #0f0;
}

.featured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  justify-content: center;
}

.image-box {
  flex: 1 1 300px;
  max-width: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 2px solid #0f0;
}

.content {
  flex: 1 1 300px;
  max-width: 500px;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.content button {
  padding: 10px 20px;
  background-color: #0f0;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.trending {
  padding: 40px 20px;
  background-color: black;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.8rem;
}

.section-header button {
  padding: 10px 20px;
  background-color: #0f0;
  font-size: larger;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

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

.game-card {
  background-color: #242424;
  border: 1px solid #0f0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
}

.blog {
  padding: 40px 20px;
}

.blog h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.blog-post {
  border: 1px solid #0f0;
  padding: 15px;
  border-radius: 6px;
  background-color: black;
}

.blog-post img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.contact {
  padding: 40px 20px;
  background-color: black;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
  
}

.contact input,
.contact textarea {
  padding: 10px;
  font-size: 1rem;
  border: 3px solid #0f0;
  border-radius: 4px;
  width: 100%;
}

.contact button {
  padding: 12px;
  background-color: #0f0;
  color: white;
  border: 1px solid #0f0;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  padding: 30px 20px;
  background-color: #1a1a1a;
  color: white;
}

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

footer h3,
footer h4 {
  margin-bottom: 10px;
}

.social-icons {
  font-size: 1.5rem;
  display: flex;
  gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    flex-direction: column;
    gap: 10px;
  }
  .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px; /* space between checkbox and text */
  font-size: 14px;
  margin: 10px 0;
}


  .content button,
  .hero button,
  .section-header button {
    width: 100%;
  }

  .featured {
    flex-direction: column;
  }
}
