/* ================= GLOBAL FONT ================= */

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Los títulos grandes se quedan como están */
h1, h2, h3 {
  font-family: inherit; /* No los cambiamos */
}


/* Layout básico */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #12001f 0, #050008 45%, #000 100%);
  color: #f5f5ff;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.header {
  text-align: center;
  margin-bottom: 32px;
}

.header h1 {
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.header p {
  opacity: 0.8; 
  font-size: 0.9rem;
}

/* GRID de artistas */
.artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 640px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.artist-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(10, 0, 25, 0.9);
  border: 1px solid rgba(120, 80, 255, 0.4);
  box-shadow: 0 0 18px rgba(120, 80, 255, 0.35);
}

.artist-name {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.3;
}

.artist-flag {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* SVG base */
svg.totem, svg.portal {
  width: 26px;
  height: 26px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-width: 2.5px;
  filter: url(#glow);
  transition: transform 0.35s ease, filter 0.35s ease;
}

@media (max-width: 768px) {
  svg.totem, svg.portal {
    width: 20px;
    height: 20px;
  }
}

/* Animaciones */
.pulse { animation: pulseAnim 2.4s ease-in-out infinite; }
@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.rotate { animation: rotateAnim 4s linear infinite; }
@keyframes rotateAnim {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

.flash { animation: flashAnim 1.2s ease-in-out infinite; }
@keyframes flashAnim {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Colores de glow */
.glow-aqua   { stroke: #00FFF0; }
.glow-cyan   { stroke: #00E5FF; }
.glow-magenta{ stroke: #FF00FF; }
.glow-gold   { stroke: #FFD86B; }
.glow-green  { stroke: #00FF66; }
.glow-purple { stroke: #7D5FFF; }
.glow-white  { stroke: #FFFFFF; }
/* ================= HERO SECTION (VIDEO) ================= */

.hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 40px;
  background: #cbb6b6;
  box-shadow: 0 0 40px rgba(151, 138, 192, 0.35);
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) blur(1px);
  transform: scale(1.05);
}

/* CAPA OSCURA */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

/* CONTENIDO */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 18px #a855ff;
  animation: heroFade 2s ease forwards;
}

.hero-subtitle {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.85;
  animation: heroFade 2.6s ease forwards;
}

.hero-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  border-radius: 8px;
  background: linear-gradient(90deg, #a855ff, #00eaff);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 0 18px rgba(168, 85, 255, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(168, 85, 255, 0.9);
}

/* Animación suave */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
}


/* ================= HEADLINERS ================= */

.headliners {
  margin: 60px 0 40px;
  text-align: center;
}

.headliners-title {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #a855ff;
}

.headliners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 768px) {
  .headliners-grid {
    grid-template-columns: 1fr;
  }
}

.headliner-card {
  background: rgba(10, 0, 25, 0.85);
  border: 1px solid rgba(168, 85, 255, 0.4);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(168, 85, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.headliner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(168, 85, 255, 0.6);
}

.headliner-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.headliner-info {
  padding: 14px 16px 18px;
}

.headliner-info h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.headliner-info p {
  margin: 6px 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}


/* ================= FEATURES ================= */

.features {
  margin: 60px 0 40px;
  text-align: center;
}

.features-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #00eaff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(10, 0, 25, 0.85);
  border: 1px solid rgba(0, 234, 255, 0.4);
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(0, 234, 255, 0.6);
}

.feature-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.5);
}

.feature-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.feature-card p {
  margin: 6px 0 0;
  font-size: 0.8rem;
  opacity: 0.8;
}


/* ================= FEATURED ARTISTS ================= */

.featured-artists {
  margin: 60px 0 40px;
  text-align: center;
}

.featured-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #ff00ff;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.featured-card {
  background: rgba(10, 0, 25, 0.85);
  border: 1px solid rgba(255, 0, 255, 0.4);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255, 0, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(255, 0, 255, 0.6);
}

.featured-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.featured-info {
  padding: 12px 14px 16px;
}

.featured-info h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.featured-info p {
  margin: 6px 0 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ================= SUPPORT ARTISTS ================= */

.support-artists {
  margin: 60px 0 40px;
  text-align: center;
}

.support-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #7d5fff;
}

.support-list {
  max-width: 80%;
  margin: 0 auto;   
  text-align: center;
  font-size: 60px;
}

.support-list p {
  margin: 6px 0;
  font-size: medium;  
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
}

.support-list strong {
  color: #fff;
  text-shadow: 0 0 8px rgba(125, 95, 255, 0.6);
}

/* ================= SUPPORT ARTISTS — ANIMACIÓN + FRACTALES ================= */

.support-artists {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Animación de entrada */
.support-list p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.support-list p:nth-child(1) { animation-delay: 0.05s; }
.support-list p:nth-child(2) { animation-delay: 0.10s; }
.support-list p:nth-child(3) { animation-delay: 0.15s; }
.support-list p:nth-child(4) { animation-delay: 0.20s; }
.support-list p:nth-child(5) { animation-delay: 0.25s; }
.support-list p:nth-child(6) { animation-delay: 0.30s; }
.support-list p:nth-child(7) { animation-delay: 0.35s; }
.support-list p:nth-child(8) { animation-delay: 0.40s; }
.support-list p:nth-child(9) { animation-delay: 0.45s; }
.support-list p:nth-child(10) { animation-delay: 0.50s; }
/* Puedes seguir si agregas más artistas */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================= FRACTALES DECORATIVOS ================= */

.support-fractal {
  width: 120px;
  margin: 0 auto;
  opacity: 0.35;
  animation: fractalFloat 6s ease-in-out infinite;
}

.top-fractal {
  margin-bottom: 20px;
}

.bottom-fractal {
  margin-top: 20px;
  transform: rotate(180deg);
}

.fractal-shape {
  fill: none;
  stroke: #7d5fff;
  stroke-width: 3px;
  filter: drop-shadow(0 0 8px #7d5fff);
}

/* Animación suave tipo “respiración” */
@keyframes fractalFloat {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-8px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}


/* ================= SUPPORT ARTISTS — ANIMACIÓN + FRACTALES ================= */

.support-artists {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Animación de entrada */
.support-list p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.support-list p:nth-child(1) { animation-delay: 0.05s; }
.support-list p:nth-child(2) { animation-delay: 0.10s; }
.support-list p:nth-child(3) { animation-delay: 0.15s; }
.support-list p:nth-child(4) { animation-delay: 0.20s; }
.support-list p:nth-child(5) { animation-delay: 0.25s; }
.support-list p:nth-child(6) { animation-delay: 0.30s; }
.support-list p:nth-child(7) { animation-delay: 0.35s; }
.support-list p:nth-child(8) { animation-delay: 0.40s; }
.support-list p:nth-child(9) { animation-delay: 0.45s; }
.support-list p:nth-child(10) { animation-delay: 0.50s; }
/* Puedes seguir si agregas más artistas */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================= FRACTALES DECORATIVOS ================= */

.support-fractal {
  width: 120px;
  margin: 0 auto;
  opacity: 0.35;
  animation: fractalFloat 6s ease-in-out infinite;
}

.top-fractal {
  margin-bottom: 20px;
}

.bottom-fractal {
  margin-top: 20px;
  transform: rotate(180deg);
}

.fractal-shape {
  fill: none;
  stroke: #7d5fff;
  stroke-width: 3px;
  filter: drop-shadow(0 0 8px #7d5fff);
}

/* Animación suave tipo “respiración” */
@keyframes fractalFloat {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-8px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

/* ================= TICKETS ================= */

.tickets {
  margin: 60px 0 40px;
  text-align: center;
}

.tickets-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #00ffcc;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

.ticket-card {
  background: rgba(10, 0, 25, 0.85);
  border: 1px solid rgba(0, 255, 204, 0.4);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 0 22px rgba(0, 255, 204, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.ticket-card:nth-child(1) { animation-delay: 0.1s; }
.ticket-card:nth-child(2) { animation-delay: 0.2s; }
.ticket-card:nth-child(3) { animation-delay: 0.3s; }

.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(0, 255, 204, 0.6);
}

.ticket-name {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.ticket-price {
  margin: 10px 0 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 12px rgba(0, 255, 204, 0.6);
}

.ticket-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
  font-size: 0.85rem;
  opacity: 0.9;
}

.ticket-benefits li {
  margin: 6px 0;
}

.ticket-soldout-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #1500ff, #cf0b1f);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(0, 255, 204, 0.9);
}

/* Animación */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ================= VENUE ================= */

.venue {
  margin: 60px 0 40px;
  text-align: center;
}

.venue-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #00eaff;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
}

.venue-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0, 234, 255, 0.4);
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.35);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(6px);
  animation: venueReveal 1s ease forwards;
}

.venue-card:nth-child(1) { animation-delay: 0.1s; }
.venue-card:nth-child(2) { animation-delay: 0.25s; }
.venue-card:nth-child(3) { animation-delay: 0.4s; }
.venue-card:nth-child(4) { animation-delay: 0.55s; }

.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.venue-card:hover .venue-img {
  transform: scale(1.08);
}

/* Animación distinta: slide + blur fade */
@keyframes venueReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}


/* ================= HOW TO GET THERE ================= */

.howto {
  margin: 60px 0 40px;
  text-align: center;
}

.howto-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #00ffa6;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .howto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .howto-grid {
    grid-template-columns: 1fr;
  }
}

.howto-card {
  background: rgba(10, 0, 25, 0.85);
  border: 1px solid rgba(0, 255, 166, 0.4);
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 0 22px rgba(0, 255, 166, 0.35);
  text-align: left;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(6px);
  animation: howtoReveal 1s ease forwards;
}

.howto-card:nth-child(1) { animation-delay: 0.1s; }
.howto-card:nth-child(2) { animation-delay: 0.25s; }
.howto-card:nth-child(3) { animation-delay: 0.4s; }
.howto-card:nth-child(4) { animation-delay: 0.55s; }

.howto-card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #00ffa6;
  text-shadow: 0 0 8px rgba(0, 255, 166, 0.6);
  text-transform: uppercase;
}

