
/* CSS */
.game-banner {
  background-image: url('images/game-app.jpg'); /* replace with actual image path */
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.game-banner-content {
  color: white;
  padding: 20px;
}

.game-banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.game-banner button {
  background-color: #ff004f;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

/* Optional: Remove background if any box was applied */
.game-banner-content {
  background: none !important;
}

  @media (max-width: 768px) {
    
    .game-banner{
      height: 30vh;
    }
.game-banner-content h1 {
  font-size: 1.5rem;
}
    

    .game-btn {
      padding: 10px 20px;
    }
  }

.game-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .game-section h2 {
      font-size: 32px;
      color: blue;
      margin-bottom: 20px;
    }

    .game-section p {
      font-size: 18px;
      color: #555;
      margin-bottom: 25px;
    }

    .game-section ul {
      margin-left: 20px;
      color: #001f3f;
      font-size: 18px;
    }

  