:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-soft: #0b0f1a;
  --surface: #121728;
  --surface-2: #1a2035;
  --text: #f5f7ff;
  --muted: #c8d0e0;
  --primary: #a100ff;
  --accent: #00d9ff;
  --neon-pink: #ff2ed1;
  --border: rgba(161, 0, 255, 0.35);
  --gradient-main: linear-gradient(90deg, #a100ff 0%, #d200ff 30%, #ff2ed1 55%, #00d9ff 100%);
  --gradient-secondary: linear-gradient(135deg, #a100ff, #6c5cff, #00d9ff);
  --glow-purple: 0 0 6px #a100ff, 0 0 20px rgba(161, 0, 255, 0.6), 0 0 40px rgba(161, 0, 255, 0.4);
  --glow-cyan: 0 0 6px #00d9ff, 0 0 20px rgba(0, 217, 255, 0.6), 0 0 40px rgba(0, 217, 255, 0.4);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: #05070b;
  background-image: radial-gradient(circle at 50% 40%, rgba(108, 46, 255, 0.25), transparent 60%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid rgba(0, 217, 255, 0.6);
  outline-offset: 2px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: radial-gradient(circle at 20% 15%, rgba(161, 0, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.18), transparent 40%);
}

body::after {
  background-image: radial-gradient(circle at 70% 80%, rgba(255, 46, 209, 0.12), transparent 55%),
    radial-gradient(circle at 10% 70%, rgba(0, 217, 255, 0.1), transparent 45%);
  opacity: 0.4;
}

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

img {
  display: block;
  max-width: 100%;
}

.app {
  position: relative;
  min-height: 100vh;
  padding-bottom: 140px;
}

.container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 11, 0.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.header-stack {
  position: relative;
  z-index: 60;
}

.topbar::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0.7;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-float {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, calc(-40% - 20px));
  z-index: 70;
  pointer-events: none;
}

.brand-floating img {
  display: block;
  height: 228px;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(161, 0, 255, 0.6));
}

.brand-floating {
  pointer-events: auto;
}

.nav-left {
  display: flex;
  gap: 22px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  padding-left: 32px;
}

.nav-link {
  color: var(--muted);
}

.nav-link:hover {
  color: var(--accent);
  text-shadow: var(--glow-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  padding-right: 32px;
}

.nav-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}

.btn-party-mini {
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.menu-toggle {
  border-color: rgba(0, 217, 255, 0.45);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.65);
  backdrop-filter: blur(6px);
  z-index: 80;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 81;
  background: rgba(11, 15, 26, 0.98);
  border: 1px solid rgba(0, 217, 255, 0.4);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), var(--glow-cyan);
  padding: 16px;
}

.mobile-menu-inner {
  display: grid;
  gap: 16px;
}

.mobile-links {
  display: grid;
  gap: 12px;
}

.cinema-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 55;
}

body.cinema-mode .cinema-backdrop {
  opacity: 1;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

.search span {
  position: absolute;
  left: 12px;
  color: var(--muted);
  font-size: 20px;
}

.search input {
  background: rgba(11, 15, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px 10px 38px;
  color: var(--text);
  width: 100%;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 8px 25px rgba(161, 0, 255, 0.4), 0 0 15px rgba(0, 217, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--glow-purple);
}

.btn-party {
  background: linear-gradient(90deg, #ff2ed1 0%, #a100ff 45%, #00d9ff 100%);
  box-shadow: 0 12px 30px rgba(255, 46, 209, 0.45), 0 0 22px rgba(0, 217, 255, 0.4);
  animation: party-pulse 2.4s ease-in-out infinite;
}

.btn-party:hover {
  box-shadow: 0 16px 36px rgba(255, 46, 209, 0.55), 0 0 28px rgba(0, 217, 255, 0.55);
}

.btn-download {
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.95), rgba(161, 0, 255, 0.95));
  box-shadow: var(--glow-cyan);
}

.btn-download:hover {
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.45), 0 0 18px rgba(161, 0, 255, 0.35);
}

