
    .top-header {
      background-color: #0d1117;
      padding: 10px 20px;
    }

    .search-bar {
      background-color: #21262d;
      border: none;
      color: #c9d1d9;
      min-width: 250px;
    }

    .search-bar::placeholder {
      color: #888;
    }

    .btn-login {
      background-color: transparent;
      border: 1px solid #f1c40f;
      color: white;
      border-radius: 5px;
      font-weight: 500;
    }

    .btn-login:hover {
      background-color: #f1c40f;
      color: #000;
    }

    .btn-register {
      background-color: #f1c40f;
      color: #000;
      padding: 5px 15px;
      border-radius: 5px;
      font-weight: 600;
    }

    .btn-register:hover {
      background-color: #e0b500;
      color: #000;
    }

    .header-icons i,
    .header-icons svg {
      color: white;
      cursor: pointer;
      font-size: 1rem;
    }

    .gap-custom {
      gap: 1.2rem;
    }

  .login-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding-top: 100px;
      padding-bottom: 40px;
    }

    .login-container {
      background-color: #1f2937;
      padding: 2rem;
      border-radius: 10px;
      width: 540px;
      box-shadow: 0 0 0px rgba(0,0,0,0.3);
      border-bottom: 2px solid #ffffff;
    }

    .login-container h2 {
      text-align: center;
      margin-bottom: 2rem;
    }

    .toggle-buttons {
      display: flex;
      border: 2px solid #fff;
      border-radius: 30px;
      overflow: hidden;
      margin-bottom: 1.5rem;
    }

    .toggle-buttons button {
      flex: 1;
      padding: 0.5rem 1rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
    }

    .toggle-buttons button.active {
      background-color: #fff;
      color: #000;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
    }

    .form-control {
      width: 100%;
      padding: 0.8rem;
      border-radius: 6px;
      border: none;
      background-color: #2d3547;
      color: #fff;
    }

    .form-control::placeholder {
      color: #aaa;
    }

    .form-group.password {
      position: relative;
    }

    .form-group.password i {
      position: absolute;
      right: 15px;
      top: 45px;
      color: #aaa;
      cursor: pointer;
    }

    .login-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
    }

    .login-actions a {
      color: #84bfff;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .btn-login {
      background-color: #fff;
      color: #000;

      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .footer-text {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.9rem;
    }

    .footer-text a {
      color: #fff;
      font-weight: bold;
      text-decoration: none;
    }

    .country-code-input {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background-color: #2d3547;
      padding: 0.8rem;
      border-radius: 6px;
      color: #fff;
    }

    .country-code-input select,
    .country-code-input input {
      background: none;
      border: none;
      color: #fff;
      outline: none;
    }

    .country-code-input img {
      width: 20px;
    }



          .icon-sm {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 0px;
    fill: currentColor;
  }
  body {
    margin: 0;
    padding-top:65px; /* space for fixed header */
    background-color: #111827;
    color: white;
    font-family: 'Segoe UI', sans-serif;
  }

  .top-header {
    background-color: #111827;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
    border-bottom: 1px solid #222;
  }

    .tab-scroll-wrapper {
    overflow: hidden;
    position: relative;
  }

  .tab-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    cursor: grab;
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .tab-scroll::-webkit-scrollbar {
    display: none;  /* Chrome, Safari */
  }

  .tab-scroll a {
    display: inline-block;
    padding: 4px 20px;
    background-color: #0d111d;
    color: #ed64b2;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #ef64b4;
    transition: 0.3s;
    user-select: none;
  }

  .tab-scroll a:hover {
    background-color: #e33499;
    color: white;
  }
.text-warning {
    --bs-text-opacity: 1;
    color: rgb(215 44 137) !important;
}
  @media (max-width: 768px) {
    .tab-scroll a {
      font-size: 13px;
      padding: 6px 16px;
    }
  }


  .search-bar {
    background-color: #101522;
    border: none;
    color: white;
  }

  .search-bar::placeholder {
    color: #999;
  }

  .btn-login {
    background-color: #0d111d;
    color: #ed64b2;
    border: 1px solid #ed64b2;
  }

  .btn-register {
    background-color: #ed64b2;
    color: #0d111d;
    border: none;
  }


  .carousel-item img {
  border-radius: 10px;
  object-fit: cover;
  height: auto;
  max-height: 400px;
}

.card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1f2937;
  transition: 0.3s ease;
}

.card-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, #ed64b2, #ed64b2, #ed64b2);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
}

.card-hover:hover::before {
  opacity: 1;
}

.card-hover img {
  width: 100%;
  display: block;
  transition: 0.3s ease;
      height: 180px; /* FIXED height */
    object-fit: cover;
}

.card-hover:hover img {
  filter: blur(2px);
  transform: scale(1.05);
}

.card-hover .hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 3;
}

.card-hover:hover .hover-overlay {
  opacity: 1;
}

.card-hover .hover-overlay .play-icon {
  background-color: white;
  color: black;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-hover .card-title {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
  position: relative;
  z-index: 2;
}
  .form-container {
      background-color: #1f2937;
      padding: 30px;
      border-radius: 10px;
      max-width: 850px;
      margin: 20px auto;
      box-shadow: 0 0 0px rgba(0, 0, 0, 0.5);
          border-bottom: 2px solid;
    }
    .form-control {
     background-color: #384252;
    border: 1px solid #384252;
    color: #ffffff;
    }
    .form-control:focus {
      border-color: #58a6ff;
      box-shadow: none;
    }
    .input-group-text {
     background-color: #384252;
    border: 1px solid #384252;
    color: #fff;
    }
    .form-check-input {
      background-color: #21262d;
      border: 1px solid #30363d;
    }
    .form-check-label a {
      color: #58a6ff;
      font-weight: bold;
    }
    .form-check-label a:hover {
      text-decoration: underline;
    }
    .btn-send {
      background-color: #30363d;
      border: none;
      color: #8b949e;
    }
    .btn-send:disabled {
      background-color: #f3f4f6;
      color: #666;
    }
    .eye-icon {
      cursor: pointer;
      position: absolute;
      top: 72%;
      right: 15px;
      transform: translateY(-50%);
      color: #888;
    }
.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgb(237 100 178) !important;
}

@media (max-width: 768px) {
  body {
    padding-top: 60px; 
    background-color: #0f172a; /* optional darker shade */
  }

  .login-container {
        padding: 25px 20px;
  }
.form-container {
    background-color: #1f2937;
    padding: 30px;
    border-radius: 10px;
    max-width: 96%;
    margin: 20px auto;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.5);
}
  .toggle-buttons {
    flex-direction: row;
    gap: 5px;
  }
.login-container {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 10px;
    width: 96%;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
}
  .form-group input,
  .form-group select {
    font-size: 14px;
  }
}

 @media (max-width: 767px) {
    .scroll-row {
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 0rem;
    }

    .scroll-row::-webkit-scrollbar {
      display: none;
    }

    .match-card {
      min-width: 75% !important;
      flex: 0 0 auto;
    }
    .col-12 {
    flex: 0 0 auto;
    width: 75%;
}
    
  }

