/* Navbar */
    .navbar-custom {
      background-color: #fbbf24; /* yellow */
    }
    .navbar-brand {
      background: #111827;
      color: #fff !important;
      padding: 10px 20px;
      font-weight: bold;
    }

    .btn{
        color: black;
        background-color: white;
    }

    .btn:hover{
        color: white;
        background-color: black;
    }

    /* Hero Section */
    /* Hero */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
    }
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: left; /* text left aligned like screenshot */
      z-index: 2;
      max-width: 600px;
    }
    .hero-content h1 {
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 15px;
    }
    .hero-content p {
      font-size: 1rem;
      color: #ddd;
      margin-bottom: 25px;
    }

    /* Play button */
    .watch-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      font-size: 1rem;
    }
    .play-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
      font-size: 20px;
    }

    .game-card {
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .game-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .features {
      background: #f8f9fa;
      padding: 50px 0;
    }
    .feature-box {
      text-align: center;
      padding: 20px;
    }
    .feature-box i {
      font-size: 40px;
      color: #4a6cf7;
      margin-bottom: 15px;
    }