.btn-ghost {
  background: rgba(11, 15, 26, 0.65);
  color: var(--text);
  border: 1px solid rgba(161, 0, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(161, 0, 255, 0.25);
  background: rgba(18, 23, 40, 0.85);
  color: var(--text);
  cursor: pointer;
}

.icon-btn:hover {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: var(--glow-cyan);
}

.section {
  padding: 72px 0;
  scroll-margin-top: 120px;
}

.session-view .container {
  display: grid;
  gap: 24px;
  max-width: 1200px;
}

.section-alt {
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.95), rgba(5, 7, 11, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-simple {
  min-height: 60vh;
  padding-top: 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #05070b;
  background-image: radial-gradient(circle at 50% 40%, rgba(108, 46, 255, 0.25), transparent 60%);
  z-index: 0;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.2), rgba(5, 7, 11, 0.95));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  gap: 20px;
}

.hero-simple .hero-content {
  text-align: center;
  justify-items: center;
}

.hero-logo img {
  width: min(744px, 82vw);
  height: auto;
  filter: drop-shadow(0 0 45px rgba(161, 0, 255, 0.55));
}

.hero-logo {
  margin-top: -56px;
}

.hero-fiesta {
  display: flex;
  justify-content: center;
  margin: 16px 0 12px;
}

.btn-fiesta-hero {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-shadow: 0 0 18px rgba(0, 217, 255, 0.6), 0 0 28px rgba(255, 46, 209, 0.45);
  border: 1px solid rgba(255, 46, 209, 0.6);
}

.hero-reference {
  position: absolute;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  filter: blur(1px);
  text-shadow: 0 0 6px rgba(161, 0, 255, 0.25), 0 0 12px rgba(0, 217, 255, 0.2);
  animation: hero-fade 4s ease-in-out forwards;
  white-space: nowrap;
  pointer-events: none;
}

@keyframes hero-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
  }
  20% {
    opacity: var(--opacity);
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    opacity: var(--opacity);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: rgba(161, 0, 255, 0.18);
  border: 1px solid rgba(161, 0, 255, 0.5);
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--accent);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--glow-cyan);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

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

.hero-simple .hero-actions {
  justify-content: flex-start;
}

.hero-scroll {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(161, 0, 255, 0.6);
}

.hero-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, #a100ff, #00d9ff, transparent);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.section-head.simple {
  align-items: flex-end;
}

.section-head h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-head p {
  color: var(--muted);
  margin-top: 8px;
}

.top-shell {
  border: 1px solid rgba(255, 214, 98, 0.35);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(12, 16, 30, 0.95), rgba(10, 14, 24, 0.85));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 214, 98, 0.2);
  position: relative;
  overflow: hidden;
}

