* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores principales - Esquema neón morado/cyan */
  --neon-purple: #a448ff;
  --neon-pink: #ff1493;
  --neon-cyan: #00ffff;
  --neon-blue: #0f0fff;

  /* Fondos oscuros */
  --bg-dark: #0a0a0a;
  --bg-dark-purple: #120319;
  --bg-card: rgba(18, 3, 25, 0.8);

  /* Texto */
  --text-primary: #ffffff;
  --text-secondary: #d9d9d9;
  --text-muted: #9ca3af;

  /* Gradientes neón */
  --gradient-neon: linear-gradient(
    135deg,
    #a448ff 0%,
    #ff1493 50%,
    #00ffff 100%
  );
  --gradient-purple: linear-gradient(135deg, #a448ff 0%, #8b00ff 100%);
  --gradient-cyan: linear-gradient(135deg, #00ffff 0%, #0f0fff 100%);

  /* Sombras neón */
  --shadow-purple: 0 0 20px rgba(164, 72, 255, 0.5);
  --shadow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
  --shadow-pink: 0 0 20px rgba(255, 20, 147, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(164, 72, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 255, 255, 0.1) 0%,
      transparent 50%
    );
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVBAR MODERNO CON GLASSMORPHISM
   ============================================ */

.header {
  background: rgba(18, 3, 25, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.75rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(164, 72, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}

/* Logo con efecto neón */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(164, 72, 255, 0.6));
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 20px rgba(164, 72, 255, 1));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.neon-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(164, 72, 255, 0.5);
  animation: neonPulse 2s ease-in-out infinite;
}

/* Links de navegación */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Botón de descarga en navbar */
.btn-download-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-purple);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-purple);
  transition: all 0.3s ease;
  border: 1px solid rgba(164, 72, 255, 0.3);
}

.btn-download-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(164, 72, 255, 0.8);
  background: var(--gradient-neon);
}

/* Ocultar el botón dentro de nav-links en desktop */
.nav-links .btn-download-nav {
  display: none;
}

/* Menú hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--neon-purple);
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(164, 72, 255, 0.5);
}

.menu-toggle:hover span {
  box-shadow: 0 0 15px rgba(164, 72, 255, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: radial-gradient(
    ellipse at center,
    rgba(164, 72, 255, 0.15) 0%,
    transparent 70%
  );
}

/* Líneas neón de fondo */
.neon-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.neon-line {
  position: absolute;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0.5;
  animation: neonMove 8s linear infinite;
  box-shadow:
    0 0 10px rgba(164, 72, 255, 0.8),
    0 0 20px rgba(0, 255, 255, 0.6);
}

.neon-line-1 {
  width: 60%;
  top: 20%;
  left: -60%;
  animation-delay: 0s;
}

.neon-line-2 {
  width: 70%;
  top: 50%;
  left: -70%;
  animation-delay: 3s;
}

.neon-line-3 {
  width: 80%;
  top: 75%;
  left: -80%;
  animation-delay: 6s;
}

@keyframes neonMove {
  0% {
    transform: translateX(-100%) scaleX(1);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(200%) scaleX(1);
    opacity: 0;
  }
}

/* Fichas de casino flotantes */
.casino-chips {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.chip {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 10s infinite ease-in-out;
}

.chip-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.chip-2 {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}
.chip-3 {
  top: 40%;
  left: 5%;
  animation-delay: 4s;
}
.chip-4 {
  top: 60%;
  right: 10%;
  animation-delay: 6s;
}
.chip-5 {
  bottom: 20%;
  left: 20%;
  animation-delay: 8s;
}
.chip-6 {
  bottom: 30%;
  right: 25%;
  animation-delay: 10s;
}
.chip-7 {
  top: 70%;
  left: 15%;
  animation-delay: 12s;
}
.chip-8 {
  top: 30%;
  right: 5%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
}

/* Estrellas */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  font-size: 1.5rem;
  animation: twinkle 2s infinite;
}

