.text-gradient-custom {
  background: linear-gradient(to right, #4e00d8, #585796, #3ca73c, #00FF00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.landing-banner {
  position: relative;
  width: 100%;
  inset-block-start: 0;
  background-image: url("../img/header/animated-hazey.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: 0px 0px !important;
  z-index: 1;
}

.landing-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 0, 216, 0.7);
  z-index: 2;
}

.landing-banner-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 2rem;
}

@media screen and (max-width: 450px) {
  .py-xsm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

 // .landing-banner {
 //   background-position: -420px 0px !important;
 // }
}

.btn-custom {
  --si-btn-color: #000;
  --si-btn-bg: #4e00d8;
  --si-btn-border-color: #4e00d8;
  --si-btn-hover-color: #fff;
  --si-btn-hover-bg: #5b1edc;
  --si-btn-hover-border-color: #5a20d9;
  --si-btn-focus-shadow-rgb: 84, 87, 205;
  --si-btn-active-color: #fff;
  --si-btn-active-bg: #6a3ae1;
  --si-btn-active-border-color: #632bda;
  --si-btn-active-shadow: unset;
  --si-btn-disabled-color: #000;
  --si-btn-disabled-bg: #4e00d8;
  --si-btn-disabled-border-color: #4e00d8;
}

.currency-selector {
  margin-left: auto; /* Pushes the currency selector to the right */
}

.currency-selector select {
  background-color: #151822;
  color: #fff;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
}

.currency-selector select:focus {
  outline: none;
  border-color: #7f00fe;
}

.dark-mode .nav-tabs {
  --si-nav-tabs-link-active-bg: #4e00d8;
  --si-nav-tabs-link-hover-bg: #4b1eac;
  --si-nav-tabs-link-hover-color: #fff;
}

/* About us drop down buttons */
.accordion-button:not(.collapsed)::after {
    background-color: #4e00d8;
    box-shadow: var(--si-accordion-btn-icon-box-active-shadow)
}

/* ticks in boxs */
.text-primary {
    color: #4e00d8 !important;
}

/* Home page Hovering squear buttons */
.card-hover:not(.bg-transparent).border-primary:hover {
  box-shadow: 0 .5rem 1.125rem -0.5rem rgba(78, 0, 216, .9) !important;
}

/* Login Drop Down */
.dropdown-menu-dark,
.dark-mode .dropdown-menu {
  --si-dropdown-link-hover-color: #4e00d8;
}


/* Top Page Buttons */
.dark-mode .navbar {
  --si-navbar-hover-color: #4e00d8 !important;
}

/* Bottom Page Buttons */
.nav-link:hover, .nav-link:focus {
  color: #4e00d8
}

/* Home page clients reviews button */
.btn-prev:not(.bg-transparent):hover, .btn-next:not(.bg-transparent):hover {
  background-color: #4e00d8 !important;
}

.games-background {
  background-color: #151822;
  /* Light gray color */
  padding: 10px;
  /* Reduce padding to make the box smaller */
  border-radius: 8px;
  /* Optional: Rounds the corners */
  max-width: 1300px;
  /* Set a maximum width for the box */
  margin: auto;
  /* Center the box horizontally */
}

.alert-primary {
  --si-alert-color: #4e00d8;
}

/* price match bubble */
#price-match-bubble {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: linear-gradient(145deg, #5100FF, #7A3FFF);
  color: #fff;
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  line-height: 1.4;
  transition: transform 0.3s ease;
}

#price-match-bubble:hover {
  transform: scale(1.05);
}

#price-match-close {
  margin-left: auto;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 8px;
  border-radius: 50%;
  transition: background 0.3s;
}

#price-match-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 500px) {
  #price-match-bubble {
    font-size: 14px;
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
  }
}