.top-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 214, 98, 0.7), rgba(255, 46, 209, 0.35), rgba(0, 217, 255, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.top-shell::after {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at top left, rgba(255, 214, 98, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 217, 255, 0.12), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.top-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.top-session-card {
  position: relative;
}

.top-shell .session-card {
  background: rgba(14, 18, 32, 0.9);
  border-color: rgba(255, 214, 98, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.top-shell .session-card:hover {
  border-color: rgba(255, 214, 98, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 214, 98, 0.3);
}

.top-rank-tag {
  background: linear-gradient(90deg, rgba(255, 214, 98, 0.9), rgba(255, 46, 209, 0.9));
  color: #090b12;
  box-shadow: 0 6px 18px rgba(255, 214, 98, 0.35);
}

.top-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.top-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-metrics .material-symbols-outlined {
  font-size: 16px;
  color: var(--accent);
}

.sessions-callout {
  margin: 18px 0 26px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.section-head.compact {
  margin-top: 24px;
}

.link {
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.chip-active {
  background: rgba(144, 0, 255, 0.2);
  border-color: rgba(144, 0, 255, 0.4);
  color: var(--primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.session-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(161, 0, 255, 0.2);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.session-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 46, 209, 0.6);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), var(--glow-purple);
}

.session-media {
  position: relative;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.5);
  overflow: hidden;
  transition: filter 0.3s ease;
}

.session-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(5, 7, 11, 0.65) 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.session-card:hover .session-media {
  filter: grayscale(0) saturate(1.1);
}

.session-card:hover .session-media::after {
  opacity: 0.35;
}

.session-card.is-active {
  border-color: rgba(0, 217, 255, 0.7);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--glow-cyan);
}

.session-card.is-active .play-btn {
  background: rgba(0, 217, 255, 0.18);
  border-color: rgba(0, 217, 255, 0.45);
}

.session-card h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.session-card p {
  color: var(--muted);
  font-size: 14px;
}

.session-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  gap: 12px;
}

.tag {
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
}

.tag.alt {
  background: var(--accent);
  color: #0b0c10;
}

.session-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.session-actions-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.like-cluster {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.like-btn {
  color: var(--muted);
}

.like-btn.is-liked {
  color: var(--accent);
  border-color: rgba(0, 217, 255, 0.55);
  box-shadow: var(--glow-cyan);
}

.like-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  min-width: 1ch;
  text-align: left;
  display: inline-flex;
  align-items: center;
  padding-left: 2px;
}

.share-btn {
  color: var(--muted);
}

.share-btn:hover {
  color: var(--accent);
}

.play-btn {
  background: rgba(161, 0, 255, 0.2);
  border: 1px solid rgba(161, 0, 255, 0.45);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 10px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stats > div {
  background: rgba(26, 15, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.stats h3 {
  font-size: 32px;
  color: var(--primary);
  font-style: italic;
}

.stats p {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.dj-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.dj-photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
}

.dj-photo.add {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(144, 0, 255, 0.15);
  border: 1px dashed rgba(144, 0, 255, 0.6);
  color: var(--primary);
}

.session-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.session-main {
  grid-column: span 8;
  display: grid;
  gap: 28px;
}

.session-aside {
  grid-column: span 4;
  display: grid;
  gap: 20px;
}

.session-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid rgba(161, 0, 255, 0.35);
  min-height: 320px;
}

.session-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBhrc_Z86saUyMjAHUH5WcQRIol8_VTaeVVwJwoUeH3cl-hOWfMYG-9FAtSzEv8oAEsPFuizWNxORn_pgf1KJTq-0RJHt2V8v0Atgsvw3f3EgDyLVnBecUvo-xsaELBeiegbfqqmhLJcAeGqDh5RyOsExQmnW5D_Ep6oyABJMQ1PxHbEkYzz7X03m4xAikw-tqu6hiHTk2YJdI4mlzoxT8WtYsfej1uMwuCyoP4nsOYiGx5rCjFdEAidD-gj040fRp7qfpngt6nyPpz");
  background-size: cover;
  background-position: center;
}

.session-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.2), rgba(5, 7, 11, 0.95));
}

.session-hero-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: grid;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(161, 0, 255, 0.2);
  border: 1px solid rgba(161, 0, 255, 0.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.session-hero h2 {
  font-size: 36px;
  text-transform: uppercase;
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

.session-hero p {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

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


.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.related-card {
  background: rgba(11, 15, 26, 0.75);
  border: 1px solid rgba(161, 0, 255, 0.25);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 46, 209, 0.55);
}

.related-card.is-active {
  border-color: rgba(0, 217, 255, 0.6);
}

.related-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.related-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 5, 14, 0.1), rgba(10, 5, 14, 0.6));
}

.related-card h4 {
  text-transform: uppercase;
  font-size: 14px;
}

.related-card p {
  color: var(--primary);
  font-size: 12px;
}

.panel {
  background: rgba(11, 15, 26, 0.9);
  border: 1px solid rgba(161, 0, 255, 0.35);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 16px;
}

.session-panels {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
}

.comments-panel {
  border-color: rgba(0, 217, 255, 0.3);
  background: linear-gradient(135deg, rgba(10, 14, 24, 0.95), rgba(8, 12, 22, 0.9));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 18px rgba(0, 217, 255, 0.12);
  animation: comment-glow 5s ease-in-out infinite;
}

.comments-panel:focus-within {
  animation: none;
}

