.diagonal-bg-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #060c1a;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.highlight {
  color: #22c55e;
  font-weight: bold;
}

.captcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0px 20px 0px;
}

.site-header .has-dropdown > .dropdown li a {
  display: flex !important;
  align-items: center !important;
  padding: 0.6rem 0.75rem !important;
  font-size: 0.85rem !important;
  color: #f1f5f9 !important;
  gap: 0.5rem;
  line-height: 1.2 !important;
  min-height: unset !important;
  height: auto !important;
}

.site-header .has-dropdown > .dropdown li a i {
  font-size: 0.85rem !important;
  width: 16px !important;
  margin-right: 6px;
  line-height: 1 !important;
  text-align: center;
}

.site-header .has-dropdown > .dropdown li a:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-radius: 0.25rem;
}

/* Dropdown base */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1c1c2b;
  border-radius: 6px;
  padding: 4px 0;
  min-width: 240px;
  display: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.has-dropdown {
  position: relative;
}

/* Mostrar dropdown al hacer hover sobre el item padre */
.has-dropdown:hover .dropdown {
  display: block;
}

/* Ítems del menú */
.has-dropdown .dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f1f5f9;
  padding: 10px 16px;
  font-size: 0.85rem;
  text-decoration: none;
  line-height: 1.2;
  height: auto;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

/* Íconos dentro del menú */
.has-dropdown .dropdown li a i {
  font-size: 0.85rem;
  width: 16px;
  margin-right: 6px;
  text-align: center;
  line-height: 1;
  transition: color 0.2s;
}

/* Hover de los links */
.has-dropdown .dropdown li a:hover {
  background-color: #2d2d45;
  color: #ffffff;
}

/* Hover de los íconos */
.has-dropdown .dropdown li a:hover i {
  color: #1abc9c;
}

/* CSS */
.crypto-button {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  font-family: sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: fit-content;
  width: 360px;
  height: 150px;
}

.crypto-label {
  background-color: #1a1a1a;
  color: white;
  font-size: 30px;
  font-weight: 600;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.crypto-logo {
  width: 62px;
  height: 62px;
  //filter: brightness(1.5) hue-rotate(30deg);
}

.crypto-icons {
  background-color: #2563eb; /* blue-600 */
  padding: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.crypto-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* convierte SVGs negros a blanco */
}

/* CSS */
.paymentwall-button {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  font-family: sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: fit-content;
  width: 360px;
  height: 150px;
}

.payment-container {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.payment-message {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.payment-message h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.payment-message ul {
  list-style: none;
  padding-left: 0;
}

.payment-message li {
  margin-top: 8px;
}

.paymentwall-embed {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  min-height: 500px;
}

@keyframes tornadoShake {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(1deg) translateY(-2px);
  }
  50% {
    transform: rotate(-1deg) translateY(1px);
  }
  75% {
    transform: rotate(1.5deg) translateY(-1px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}

@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 2s ease-in-out infinite;
}
