
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #FFD700;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.header, .footer {
  background-color: #000000;
  color: #FFD700;
}
.header-flex, .footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo-section, .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-section img, .footer-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.logo-section span, .footer-logo span {
  font-weight: bold;
  font-size: 18px;
  color: #FFD700;
}
.whatsapp-btn {
  background-color: #FFD700;
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: radial-gradient(circle, #111 0%, #000 100%);
  color: #FFD700;
  text-align: center;
  padding: 60px 20px;
}
.cta-btn {
  background-color: #FFD700;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
}
.games-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}
.games-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #FFD700;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.game-card {
  background: #fff;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}
.game-card:hover {
  transform: translateY(-5px);
}
.game-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.game-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #000;
}
.game-card p {
  color: #555;
  margin-bottom: 15px;
}
.game-btn {
  background-color: #FFD700;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
.stats {
  background: #0c0c0c;
  color: #FFD700;
  padding: 40px 20px;
  text-align: center;
}
.stat-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.stat-item {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  width: 180px;
  border: 1px solid #FFD700;
}
.footer p {
  margin-top: 10px;
  flex: 1 1 100%;
  font-size: 14px;
  color: #FFD700;
}

.logo-section img,
.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.faq-section {
  background-color: #111;
  color: #FFD700;
  padding: 40px 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 25px;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
}

.faq-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-item h4 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .logo-section img,
  .footer-logo img {
    height: 70px; /* was 40px before — increased */
  }

  .logo-section span,
  .footer-logo span {
    font-size: 16px;
  }

  .whatsapp-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}
