/* ===============================
   CYBERPUNK NEON GLOBAL STYLE
   =============================== */

body {
  font-family: "Orbitron", Arial, sans-serif;
  background: linear-gradient(135deg, #0e0e0e, #111 60%, #1a1a1a);
  color: #f5f5f5;
  margin: 0;
  animation: bgPulse 10s infinite alternate;
}

@keyframes bgPulse {
  0% {
    background: #0e0e0e;
  }
  100% {
    background: #1a1a1a;
  }
}

/* ===============================
   RESET LINKS (para evitar azul #0000EE)
   =============================== */
a {
  color: #28ac0b; /* gris suave */
  text-decoration: none; /* quita subrayado */
  transition: color 0.3s, text-shadow 0.3s;
}
a:hover {
  color: #ff0066; /* rosa neon */
  text-shadow: 0 0 8px #ff0066, 0 0 15px #ff00cc;
}

/* ===============================
   HEADER
   =============================== */
header {
  background: #111;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}
header h1 {
  color: #0ff;
  font-size: 2.5em;
  margin: 0;
  text-shadow: 0 0 5px #0ff, 0 0 15px #0ff, 0 0 25px #ff00cc;
  animation: neonGlow 3s infinite alternate;
}
@keyframes neonGlow {
  from {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 15px #ff00cc;
  }
  to {
    text-shadow: 0 0 20px #ff00cc, 0 0 30px #0ff, 0 0 40px #ff0066;
  }
}

/* ===============================
   NAVIGATION
   =============================== */
/* Barra de navegación */
nav {
  background: #111;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
}
nav ul li {
  position: relative;
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 10px;
  color: #0ff;
  text-shadow: 0 0 8px #0ff, 0 0 12px #0ff;
  transition: 0.3s;
  display: block;
}
nav ul li a:hover {
  color: #ff0066;
  text-shadow: 0 0 8px #ff0066, 0 0 20px #ff0066;
}
/* Dropdown (cascada) */
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  z-index: 999;
}
nav ul li:hover ul {
  display: block;
}
nav ul li ul li {
  margin: 0;
}
nav ul li ul li a {
  display: block;
  padding: 8px 15px;
  color: #ccc; /* gris suave */
}
nav ul li ul li a:hover {
  background: #222;
  border-radius: 8px;
  color: #0ff;
  box-shadow: 0 0 10px #0ff inset, 0 0 12px #0ff;
}

/* ===============================
   HERO BANNER
   =============================== */
.hero {
  background: url("../images/techno-bg.jpg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.8);
}
.hero h2 {
  font-size: 3em;
  color: #0ff;
  text-shadow: 0 0 15px #0ff, 0 0 25px #ff00cc;
}
.hero p {
  font-size: 1.3em;
  color: #ff66cc;
  text-shadow: 0 0 12px #ff66cc;
}

/* ===============================
   MAIN CONTENT
   =============================== */
main {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* ===============================
   POSTS
   =============================== */
.post {
  background: #1a1a1a;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  border: 1px solid #0ff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
  transition: 0.3s;
  text-align: left;
}
.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #0ff, 0 0 40px #ff0066;
}
.post h2 {
  margin: 0 0 10px;
  color: #ff0066;
  text-shadow: 0 0 6px #ff0066, 0 0 15px #ff00cc;
}
.post p {
  color: #ccc;
  line-height: 1.6em;
}

/* ===============================
   MUSIC PLAYER CARDS
   =============================== */
.track-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid #0ff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
  transition: 0.3s;
}
.track-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #0ff, 0 0 35px #ff0066;
}
.track-card h3 {
  color: #0ff;
  font-size: 1.2em;
  margin: 0 0 10px;
  text-shadow: 0 0 6px #0ff, 0 0 12px #ff00cc;
}
.track-card audio {
  width: 100%;
  border-radius: 8px;
  outline: none;
  filter: drop-shadow(0 0 5px #0ff);
}

/* Play count badge */
.play-count-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85em;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff0066, #ff00cc);
  border-radius: 8px;
  padding: 5px 12px;
  box-shadow: 0 0 10px rgba(255, 0, 102, 0.9);
  animation: pulseBadge 1.5s infinite;
}
@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 5px #ff0066;
  }
  50% {
    box-shadow: 0 0 20px #ff00cc;
  }
  100% {
    box-shadow: 0 0 5px #ff0066;
  }
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  padding: 25px;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  color: #1ecc18;
  border-top: 2px solid #0ff;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
  letter-spacing: 1.5px;
  box-shadow: 0 -4px 15px rgba(0, 255, 255, 0.3);
  position: relative;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1em;
  }
  main {
    max-width: 95%;
    padding: 20px;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 10px 0;
  }
}