.howto-card ul {
  padding-left: 18px;
  margin: 10px 0;
}

.howto-card li {
  margin: 6px 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.howto-card p {
  margin: 6px 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.howto-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00ffa6, #00aaff);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 0 18px rgba(0, 255, 166, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.howto-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(0, 255, 166, 0.9);
}

/* Animación distinta: slide + blur fade */
@keyframes howtoReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}


/* ================= FAQ ================= */

.faq {
  margin: 60px 0 40px;
  text-align: center;
}

.faq-title {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 0 12px #a855ff;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(10, 0, 25, 0.85);
  border: 1px solid rgba(168, 85, 255, 0.4);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(168, 85, 255, 0.35);
  transition: box-shadow 0.3s ease;
}

.faq-item.open {
  box-shadow: 0 0 28px rgba(168, 85, 255, 0.6);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 16px 16px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a0f2e, #2a1748);
  box-shadow:
    0 0 12px rgba(168, 85, 255, 0.6),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Textura futurista */
.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Línea de luz que se mueve */
.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.hero-btn:hover::after {
  left: 120%;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(168, 85, 255, 0.9),
    inset 0 0 22px rgba(255, 255, 255, 0.1);
}


.audio-player {
  display: flex;
  align-items: center;
  gap: 10px;

}

#progressContainer {
  width: 150px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
}

