:root {
  --bg: #050018;
  --fg: #f0f8ff;
  --accent: #00f5ff;
  --pink: #ff00c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #09002a, #010008);
  color: var(--fg);
  font-family: system-ui, sans-serif;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(5,0,24,.85);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

nav a {
  margin-left: 1rem;
  color: var(--fg);
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-actions {
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  margin: .5rem;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  color: #000;
}

.ghost {
  border: 1px solid var(--accent);
  color: var(--fg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center,
      rgba(120,0,255,.25),
      rgba(5,0,24,.95)
    );
}

/* Capa energética */
.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle,
      rgba(0,245,255,.15),
      transparent 60%
    );
  animation: pulse 18s ease-in-out infinite;
}

/* Ruido tipo flyer */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Asegura que el contenido quede arriba */
.hero > * {
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.2) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
  content-visibility: auto;
}

.subtitle {
  text-align: center;
  opacity: .7;
}

/* LINEUP */
.artists-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}

.artist-card {
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.artist-image {
  aspect-ratio: 3 / 4;
  background: radial-gradient(circle at top, rgba(0,245,255,.2), #050018);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artist-card h3 {
  margin: 1rem 0 .25rem;
}

/* INFO */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(255,255,255,.05);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
}

.info-card i {
  font-size: 2rem;
  color: var(--accent);
}

/* CONTACT */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2rem;
}

.socials a {
  color: var(--fg);
}

.mail {
  text-align: center;
  margin-top: 2rem;
  opacity: .7;
}

/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  opacity: .5;
}
/* SIMPLE ARTIST */
.artist-card.simple {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-weight: bold;
  letter-spacing: .05em;
  cursor: default;
}

/* MODAL */
.artist-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.artist-modal.active {
  display: flex;
}

.modal-content {
  background: radial-gradient(circle at top, #0a002e, #02000a);
  border-radius: 20px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 12px;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.flyer-header {
  position: sticky;
  top: 0;
  background:
    radial-gradient(circle at center,
      rgba(0,245,255,.12),
      rgba(5,0,24,.92)
    );
  z-index: 20;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-icon {
  width: 42px;
  filter: drop-shadow(0 0 10px #00f5ff);
}

.logo-text {
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .85rem;
}

.energy-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #00f5ff,
    #ff00c8,
    transparent
  );
  background-size: 200%;
  animation: flow 6s linear infinite;
}

@keyframes flow {
  from { background-position: 0%; }
  to { background-position: 200%; }
}

@media (max-width: 768px) {

  body {
    background:
      radial-gradient(circle at top, #12004a, #020008);
  }

  .hero {
    min-height: 100vh;
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1.1;
    letter-spacing: .18em;
    text-shadow:
      0 0 15px #00f5ff,
      0 0 40px #ff00c8;
  }

  .hero p {
    font-size: 1.1rem;
    opacity: .9;
  }

  .hero-actions {
    display: none;
  }

  nav {
    display: none; /* mobile flyer puro */
  }
}

.status-card {
  background:
    radial-gradient(circle at top,
      rgba(0,245,255,.15),
      rgba(5,0,24,.92)
    );
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
}

.status-badge {
  display: inline-block;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: .12em;
}

.status-badge.active {
  background: linear-gradient(135deg, #00f5ff, #ff00c8);
  color: #000;
}

.status-date {
  margin: 1.5rem 0 .5rem;
  font-size: 1.5rem;
}

.status-link {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  margin-top: 1.5rem;
  color: #00f5ff;
  text-decoration: none;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ticket-card {
  background:
    radial-gradient(circle at top,
      rgba(0,245,255,.12),
      rgba(5,0,24,.9)
    );
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.ticket-badge {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.ticket-badge.active {
  background: linear-gradient(135deg, #00f5ff, #ff00c8);
  color: #000;
}

.ticket-badge.soldout {
  background: #444;
  color: #aaa;
}

.ticket-price {
  font-size: 2rem;
  margin: 1rem 0;
}

.ticket-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .8rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00f5ff, #ff00c8);
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