.panel-body {
  display: grid;
  gap: 16px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.comments-panel .panel-body {
  max-height: 420px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(5, 7, 11, 0.45);
  border: 1px solid rgba(161, 0, 255, 0.2);
}

.panel-body::-webkit-scrollbar {
  width: 6px;
}

.panel-body::-webkit-scrollbar-thumb {
  background: rgba(161, 0, 255, 0.5);
  border-radius: 999px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.comments-panel .panel-head h4 {
  font-size: 18px;
  letter-spacing: 0.14em;
}

.badge {
  background: rgba(144, 0, 255, 0.2);
  color: var(--primary);
  border: 1px solid rgba(144, 0, 255, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.chat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.chat-row p {
  font-size: 13px;
  line-height: 1.5;
}

.chat-row span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.chat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(144, 0, 255, 0.7), rgba(0, 242, 255, 0.4));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.panel-footer {
  display: flex;
  gap: 10px;
}

.comment-input {
  flex: 1;
  background: rgba(18, 23, 40, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 13px;
  animation: comment-blink 3.6s ease-in-out infinite;
}

.comment-input:focus {
  animation: none;
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: var(--glow-cyan);
}

.send-btn {
  background: linear-gradient(135deg, rgba(161, 0, 255, 0.35), rgba(0, 217, 255, 0.3));
  border-color: rgba(0, 217, 255, 0.45);
}

.panel-hint {
  font-size: 11px;
  color: var(--muted);
  min-height: 18px;
}

.panel-hint.is-error {
  color: #ff7b7b;
}

.panel-hint.is-success {
  color: var(--accent);
}

.message-empty {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 24px 0;
}

.message-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.comments-panel .message-item {
  background: rgba(11, 15, 26, 0.7);
  border: 1px solid rgba(161, 0, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
}

.message-item p {
  font-size: 13px;
  line-height: 1.4;
}

.message-item span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.panel-footer input {
  flex: 1;
  background: rgba(18, 23, 40, 0.7);
  border: 1px solid rgba(161, 0, 255, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
}

.panel.info ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 12px;
}

.panel.info li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(144, 0, 255, 0.15);
  padding-bottom: 8px;
}

.panel.info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0;
  background: rgba(5, 7, 11, 0.95);
}

.footer.simple {
  padding: 32px 0 48px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 360px;
}

.footer-links {
  display: flex;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.player-bar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 48px));
  background: rgba(11, 15, 26, 0.92);
  border: 1px solid rgba(161, 0, 255, 0.4);
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 60;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-actions .like-cluster {
  gap: 6px;
}

.player-actions .like-count {
  min-width: 1ch;
  padding-left: 0;
}

.player-cover {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(161, 0, 255, 0.35);
}

.player-info {
  flex: 1;
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.player-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-now.is-playing {
  opacity: 1;
  transform: translateY(0);
}

.player-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
}

.player-eq span {
  width: 3px;
  background: linear-gradient(180deg, #00d9ff, #a100ff);
  border-radius: 999px;
  animation: eq-bounce 1.2s ease-in-out infinite;
}

.player-eq span:nth-child(2) {
  animation-delay: 0.2s;
}

.player-eq span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes eq-bounce {
  0%,
  100% {
    height: 4px;
    opacity: 0.5;
  }
  50% {
    height: 12px;
    opacity: 1;
  }
}

.player-info strong {
  font-size: 14px;
}

.player-info span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.player-progress {
  position: relative;
  height: 8px;
  background: #1a2035;
  border-radius: 999px;
  overflow: hidden;
}

.player-progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #a100ff, #00d9ff);
  transition: width 0.2s ease;
}

.player-progress-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.player-progress:hover .player-progress-range,
.player-progress:focus-within .player-progress-range {
  opacity: 0.18;
}

.player-progress-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #00d9ff;
  box-shadow: var(--glow-cyan);
}

.player-progress-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #00d9ff;
  border: none;
  box-shadow: var(--glow-cyan);
}