#progressBar {
  height: 100%;
  width: 0%;
  background: #a855ff;
}


.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; /* un poco más alto para el movimiento */
  background-image: url("Flyer/mystikal.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.parallax-content {
  position: relative;
  z-index: 2;
}


#totemGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  padding: 40px 0;
}

.totem-card {
  background: rgba(20, 10, 40, 0.55);
  border: 1px solid rgba(168, 85, 255, 0.25);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 18px rgba(168, 85, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.totem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(168, 85, 255, 0.55);
}

.totem-icon svg {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}

.totem-info h3 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.totem-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.country {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}

.mv-footer {
  background: #05070D;
  border-top: 1px solid rgba(0, 245, 255, 0.08);
  padding: 40px 0;
  margin-top: 80px;
}

.mv-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-family: Inter, sans-serif;
}

.mv-footer-logo span {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.mv-footer-nav {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.mv-footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.25s ease;
}

.mv-footer-nav a:hover {
  opacity: 1;
}

.mv-footer-social {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.mv-footer-social a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.25s ease;
}

.mv-footer-social a:hover {
  opacity: 1;
}

.mv-footer-legal {
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.5;
}

html, body {
  margin: 0;
  padding: 0;
}

.hero-psyloop {
  position: relative;
  width: 100vw;
  height: 100vh; /* ocupa toda la ventana */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-psyloop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.4);
}

.hero-psyloop-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 18px rgba(168, 85, 255, 0.8);
}

/* Animaciones */
@keyframes exit-up {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-60px); }
}

@keyframes exit-left {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-60px); }
}

@keyframes exit-down {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60px); }
}

/* Cuando se activa la salida */
.hero-psyloop.exit h1 {
  animation: exit-up 0.8s ease forwards;
}

.hero-psyloop.exit h2 {
  animation: exit-left 0.8s ease forwards;
  animation-delay: 0.1s;
}

.hero-psyloop.exit p {
  animation: exit-down 0.8s ease forwards;
  animation-delay: 0.2s;
}
