.sports-buttons {
  background: linear-gradient(
    to right,
    #031532 0%,
    #071d48 29%,
    #0a2558 68%,
    #031532 100%
  ) !important;
}

.sport-box:hover .sport-name {
  color: #4d8fd4;
  transform: translateY(0);
  text-shadow: 0 2px 10px rgba(3, 21, 50, 0.4);
}

.tabs-nav__btn.active {
  background: linear-gradient(
    to right,
    #031532 0%,
    #071d48 26%,
    #4d8fd4 68%,
    #0a3878 100%
  );
  border-radius: 10px;
}

.payment-subtitle {
  background: linear-gradient(
    to right,
    #1a7fe8 0%,
    #2e9cf5 29%,
    #7ec8ff 68%,
    #1a7fe8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.3rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.payment-button {
  padding: 12px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(
    to right,
    #031532 0%,
    #071d48 29%,
    #0a2558 68%,
    #031532 100%
  ) !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  cursor: pointer !important;
  box-shadow: 0 5px 0 #010d1f, 0 6px 15px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(0) !important;
  transition: all 0.2s ease-in-out !important;
  position: relative !important;
  z-index: 1 !important;
}

.register-button {
  padding: 12px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(
    to right,
    #031532 0%,
    #071d48 29%,
    #0a2558 68%,
    #031532 100%
  ) !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  cursor: pointer !important;
  box-shadow: 0 5px 0 #010d1f, 0 6px 15px rgba(7, 29, 72, 0.45) !important;
  transform: translateY(0) !important;
  transition: all 0.2s ease-in-out !important;
  position: relative !important;
  z-index: 1 !important;
}

.social-button {
  background: #071d48;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 40px;
  width: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(3, 21, 50, 0.6), inset 0 4px 3px #ffffff60;
  background: linear-gradient(
    to right,
    #031532 0%,
    #071d48 29%,
    #0a2558 68%,
    #031532 100%
  );
}

.header__search-btn {
  right: -25px !important;
}

.game-box.sports {
  background: linear-gradient(
    145deg,
    #031532 0%,
    #041a3c 29%,
    #051e45 68%,
    #0a2558 100%
  );
  animation: gentleFloat 6s ease-in-out infinite;
  animation-delay: 1.5s;
  box-shadow: 0 10px 30px rgba(1, 13, 31, 0.5),
    inset 0 2px 10px rgba(77, 143, 212, 0.08);
}

.brand-container {
  background: linear-gradient(to right, #010d1f 0%, #071d48 47%, #010d1f 100%);
  padding: 1rem 0;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 -4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-right: 10px;
  margin-left: 10px;
}

.payment-container {
  background: url(https://cdn.efsinomedia.com/img/payment-background-4.png)
    no-repeat center center;
  background-size: cover;
  padding: 2rem;
  border-radius: 20px;
  margin: 3.5rem 0;
  margin-bottom: 1.23rem;
  width: 100%;
  max-width: 1200px;
  margin-right: 10px;
  margin-left: 10px;
  padding-left: 1rem;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px;
  padding-right: 10px;
  padding-left: 10px;
  border: 2px solid rgba(99, 148, 210, 0.25);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  justify-content: flex-start;
  transition: all 0.4s ease;
  animation: featureFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-icon-bg::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a7fe8 0%, #031532 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    #031532 0%,
    #071d48 29%,
    #0a2558 68%,
    #031532 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

@keyframes featureFloat {
  0% {
    transform: translateY(0) translateX(0);
    box-shadow: 0 5px 15px rgba(1, 13, 31, 0.15);
  }

  25% {
    transform: translateY(-5px) translateX(2px);
    box-shadow: 0 10px 20px rgba(1, 13, 31, 0.25);
  }

  75% {
    transform: translateY(3px) translateX(-2px);
    box-shadow: 0 7px 17px rgba(1, 13, 31, 0.20);
  }

  100% {
    transform: translateY(0) translateX(0);
    box-shadow: 0 5px 15px rgba(1, 13, 31, 0.15);
  }
}

.tabs-nav {
  background: linear-gradient(to right, #010d1f 0%, #041a3c 47%, #010d1f 100%);
}

.xtable tr:nth-child(even),
.xtable tr:nth-child(odd) {
  background-color: #071d48 !important;
}

.feature-item:hover {
  border-color: rgba(99, 148, 210, 0.6);
}