* {
    margin: 0;
    padding: 0;
}
    body {
      background-color: #000;
      color: white;
      font-family: sans-serif;
    }
    h1 {
      color: #fff;
      text-align: center;
      font-weight: 700;
      font-size: 35px !important;
    }
    p{
      color: #fff;
      font-size: 14px !important;
    }
    li{
      color: #fff;
      font-size: 14px !important;
      list-style: none;
    }
    .top-navbar {
      background-color: #121212;
      color: white;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      width: 100%;
    }

    .top-left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .logo img {
      height: 40px;
    }

    .menu-icons {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .menu-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      font-size: 13px;
      text-decoration: none;
    }

    .menu-item i {
      font-size: 20px;
    }

    .menu-item:hover {
      color: #fff;
    }

    .login-signup {
      display: flex;
      gap: 0;
    }

    .login-signup .btn {
      border-radius: 0;
      font-weight: bold;
    }

    .btn-login {
      background-color: black;
      border: 2px solid #ffc107;
      color: white;
      font-size: 12px;
      padding: 7px;
      font-weight: 700;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
    }

    .btn-signup {
      background-color: #ffc107;
      border: 2px solid #ffc107;
      color: black;
      font-size: 12px;
      font-weight: 700;
      padding: 7px;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .btn-login:hover,
    .btn-signup:hover {
      opacity: 0.85;
    }

    .menu-item.cricket span {
      color: #0f0;
      font-size: 10px;
      position: absolute;
      top: -5px;
      right: -10px;
    }

    .menu-item.cricket {
      position: relative;
    }
        .layout {
      display: flex;
      height: 100vh;
      overflow: hidden;
    }
    .sidebar {
      background-color: #1a1a1a;
      padding: 10px;
      width: 250px;
      border-radius: 0 0px 12px 0;
      box-shadow: 2px 0 10px inset red;
      height: 100vh;
      overflow-y: auto;
      position: fixed;
      margin-top: 60px;
      top: 0;
      left: 0;
      z-index: 1000;
      color: #fff;
    }
    .sidebar ul {
      list-style: none;
      padding: 0;
    }
    .sidebar ul li {
      padding: 10px 0;
      font-size: 15px;
      border-bottom: 1px solid #333;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
    .sidebar ul li:hover {
      color: yellow;
    }
    .main-content {
      margin-left: 250px;
      padding: 20px;
      flex-grow: 1;
      overflow-y: auto;
      margin-top: 50px;
      background-color: #000;
    }
    .category-bar {
      background-color: #000;
      padding: 15px;
      display: flex;
      gap: 10px;
      overflow-x: auto;
    }
    .category-bar button {
      background-color: #ffd500;
      border: none;
      padding: 10px 18px;
      font-weight: bold;
      border-radius: 10px;
      white-space: nowrap;
    }
    .category-bar button:hover {
      background-color: #ffcc00;
    }
    .game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .game-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    color: #fff;
  }

  /* Color classes */
  .purple { background-color: purple; }
  .blue { background-color: #007bff; }
  .orange { background-color: orange; }
  .pink { background-color: deeppink; }
  .sky { background-color: skyblue; }
  .light-purple { background-color: mediumpurple; }

  /* Mobile: horizontal scroll */
  @media (max-width: 767.98px) {
    .game-tags {
      overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
    }

    .game-tags::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
  }

    .going{
        margin-top: 20px;
    }
    .going img{
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .fan {
        box-shadow: 2px 0 10px inset gold;
        border: 1px solid #fff;
        color: #fff;
        border-radius: 10px;
        font-size: 25px;
    }

    .play {
        background-color: #1D1D1D;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
        gap: 80px;
    }
    .play img {
        border-radius: 20px;
        margin-left: 30px;
    }
    
    .view {
        color: #fff;
        padding: 10px 20px;
        background-color: transparent;
        border: none;
        display: flex;            
        justify-content: flex-end;
    }
    .view i{
        margin-top: 5px;
        margin-left: 5px;
    }
    h3 {
        color: #fff;
    }

  .swiper-slide img {
    height: 200px;
    object-fit: contain;
    width: 100%;
  }
  .tutorial-btn {
    background-color: #e0a800; /* Yellow shade */
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .tutorial-btn span {
    font-weight: bold;
    font-size: 16px;
  }

  .tutorial-btn:hover {
    background-color: #f1c40f;
  }
  footer a:hover {
    text-decoration: underline;
    color: #ffc107;
  }
.which {
  background-color: #131313;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
   /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 
  .custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* backdrop-filter: blur(5px); */
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content Box */
.custom-modal .modal-content {
  background-color: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: popup 0.3s ease-out;
}

/* Close Button */
.custom-modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* Animation */
@keyframes popup {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
     @media only screen and (max-width: 476px){
        .sidebar{
            display: none;
        }
            .main-content {
            margin-left: 0px;
        }
        .menu-icons{
            display: none;
        }
        h3 {
          font-size: 20px !important;
        }
     }