.star-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}
.star-2 {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}
.star-3 {
  top: 50%;
  left: 10%;
  animation-delay: 2s;
}
.star-4 {
  bottom: 30%;
  right: 15%;
  animation-delay: 1.5s;
}
.star-5 {
  top: 70%;
  left: 30%;
  animation-delay: 0.5s;
}
.star-6 {
  top: 40%;
  right: 30%;
  animation-delay: 2.5s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Contenido del hero */
.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-word {
  display: inline-block;
  margin: 0 0.3rem;
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
}

.neon-glow {
  color: var(--neon-purple);
  text-shadow:
    0 0 10px rgba(164, 72, 255, 0.8),
    0 0 20px rgba(164, 72, 255, 0.5),
    0 0 40px rgba(164, 72, 255, 0.3);
}

.neon-glow-cyan {
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px rgba(0, 255, 255, 0.8),
    0 0 20px rgba(0, 255, 255, 0.5),
    0 0 40px rgba(0, 255, 255, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mini slot machine */
.mini-slot {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(164, 72, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 400px;
  box-shadow: var(--shadow-purple);
}

.slot-display {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.slot-reel {
  width: 80px;
  height: 80px;
  background: rgba(10, 10, 10, 0.8);
  border: 3px solid var(--neon-cyan);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: all 0.1s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.slot-message {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neon-cyan);
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Botones del hero */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: var(--gradient-neon);
  color: white;
  box-shadow: 0 0 30px rgba(164, 72, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(164, 72, 255, 0.8);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(164, 72, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgba(164, 72, 255, 1);
  }
}

.btn-secondary {
  background: rgba(0, 255, 255, 0.1);
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.btn-icon {
  font-size: 1.3rem;
}

/* ============================================
   CARACTERÍSTICAS
   ============================================ */

.features {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(164, 72, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-purple);
  box-shadow: 0 10px 40px rgba(164, 72, 255, 0.3);
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(164, 72, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(164, 72, 255, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(164, 72, 255, 0.5));
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   JUEGOS POPULARES
   ============================================ */

.games {
  padding: 6rem 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 255, 0.05) 0%,
    transparent 70%
  );
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.game-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.game-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.btn-play {
  padding: 1rem 2rem;
  background: var(--gradient-cyan);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.game-info {
  padding: 1.5rem;
}

.game-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.game-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(164, 72, 255, 0.2);
}

.game-players,
.game-rating {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   PROMOCIONES
   ============================================ */

.promotions {
  padding: 6rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(164, 72, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(164, 72, 255, 0.3);
}

.promo-card.featured {
  border: 2px solid var(--neon-purple);
  box-shadow: 0 0 30px rgba(164, 72, 255, 0.3);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-neon);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-amount {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.promo-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn-promo {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-purple);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-purple);
}

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(164, 72, 255, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark-purple);
  border-top: 1px solid rgba(164, 72, 255, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(164, 72, 255, 0.5));
}

.footer-logo h3 {
  font-size: 1.5rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neon-purple);
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  padding-left: 5px;
}

.footer-contact a,
.footer-contact li {
  color: #ffffff; /* Cambiar a blanco puro en lugar de gris */
}

.footer-description {
  color: #e0e0e0; /* Color más claro para mejor contraste */
}
.footer-bottom {
  border-top: 1px solid rgba(164, 72, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.warning {
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.copyright {
  /* CORRECCIÓN: Mejorar contraste (antes era #9ca3af sobre fondo oscuro, ratio insuficiente) */
  color: #d1d5db;
  font-size: 0.9rem;
}

/* CORRECCIÓN: Links del footer con contraste WCAG AA */
.footer-link {
  color: #c4b5fd;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #e9d5ff;
  text-shadow: 0 0 10px rgba(196, 181, 253, 0.5);
}

/* ============================================
   CONFETTI ANIMATION
   ============================================ */

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .logo-img {
    height: 55px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(18, 3, 25, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 0;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 1px solid rgba(164, 72, 255, 0.3);
    box-shadow: inset 0 0 100px rgba(164, 72, 255, 0.1);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(164, 72, 255, 0.1);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(164, 72, 255, 0.1);
    padding-left: 2.5rem;
    border-left: 4px solid var(--neon-purple);
  }

  .nav-links a::before {
    display: none;
  }

  /* Botón de descarga en menú móvil */
  .btn-download-nav {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 80%;
    max-width: 300px;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }

  .nav-links.active .btn-download-nav {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .logo-img {
    height: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .features-grid,
  .games-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    padding: 0 1rem;
  }

  .logo-img {
    height: 45px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .slot-reel {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .promo-amount {
    font-size: 3rem;
  }
}
