:root {
  --bg: #030506;
  --panel: rgba(6, 15, 20, 0.76);
  --panel-strong: rgba(8, 20, 32, 0.94);
  --cyan: #00e5ff;
  --cyan-soft: rgba(0, 229, 255, 0.22);
  --white: #ffffff;
  --muted: #9ba8b4;
  --line: rgba(255, 255, 255, 0.12);
  --dark-blue: #081420;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 229, 255, 0.12), transparent 35%),
    radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.08), transparent 30%),
    var(--bg);
  color: var(--white);
  font-family: "Montserrat", system-ui, sans-serif;
}

.hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.85)),
    url("assets/backgrounds/1.png") center / cover fixed no-repeat;
}

#programacion {
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.90)),
    url("assets/backgrounds/2.png") center / cover fixed no-repeat;
}

#shows {
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.90)),
    url("assets/backgrounds/3.png") center / cover fixed no-repeat;
}

#djs {
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.92)),
    url("assets/backgrounds/4.png") center / cover fixed no-repeat;
}

#galeria {
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.92)),
    url("assets/backgrounds/5.png") center / cover fixed no-repeat;
}

#flyers {
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.92)),
    url("assets/backgrounds/6.png") center / cover fixed no-repeat;
}

#patrocinadores {
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.92)),
    url("assets/backgrounds/7.png") center / cover fixed no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  background: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.25));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 42px;
  display: grid;
  place-items: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -1px;
  color: var(--white);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 22px var(--cyan-soft), inset 0 0 18px rgba(0,229,255,.12);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Orbitron", sans-serif;
}

.brand-text strong {
  font-size: 24px;
  letter-spacing: 5px;
}

.brand-text span {
  color: var(--cyan);
  letter-spacing: 8px;
  font-size: 10px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav a {
  color: #d7e0e8;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--cyan);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 34px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--white);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 140px 42px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 430px;
  align-items: center;
  gap: 44px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,229,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 55%, black, transparent 72%);
  opacity: .38;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content,
.now-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.now-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(
      145deg,
      rgba(0, 20, 30, .85),
      rgba(8, 20, 32, .95)
    );
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 0 80px rgba(0,0,0,.55);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Orbitron", sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(58px, 10vw, 132px);
  letter-spacing: 8px;
  line-height: .9;
  text-shadow: 0 0 30px rgba(0,229,255,.22);
}

.tagline {
  margin: 24px 0 0;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #e9f8ff;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.8;
  margin: 26px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.primary {
  background: var(--cyan);
  color: #001015;
  box-shadow: 0 0 28px rgba(0,229,255,.28);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.now-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(0,0,0,.68), var(--panel-strong));
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 0 80px rgba(0,0,0,.55);
}

.live-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.live-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.cover-card {
  width: 190px;
  height: 190px;
  margin: 14px auto 26px;
  border: 1px solid var(--cyan);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(0,229,255,.15), transparent 45%),
    #05090c;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}

.cover-card span,
.cover-card strong {
  font-size: 30px;
  line-height: .95;
}

.cover-card small {
  color: var(--cyan);
  margin-top: 14px;
}

.now-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.now-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.waveform {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 22px 0;
}

.waveform i {
  width: 4px;
  height: var(--h, 20px);
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0,229,255,.52);
  border-radius: 8px;
  animation: pulse 1.2s infinite ease-in-out alternate;
}

.waveform i:nth-child(2n) { --h: 44px; animation-delay: .1s; }
.waveform i:nth-child(3n) { --h: 30px; animation-delay: .2s; }
.waveform i:nth-child(5n) { --h: 58px; animation-delay: .3s; }

@keyframes pulse {
  from { transform: scaleY(.55); opacity: .55; }
  to { transform: scaleY(1); opacity: 1; }
}

.player-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid var(--cyan);
  background: rgba(0,229,255,.08);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.stream-note {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
}

.section {
  position: relative;
  z-index: 2;
  padding: 90px 42px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.section-head {
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 3px;
}

.cards.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.program-card,
.show-list article,
.dj-card,
.cta-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(0,229,255,.04));
  border-radius: 20px;
}

.program-card {
  min-height: 230px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s ease, border-color .2s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.55);
}

.program-card span {
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.program-card h3 {
  font-size: 26px;
  margin: 12px 0;
}

.program-card p,
.section-copy {
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.show-list {
  display: grid;
  gap: 18px;
}

.show-list article {
  padding: 26px;
}

.show-list h3 {
  color: var(--cyan);
  margin-bottom: 10px;
}

.show-list p {
  color: var(--muted);
  line-height: 1.6;
}

.dj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dj-card {
  padding: 28px;
  text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00E5FF;
    box-shadow: 0 0 25px rgba(0,229,255,.30);
    transition: .3s ease;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter:
        contrast(1.1)
        brightness(.95)
        saturate(1.1);
}

.dj-card:hover .avatar {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0,229,255,.50);
}

.dj-card p {
  color: var(--muted);
}

.cta-section {
  margin: 30px 42px 90px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 80% 30%, rgba(0,229,255,.18), transparent 35%),
    var(--panel-strong);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 28px;
  padding: 60px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
}

.footer h4 {
  color: var(--white);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-brand {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    padding: 18px 42px;
    background: rgba(0,0,0,.94);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a {
    padding: 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

  .cards.four,
  .dj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .hero,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .tagline {
    letter-spacing: 4px;
    line-height: 1.8;
  }

  .cards.four,
  .dj-grid {
    grid-template-columns: 1fr;
  }

  .now-card {
    padding: 22px;
  }

  .cta-section {
    margin-left: 22px;
    margin-right: 22px;
    padding: 28px;
  }
}
.zeno-link {
    color: #00E5FF;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.zeno-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px #00E5FF;
}

.player-btn.playing {
    background: #00E5FF;
    color: #001015;
    box-shadow: 0 0 20px rgba(0,229,255,.6);
}

.now-card h2,
.now-card p {
    text-align: center;
}

.waveform {
    display: flex;
    justify-content: center;
}

.gallery-section {
  padding-top: 90px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0, 229, 255, .22);
  background: rgba(255,255,255,.04);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) contrast(1.1);
  transition: transform .4s ease, filter .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.15);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}

.flyers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,.35);
  background: rgba(0,229,255,.08);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: .3s ease;
}

.carousel-btn:hover {
  background: #00E5FF;
  color: #001015;
  box-shadow: 0 0 24px rgba(0,229,255,.45);
}

.flyers-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 24px;
}

.flyers-carousel::-webkit-scrollbar {
  height: 8px;
}

.flyers-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}

.flyers-carousel::-webkit-scrollbar-thumb {
  background: #00E5FF;
  border-radius: 999px;
}

.flyer-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0,229,255,.22);
  background: #081420;
  transition: .35s ease;
}

.flyer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 32px rgba(0,229,255,.22);
}

.flyer-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.flyer-info {
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.62)
  );
}

.flyer-info h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.flyer-info span {
  color: #00E5FF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}