.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: #1a1b20 !important;
}

.platinum-button {
  background: #c0c4cc;
  background: linear-gradient(to bottom, #c0c4cc, #dbe1eb);
  color: #333;
  border: 1px solid #8a8c94;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.platinum-button:hover {
  background: linear-gradient(to bottom, #a5a8b0, #c0c4cc);
  color: #555;
}

#specialLink {
  text-decoration: none;
}

#service-card:hover #service-icon-div #service-icon {
  color: white !important;
}

#service-card:hover #service-icon-div {
  background: linear-gradient(to right, #4E73DF, #1cc88a) !important;
}

#service-card:hover {
  border-color: #4e73df;
  box-shadow: 0 0 10px rgba(78, 115, 223, 0.5);
}

#service-card {
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#launchpahHeading {
  font-size: 2rem !important;
}

@media screen and (max-width: 767px) {
  #launchpahHeading {
    font-size: 1rem !important;
  }
}

#joinButton {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid #ff0000;
  border-radius: 6px;
  background-color: #ff0000;
  transition: color 0.3s ease;
}

#joinButton:hover {
  color: #ff0000;
}

#accessButtonContainer {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

#accessButton {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  background: linear-gradient(90deg, #4e73df 0%, #1cc88a 50%, #36b9cc 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  animation: glow 2s linear infinite;
  cursor: pointer;
}

@keyframes glow {
  0%, 100% {
    border-color: #4e73df;
    box-shadow: 0 0 10px rgba(78, 115, 223, 0.5);
  }
  50% {
    border-color: #1cc88a;
    box-shadow: 0 0 20px rgba(28, 200, 138, 0.7);
  }
  75% {
    border-color: #36b9cc;
    box-shadow: 0 0 10px rgba(54, 185, 204, 0.5);
  }
}

/* For extra-small to medium devices */

@media (max-width: 991.98px) {
  .create-account-btn {
    width: 100%;
  }
}