.player-time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-volume {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.player-volume-range {
  width: 110px;
  accent-color: #00d9ff;
}

.player-feedback {
  min-height: 14px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.player-feedback.is-error {
  color: #ff7b7b;
}

.is-hidden {
  display: none !important;
}

.player-bar .player-controls {
  gap: 8px;
}

.player-controls,
.player-volume {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

@keyframes comment-glow {
  0%,
  100% {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 18px rgba(0, 217, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.25);
  }
  50% {
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 217, 255, 0.35);
    border-color: rgba(0, 217, 255, 0.6);
  }
}

@keyframes comment-blink {
  0%,
  100% {
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: none;
  }
  50% {
    border-color: rgba(0, 217, 255, 0.7);
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.35);
  }
}

@keyframes party-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

.share-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.6);
  backdrop-filter: blur(4px);
  z-index: 80;
}

.share-popover {
  position: fixed;
  z-index: 81;
  min-width: 220px;
  background: rgba(11, 15, 26, 0.98);
  border: 1px solid rgba(0, 217, 255, 0.35);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), var(--glow-cyan);
  transform: translate(-50%, -100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.share-popover.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.share-popover.is-centered {
  left: 50% !important;
  top: auto !important;
  bottom: 110px;
  transform: translate(-50%, 0);
}

.share-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 10px;
}

.share-popover-body {
  display: grid;
  gap: 8px;
}

.share-item {
  background: rgba(18, 23, 40, 0.85);
  border: 1px solid rgba(161, 0, 255, 0.25);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
  cursor: pointer;
}

.share-item:hover {
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: var(--glow-cyan);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(18, 23, 40, 0.9);
  border: 1px solid rgba(0, 217, 255, 0.4);
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  z-index: 85;
}

.toast.is-error {
  border-color: rgba(255, 123, 123, 0.6);
  color: #ffb3b3;
}

.download-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.6);
  backdrop-filter: blur(4px);
  z-index: 80;
}

.download-popover {
  position: fixed;
  z-index: 81;
  min-width: 220px;
  background: rgba(11, 15, 26, 0.98);
  border: 1px solid rgba(255, 46, 209, 0.35);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), var(--glow-purple);
  transform: translate(-50%, -100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.download-popover.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.download-popover.is-centered {
  left: 50% !important;
  top: auto !important;
  bottom: 110px;
  transform: translate(-50%, 0);
}

.download-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 10px;
}

.download-popover-body {
  display: grid;
  gap: 8px;
}

.download-item {
  background: rgba(18, 23, 40, 0.85);
  border: 1px solid rgba(161, 0, 255, 0.25);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
  cursor: pointer;
}

.download-item:hover {
  border-color: rgba(255, 46, 209, 0.6);
  box-shadow: var(--glow-purple);
}


.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 100%);
  }

  .topbar-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-left {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 60px 0;
  }

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

  .session-layout {
    grid-template-columns: 1fr;
  }

  .top-sessions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .session-panels {
    grid-template-columns: 1fr;
  }

  .session-main,
  .session-aside {
    grid-column: auto;
  }

  .player-bar {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    flex-wrap: wrap;
  }

  .player-volume {
    width: 100%;
    justify-content: flex-end;
  }

  .player-actions {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .app {
    padding-bottom: 180px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-sessions-grid {
    grid-template-columns: 1fr;
  }


  .hero-scroll {
    display: none;
  }

  .session-hero h2 {
    font-size: 26px;
  }

  .session-hero p {
    letter-spacing: 0.14em;
  }

  .player-bar {
    padding: 10px 12px;
  }

  .player-cover {
    width: 44px;
    height: 44px;
  }

  .player-info strong {
    font-size: 12px;
  }

  .player-volume-range {
    width: 90px;
  }

  .session-card h3 {
    font-size: 16px;
  }

  .dj-photo {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 640px) {
  .nav-left {
    gap: 12px;
    letter-spacing: 0.12em;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    width: 100%;
  }

  .search {
    max-width: none;
    width: 100%;
  }

  .brand-floating img {
    height: 164px;
  }

  .hero-logo img {
    width: min(456px, 88vw);
  }

  .hero-logo {
    margin-top: -44px;
  }

  .btn-fiesta-hero {
    padding: 12px 20px;
    font-size: 11px;
  }

  .hero-reference {
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .hero-simple {
    padding-top: 64px;
  }
}

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

  .hero-kicker {
    letter-spacing: 0.2em;
  }
}
