@font-face {
  font-family: 'Jugabet';
  src: url('./Jugabet-BlackItalic.4f99304c.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
 background: linear-gradient(160deg,
  #991e7b 0%,
  #6C27F4 20%,
  #D100D1 45%,
  #FF2DCB 70%,
  #FFA1F5 100%
);
background-size: 400% 400%;
animation: gradientMove 20s ease infinite;
  background-attachment: fixed;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 15px;
  min-height: 100dvh;
  box-sizing: border-box;
  text-align: center;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo-wrapper {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
}

.logo {
  width: 360px;
  max-width: 95vw;
}

.card {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.main-text p {
  margin: 1.5rem 1rem;
  font-size: 31px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.boton-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.popup-button {
  background: linear-gradient(113.27deg, #5428b4 15.04%, #b339e2 84.96%);
  color: white;
  font-family: 'Jugabet', 'Bebas Neue', sans-serif;
  font-size: 22px;
  padding: 18px 30px;
  border: none;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 0 18px rgba(199, 125, 255, 0.4),
              0 0 10px rgba(123, 44, 191, 0.4) inset;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1s infinite ease-in-out;
  text-align: center;
}

.popup-button img {
  width: 36px;
  height: 36px;
  filter: none;
  transition: transform 0.3s ease;
}

.popup-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(199, 125, 255, 0.8),
              0 0 18px rgba(123, 44, 191, 0.6) inset;
}

.popup-button:hover img {
  transform: rotate(10deg) scale(1.1);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}

.info-externa {
  margin-top: 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  color: #fff8dc;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.dorado-neon {
  color: #ffd700;
  font-size: 30px;
  text-shadow: 0 0 15px #ffd700, 0 0 30px #ffd700;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 6px #FFD700; }
  50% { text-shadow: 0 0 20px #FFA500; }
}

.dorado-neon {
  animation: glow 2s infinite ease-in-out;
}

@keyframes subtlePulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

body {
  animation: fadeSlideIn 0.7s ease-out;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
animation: fadeSlideIn 0.7s ease-out, subtlePulse 6s infinite ease-in-out;
}

@keyframes auraPulse {
  0%, 100% {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 50px rgba(199, 125, 255, 0.6);
  }
}

.nombre-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 4px 0 20px 0;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15) inset,
              0 0 8px rgba(255, 255, 255, 0.1);
  outline: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.nombre-input::placeholder {
  color: #f5eaff;
  opacity: 0.8;
}

.nombre-input:focus {
  background-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.metodos-pago {
  margin-top: 0px;
  text-align: center;
  color: #fff;
}

.titulo-pago {
  font-size: 28px;
  font-family: 'Bebas Neue', sans-serif;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.iconos-pago {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.iconos-pago img {
  height: 40px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
}

.iconos-pago img:hover {
  transform: scale(1.1);
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: url('./random-falling-gold-stars-png.webp') repeat;
  animation: bgMove 60s linear infinite;
  opacity: 0.05;
}

@keyframes bgMove {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

.card {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.45);
}

.popup-button {
  position: relative;
  overflow: hidden;
}

.popup-button::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.barra-juegos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 10px;
  margin: 30px 0 -10px 0;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  flex-wrap: wrap;
}

.barra-juegos img {
  height: 60px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
  cursor: pointer;
}

.barra-juegos img:hover {
  transform: scale(1.15) rotate(-2deg);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  margin: 20px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text img {
  width: 50%;
  height: auto;
}

.logo-text-fill {
  background: linear-gradient(90deg, #ffd700, #ffc400, #ffb300, #e6a800, #cc9300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% auto;
  animation: textGradientMove 5s ease-in-out infinite;
  text-shadow: 0 0 4px rgba(255, 204, 0, 0.2), 0 0 6px rgba(255, 174, 0, 0.15);
}

.logo-emoji {
  font-size: 4.5rem;
  margin-bottom: 6px;
   text-shadow: 0 0 10px rgba(255, 204, 0, 0.4), 0 0 16px rgba(255, 174, 0, 0.3);
}

.barra-juegos-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 30px 0 -10px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.scroll-content {
  display: inline-flex;
  white-space: nowrap;
  gap: 16px;
  padding: 12px 0;
  animation: scrollLeft 25s linear infinite;
}

.scroll-content img {
  height: 60px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
  transition: transform 0.3s ease;
}

.scroll-content img:hover {
  transform: scale(1.15) rotate(-2deg);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
