: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;
  overflow-x: hidden;
}

: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;
  overflow-x: hidden;
}

.app-swipe-layer {
  min-height: 100vh;
  padding-bottom: 140px;
  padding-top: 60px;
  overflow-x: hidden;
}

html.is-ios {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.is-ios .topbar {
  padding-top: env(safe-area-inset-top);
}

.is-ios .app-swipe-layer {
  padding-top: calc(60px + env(safe-area-inset-top));
  padding-bottom: calc(140px + env(safe-area-inset-bottom));
}

.is-ios .logo-float {
  top: calc(70px + env(safe-area-inset-top));
}

.is-ios .swipe-nudge {
  top: calc(66px + env(safe-area-inset-top));
}

.is-ios .player-bar {
  bottom: calc(22px + env(safe-area-inset-bottom));
}

.is-ios .search input,
.is-ios .comment-input,
.is-ios .panel-footer input {
  font-size: 16px;
}

.app-swipe-layer.is-swipe-active {
  will-change: transform;
}

.app-swipe-layer.swipe-animate {
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.app-swipe-layer.is-swipe-active.swipe-left {
  box-shadow: 18px 0 46px rgba(0, 0, 0, 0.45);
}

.app-swipe-layer.is-swipe-active.swipe-right {
  box-shadow: -18px 0 46px rgba(0, 0, 0, 0.45);
}

.swipe-nudge {
  position: fixed;
  right: 14px;
  top: 66px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 55;
  display: none;
}

.swipe-nudge-text {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffeb3b;
  text-shadow: 0 0 8px rgba(255, 235, 59, 0.6), 0 0 16px rgba(0, 0, 0, 0.4);
  line-height: 1;
  animation: swipe-text-blink 1.2s steps(2, end) infinite;
}

.swipe-nudge-arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-left: 2px solid rgba(255, 235, 59, 0.9);
  border-bottom: 2px solid rgba(255, 235, 59, 0.9);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(255, 235, 59, 0.6));
  animation: swipe-nudge 2.2s ease-in-out infinite;
}

.more-nudge {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: -4px;
  color: #ffeb3b;
  text-shadow: 0 0 8px rgba(255, 235, 59, 0.6), 0 0 16px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  cursor: pointer;
}

.more-nudge-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 235, 59, 0.9);
  border-bottom: 2px solid rgba(255, 235, 59, 0.9);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(255, 235, 59, 0.6));
  animation: more-nudge-bounce 1.8s ease-in-out infinite;
}

.more-nudge-text {
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .app-swipe-layer.swipe-animate {
    transition: none;
  }
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 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: fixed;
  left: 50%;
  top: 70px;
  transform: translate(-50%, -50%);
  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: 0 0 auto;
  justify-content: flex-start;
  padding-left: 0;
  margin-right: auto;
}

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

.nav-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.nav-install {
  color: #7ef2ff;
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.45);
}

.nav-install:hover {
  color: #ffe36e;
  text-shadow: 0 0 16px rgba(255, 227, 110, 0.7), 0 0 28px rgba(255, 46, 209, 0.35);
}

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

.nav-actions .genres-link {
  color: transparent;
  background: linear-gradient(120deg, #00d9ff, #ff2ed1, #ffd662, #00ff99);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.45), 0 0 18px rgba(255, 46, 209, 0.35);
  animation: fiesta-gradient 2.8s linear infinite;
}

.nav-actions .genres-link:hover {
  text-shadow: 0 0 16px rgba(0, 217, 255, 0.6), 0 0 24px rgba(255, 46, 209, 0.45);
}

.genres-link:hover {
  color: #4de6ff;
  text-shadow: 0 0 14px rgba(77, 230, 255, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  padding-right: 0;
  margin-left: auto;
  transform: translateX(0);
}

.online-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 180, 0.35);
  background: rgba(8, 16, 30, 0.75);
  color: #d9fff1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(120, 124, 140, 0.45);
  background: rgba(8, 12, 22, 0.7);
  color: rgba(210, 214, 228, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.live-indicator .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f7485;
  box-shadow: none;
  flex-shrink: 0;
}

.live-indicator.is-live {
  border-color: rgba(255, 74, 94, 0.75);
  color: #ffe4ea;
  background: rgba(255, 59, 94, 0.14);
  box-shadow: 0 0 16px rgba(255, 74, 94, 0.35);
  animation: live-rec-pulse 1.2s ease-in-out infinite;
}


.live-indicator.is-live .live-dot {
  background: #ff3b5e;
  box-shadow: 0 0 12px rgba(255, 74, 94, 0.6);
  animation: online-pulse 1.4s ease-in-out infinite;
}

.live-indicator-floating {
  display: none;
}

.is-menu-open .live-indicator-floating {
  z-index: 70;
  opacity: 0.4;
  pointer-events: none;
}

.online-indicator.is-live {
  border-color: rgba(0, 240, 180, 0.55);
  box-shadow: 0 0 16px rgba(0, 240, 180, 0.35);
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f0b4;
  box-shadow: 0 0 12px rgba(0, 240, 180, 0.6);
  animation: online-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.online-count {
  font-weight: 600;
}

.online-indicator-mobile {
  margin-top: 0;
  align-self: center;
}

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

.nav-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(161, 0, 255, 0.4));
}

.install-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  cursor: pointer;
}

.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;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

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

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


.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(120deg, #050008, #12001c, #2b0033, #42004a, #00b7ff, #050008);
  background-size: 300% 300%;
  box-shadow: 0 12px 30px rgba(255, 46, 209, 0.45), 0 0 22px rgba(0, 217, 255, 0.4);
  animation: party-pulse 2.2s ease-in-out infinite, fiesta-gradient 3.2s linear infinite;
  position: relative;
  overflow: hidden;
}

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

.btn-party::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 50%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.2s ease;
}

.btn-party:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.btn-download {
  background: linear-gradient(90deg, rgba(70, 215, 120, 0.95), rgba(18, 170, 90, 0.95));
  box-shadow: 0 10px 26px rgba(70, 215, 120, 0.45), 0 0 16px rgba(18, 170, 90, 0.35);
}

.btn-download:hover {
  box-shadow: 0 12px 30px rgba(70, 215, 120, 0.55), 0 0 18px rgba(18, 170, 90, 0.45);
}

.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: 160px;
}

.legal-page {
  padding-top: 60px;
  padding-bottom: 80px;
}

.legal-topbar .topbar-inner {
  justify-content: space-between;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.legal-brand img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(161, 0, 255, 0.45));
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.legal-hero {
  padding-top: 90px;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-card {
  background: rgba(11, 15, 26, 0.82);
  border: 1px solid rgba(161, 0, 255, 0.25);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 10px;
}

.legal-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: #7ef2ff;
}

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

.legal-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding-left: 0;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
}

.legal-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.dj-hero {
  display: grid;
  gap: 18px;
}

.dj-profile {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.dj-profile-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  background: rgba(5, 7, 11, 0.6);
}

.dj-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dj-profile-card {
  text-align: left;
  align-items: stretch;
}

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

.dj-profile-text {
  display: grid;
  gap: 10px;
}

.dj-profile-lead {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
}

.dj-profile-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.dj-profile-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.genre-pill {
  --genre-accent: #7ef2ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--genre-accent) 55%, transparent);
  background: rgba(5, 7, 11, 0.6);
  color: var(--genre-accent);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.genre-pill:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--genre-accent) 75%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--genre-accent) 35%, transparent);
}

.genre-pill .material-symbols-outlined {
  font-size: 14px;
  line-height: 1;
}

@media (min-width: 1100px) {
  .dj-profile {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }
}

.genre-house {
  --genre-accent: #ffb347;
}

.genre-indie-dance {
  --genre-accent: #ff6b6b;
}

.genre-nu-disco {
  --genre-accent: #ffb3d9;
}

.genre-tech-house {
  --genre-accent: #ff2ed1;
}

.genre-techno {
  --genre-accent: #7c4dff;
}

.genre-hardtechno {
  --genre-accent: #ff2e5e;
}

.genre-hard-dance {
  --genre-accent: #ffd662;
}

.genre-uk-garage {
  --genre-accent: #5dff85;
}

.genre-drum-and-bass {
  --genre-accent: #a3ff12;
}

.genre-makina {
  --genre-accent: #00d9ff;
}

.genre-goa-trance {
  --genre-accent: #00d9ff;
}

.genre-techno-flamenco {
  --genre-accent: #ff6a00;
}

.dj-view .dj-hero {
  justify-items: center;
  text-align: center;
}

.dj-view .legal-card {
  align-items: center;
  text-align: center;
}

.dj-view .dj-profile-card {
  align-items: stretch;
  text-align: left;
}

.dj-view .legal-actions {
  justify-content: center;
}

.dj-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7ef2ff;
  background: rgba(0, 217, 255, 0.12);
  border: 1px solid rgba(0, 217, 255, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  width: fit-content;
}

#home,
#sessions,
#top-sessions,
#session,
#mas-generos {
  scroll-margin-top: 180px;
}

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

body.is-genres-view .topbar {
  background: rgba(4, 8, 16, 0.92);
  border-bottom-color: rgba(77, 230, 255, 0.25);
}

body.is-genres-view .topbar::after {
  background: linear-gradient(90deg, #4de6ff 0%, #4b7bff 50%, #00f0b4 100%);
}

body.is-genres-view .genres-link {
  color: #4de6ff;
  text-shadow: 0 0 14px rgba(77, 230, 255, 0.5);
}

body.is-genres-view main > section:not(#mas-generos) {
  display: none;
}

body.is-dj-view main > section:not(.dj-view) {
  display: none;
}

body.is-legal-view main > section:not(.legal-view) {
  display: none;
}

.genres-view {
  position: relative;
  display: none;
  padding-top: 96px;
  --genres-accent: #4de6ff;
  --genres-accent-2: #4b7bff;
  --genres-accent-3: #00f0b4;
  background: radial-gradient(circle at 20% 20%, rgba(77, 230, 255, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(75, 123, 255, 0.15), transparent 50%),
    linear-gradient(135deg, rgba(6, 10, 18, 0.95), rgba(6, 14, 26, 0.98));
  border-top: 1px solid rgba(77, 230, 255, 0.15);
}

.dj-view {
  display: none;
  padding-top: 96px;
}

body.is-dj-view .dj-view.is-active {
  display: block;
  animation: genres-fade-in 0.4s ease;
}

.dj-sessions-block {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.dj-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 1032px;
  margin: 0 auto;
}

.dj-sessions-head h3 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.legal-view {
  display: none;
  padding-top: 96px;
}

body.is-legal-view .legal-view.is-active {
  display: block;
  animation: genres-fade-in 0.4s ease;
}

body.is-genres-view .genres-view {
  display: block;
  animation: genres-fade-in 0.4s ease;
}

.genres-ambient {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 40% 70%, rgba(0, 240, 180, 0.2), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(77, 230, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.genres-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.genres-hero-text h2 {
  font-size: 36px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(120deg, var(--genres-accent), var(--genres-accent-2), var(--genres-accent-3));
  -webkit-background-clip: text;
  background-clip: text;
}

.genres-hero-text p {
  color: #cfeaff;
  margin-top: 10px;
  text-align: center;
}

.genres-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 10px;
  color: var(--genres-accent);
  margin-bottom: 10px;
  justify-content: center;
}

.genres-fiesta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.genres-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 200px));
  gap: 18px;
  justify-content: center;
}

.genre-card {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--genre-border, rgba(77, 230, 255, 0.25));
  background: rgba(8, 16, 30, 0.78);
  display: grid;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  cursor: pointer;
  min-height: 160px;
  height: 160px;
  width: 200px;
  justify-content: center;
  align-content: center;
  text-align: center;
}

.genre-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, var(--genre-soft, rgba(77, 230, 255, 0.2)), transparent 55%);
  opacity: 0.45;
}

.genre-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--genre-accent, #4de6ff), transparent);
  opacity: 0.8;
}

.genre-card > * {
  position: relative;
  z-index: 1;
}

.genre-card h3 {
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--genre-accent, #4de6ff);
  text-align: center;
  line-height: 1.2;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.genre-status {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--genre-accent, #4de6ff);
}

.genre-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--genre-accent, #4de6ff) 55%, #9ab6d4 45%);
  text-align: center;
  line-height: 1.4;
  min-height: 2.8em;
}

.genre-card:hover {
  transform: translateY(-4px);
  border-color: var(--genre-accent, #4de6ff);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 18px var(--genre-glow, rgba(77, 230, 255, 0.45));
}

.genre-card.is-available .genre-status {
  color: var(--genres-accent-3);
}

.genres-sections {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  margin-top: 32px;
}

.genres-sections .card-grid {
  justify-content: center;
}

.genre-block {
  background: rgba(8, 16, 30, 0.7);
  border: 1px solid rgba(77, 230, 255, 0.18);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 16px;
  scroll-margin-top: 180px;
}

.genre-block-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.genre-block-head h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.genre-block-head p {
  color: #b7d6f6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 6px;
}

.genre-block-status {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(77, 230, 255, 0.35);
  color: #7adfff;
  background: rgba(77, 230, 255, 0.08);
}

.genre-block-status.is-available {
  color: #00f0b4;
  border-color: rgba(0, 240, 180, 0.45);
  background: rgba(0, 240, 180, 0.12);
}

.genre-block-status.is-soon {
  color: #4de6ff;
}

.genre-sessions-grid {
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
  justify-content: center;
  width: fit-content;
  max-width: 1032px;
  margin: 0 auto;
  justify-self: center;
}

.genre-empty {
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed rgba(77, 230, 255, 0.35);
  color: #b7d6f6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-align: center;
  grid-column: 1 / -1;
}

.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: 60px;
}

.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: 14px;
}

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

.top-title {
  color: transparent;
  background: linear-gradient(120deg, #fff7d6, #ffe79a, #ffffff, #ffd86b, #fff7d6);
  background-size: 260% 260%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 12px rgba(255, 236, 170, 0.55), 0 0 22px rgba(255, 255, 255, 0.35);
  animation: top-title-glow 6s ease infinite;
  font-size: 36px;
}

.top-title-fiesta {
  color: transparent;
  background: linear-gradient(120deg, #ffffff, #ffe36e, #b7f6ff, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: fiesta-gradient 3.2s linear infinite;
  text-shadow: 0 0 10px rgba(255, 236, 170, 0.6);
}

.top-callout {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  max-width: 1000px;
  margin: 0 auto 24px;
  display: grid;
  gap: 10px;
}

.top-callout-text {
  font-size: 24px;
  letter-spacing: 0.08em;
}

.top-callout-emphasis {
  color: #ffd662;
  text-shadow: 0 0 10px rgba(255, 214, 98, 0.55);
}

.top-callout-highlight {
  color: #ffd662;
  text-shadow: 0 0 18px rgba(255, 214, 98, 0.7);
  font-size: 44px;
  letter-spacing: 0.12em;
}

.hero-logo img {
  width: min(744px, 82vw);
  height: auto;
  filter: drop-shadow(0 0 45px rgba(161, 0, 255, 0.55));
  opacity: 0;
  transform: translateY(22px) scale(1.35);
  animation: hero-logo-in 2.8s ease forwards;
}

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

.hero-fiesta {
  display: flex;
  justify-content: center;
  margin: clamp(14px, 2.6vh, 24px) 0 clamp(10px, 2.4vh, 18px);
  transform: translateY(38px);
  position: relative;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.fiesta-waves {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  pointer-events: none;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  z-index: 1;
}

.fiesta-waves::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.25), transparent 60%);
  animation: fiesta-waves 2.2s ease-in-out infinite;
}

.btn-fiesta-hero,
.btn-fiesta-genres {
  width: 132px;
  height: 132px;
  padding: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  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);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fiesta-speaker 0.72s ease-in-out infinite, fiesta-glow 1.4s ease-in-out infinite,
    fiesta-gradient 2.4s linear infinite;
  transform-origin: center;
  position: relative;
  overflow: visible;
  isolation: isolate;
  will-change: transform;
  z-index: 2;
}

.fiesta-text {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #ffeb3b;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.65), 0 0 18px rgba(0, 0, 0, 0.45);
  animation: fiesta-text-blink 0.8s steps(2, end) infinite;
  position: relative;
  z-index: 2;
  line-height: 1;
  text-align: center;
}

.fiesta-tip {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217, 255, 255, 0.75);
  text-shadow: 0 0 8px rgba(0, 217, 255, 0.25);
  opacity: 0.65;
}

.fiesta-line {
  display: inline-block;
  font-size: 0.8em;
}

.fiesta-line + .fiesta-line {
  font-size: 1.1em;
}

.fiesta-word {
  color: transparent;
  background: linear-gradient(120deg, #ffe86d, #00d9ff, #ff2ed1, #ffe86d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
  animation: fiesta-text-gradient 2.8s ease-in-out infinite;
}

.btn-fiesta-hero:hover,
.btn-fiesta-genres:hover {
  transform: scale(1.04);
}

.btn-fiesta-hero::before,
.btn-fiesta-genres::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.55);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.35);
  opacity: 0.6;
  animation: fiesta-ring-pulse 1.1s ease-out infinite;
  pointer-events: none;
  transform-origin: center;
  z-index: 0;
}

.btn-fiesta-hero::after,
.btn-fiesta-genres::after {
  display: none;
}

.fiesta-bpm {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(11, 15, 26, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.45);
  box-shadow: 0 10px 26px rgba(0, 217, 255, 0.2), 0 0 16px rgba(255, 46, 209, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--text);
  overflow: hidden;
  z-index: 2;
}

.fiesta-heart {
  color: #ff2e5e;
  font-size: 24px;
  animation: heart-bounce 0.6s ease-in-out infinite;
}

.fiesta-bpm-value {
  position: relative;
  z-index: 2;
}

.fiesta-bpm-wave {
  position: absolute;
  inset: -60% 20%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 46, 209, 0.4), transparent 60%);
  animation: bpm-wave 1.2s ease-in-out infinite;
  opacity: 0.8;
}

.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);
  }
}

@keyframes genres-fade-in {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes online-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes top-shell-glow {
  0% {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 98, 0.18);
  }
  50% {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 214, 98, 0.55);
  }
  100% {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 98, 0.18);
  }
}

@keyframes top-shell-border {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.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: center;
  gap: 18px;
  margin-bottom: 32px;
  text-align: center;
}

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

.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.28);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(12, 16, 30, 0.95), rgba(10, 14, 24, 0.85));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 98, 0.16);
  animation: top-shell-glow 1.6s ease-in-out infinite;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.top-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255, 214, 98, 0.55), rgba(255, 46, 209, 0.25), rgba(0, 217, 255, 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: top-shell-border 1.6s ease-in-out infinite;
}


.top-sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 240px));
  gap: 24px;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.top-session-card.rank-1 {
  border-color: rgba(255, 214, 98, 0.7);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 214, 98, 0.4);
}

.top-session-card.rank-2 {
  border-color: rgba(203, 213, 225, 0.65);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 16px rgba(203, 213, 225, 0.35);
}

.top-session-card.rank-3 {
  border-color: rgba(205, 127, 50, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 14px rgba(205, 127, 50, 0.35);
}


.top-rank-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0b0c10;
  background: linear-gradient(120deg, #ffd662, #ff2ed1, #00d9ff);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 214, 98, 0.4);
  z-index: 2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-session-card.rank-1 .top-rank-badge {
  background: linear-gradient(120deg, #ffd662, #ffb347);
}

.top-session-card.rank-2 .top-rank-badge {
  background: linear-gradient(120deg, #e2e8f0, #94a3b8);
  color: #0b0c10;
}

.top-session-card.rank-3 .top-rank-badge {
  background: linear-gradient(120deg, #cd7f32, #a97142);
}


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

.top-shell .session-card {
  background: linear-gradient(145deg, rgba(18, 22, 40, 0.95), rgba(10, 14, 26, 0.9));
  border-color: rgba(255, 214, 98, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.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-shell .session-card h3 {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(120deg, #ffd662, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
}

.top-shell .play-btn {
  background: linear-gradient(90deg, rgba(255, 214, 98, 0.35), rgba(0, 217, 255, 0.25));
  border-color: rgba(255, 214, 98, 0.6);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-shell .play-btn:hover {
  box-shadow: 0 0 16px rgba(255, 214, 98, 0.45);
}

.top-shell .play-btn .material-symbols-outlined {
  font-size: 22px;
}

.top-shell .session-media {
  border-color: rgba(255, 214, 98, 0.45);
  box-shadow: 0 0 18px rgba(255, 214, 98, 0.2);
}

.top-shell .session-meta .meta {
  color: rgba(255, 214, 98, 0.75);
}

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

.install-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 91;
}

.install-modal-inner {
  width: min(520px, calc(100% - 32px));
  background: rgba(11, 15, 26, 0.95);
  border: 1px solid rgba(255, 214, 98, 0.35);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 214, 98, 0.2);
  display: grid;
  gap: 16px;
}

.install-modal-inner img {
  height: 108px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 18px rgba(161, 0, 255, 0.4));
}

.install-callout {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
}

.install-callout-highlight {
  display: block;
  margin-top: 8px;
  color: #ffd662;
  text-shadow: 0 0 12px rgba(255, 214, 98, 0.7);
  font-size: 18px;
  letter-spacing: 0.2em;
}

.install-modal-inner h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 18px;
}

.install-modal-inner p {
  color: var(--muted);
  font-size: 13px;
}

.install-safe {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
}

.install-platform {
  display: none;
}

.install-platform.install-standalone {
  display: none;
}

.install-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.daily-share-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.65);
  backdrop-filter: blur(8px);
  z-index: 92;
}

.daily-share-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 93;
}

.daily-share-card {
  width: min(560px, calc(100% - 32px));
  background: rgba(11, 15, 26, 0.96);
  border: 1px solid rgba(161, 0, 255, 0.35);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), var(--glow-purple);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.daily-share-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(161, 0, 255, 0.18), transparent 50%),
    radial-gradient(circle at bottom right, rgba(0, 217, 255, 0.18), transparent 50%);
  pointer-events: none;
}

.daily-share-card > * {
  position: relative;
  z-index: 1;
}

.daily-share-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.daily-share-kicker {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.35);
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.daily-share-head h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.daily-share-copy {
  color: var(--muted);
  font-size: 13px;
}

.daily-share-list {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.daily-share-list li {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 217, 255, 0.25);
  background: rgba(12, 18, 32, 0.7);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.daily-share-list li:nth-child(1) {
  border-color: rgba(0, 217, 255, 0.45);
  background: linear-gradient(120deg, rgba(0, 217, 255, 0.18), rgba(12, 18, 32, 0.85));
  color: #c7f5ff;
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.35);
}

.daily-share-list li:nth-child(2) {
  border-color: rgba(255, 46, 209, 0.45);
  background: linear-gradient(120deg, rgba(255, 46, 209, 0.18), rgba(12, 18, 32, 0.85));
  color: #ffd1f1;
  text-shadow: 0 0 12px rgba(255, 46, 209, 0.35);
}

.daily-share-list li:nth-child(3) {
  border-color: rgba(161, 0, 255, 0.5);
  background: linear-gradient(120deg, rgba(161, 0, 255, 0.2), rgba(12, 18, 32, 0.85));
  color: #e5c7ff;
  text-shadow: 0 0 12px rgba(161, 0, 255, 0.35);
}

.daily-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.daily-share-dismiss {
  align-self: flex-start;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.install-ios-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--text);
}

.install-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 6px;
  max-width: 320px;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
}

.install-steps li {
  position: relative;
  padding-left: 16px;
}

.install-steps li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.install-ios-note {
  margin: 6px 0 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.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;
  flex-wrap: wrap;
  row-gap: 6px;
  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-fill, minmax(240px, 240px));
  gap: 24px;
  justify-content: center;
}

.session-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--session-border, 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;
  width: 100%;
  box-sizing: border-box;
  justify-items: stretch;
  min-width: 0;
}

.session-card:hover {
  transform: translateY(-6px);
  border-color: var(--session-accent, rgba(255, 46, 209, 0.6));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), var(--session-glow, 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;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-self: stretch;
  margin: 0;
}

.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: var(--session-accent, rgba(0, 217, 255, 0.7));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--session-glow, 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;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.session-card p {
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.meta-dj {
  color: var(--text);
  font-weight: 700;
}

.meta-tag {
  color: var(--accent);
  font-weight: 700;
}

.tag {
  background: var(--session-accent, 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;
  min-width: 0;
  flex-wrap: nowrap;
}

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

.like-btn {
  color: #ff5c7c;
  border-color: rgba(255, 92, 124, 0.5);
  box-shadow: 0 0 12px rgba(255, 92, 124, 0.35);
}

.like-btn.is-liked {
  color: #ff2e5e;
  border-color: rgba(255, 46, 94, 0.75);
  box-shadow: 0 0 16px rgba(255, 46, 94, 0.5);
}

.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: #a84bff;
  border-color: rgba(168, 75, 255, 0.55);
  box-shadow: 0 0 12px rgba(168, 75, 255, 0.35);
}

.share-btn:hover {
  color: #c277ff;
  border-color: rgba(194, 119, 255, 0.7);
  box-shadow: 0 0 16px rgba(194, 119, 255, 0.5);
}

.download-btn {
  color: #4cd47c;
  border-color: rgba(76, 212, 124, 0.55);
  box-shadow: 0 0 12px rgba(76, 212, 124, 0.35);
}

.download-btn:hover {
  color: #7be6a5;
  border-color: rgba(123, 230, 165, 0.7);
  box-shadow: 0 0 16px rgba(123, 230, 165, 0.5);
}

.play-btn {
  background: linear-gradient(120deg, rgba(18, 0, 36, 0.9), rgba(58, 0, 255, 0.7), rgba(0, 217, 255, 0.6));
  background-size: 220% 220%;
  border: 1px solid rgba(0, 217, 255, 0.45);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  animation: play-gradient 4s linear infinite;
}

.play-btn .material-symbols-outlined {
  font-size: 18px;
}

.play-btn:hover {
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.4);
}

.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;
}

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

.dj-tile {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  background: rgba(11, 15, 26, 0.78);
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}

.dj-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 217, 255, 0.18), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255, 46, 209, 0.12), transparent 60%);
  opacity: 0.85;
}

.dj-tile > * {
  position: relative;
  z-index: 1;
}

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

.dj-tile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #7ef2ff;
}

.dj-tile h3 {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

.dj-tile-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}


.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-meta {
  margin-top: 6px;
}

.message-time {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.04em;
}

.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;
}

.live-section {
  position: relative;
  overflow: hidden;
}



.live-head {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.live-head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.live-alert {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.live-alert-btn {
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(120deg, rgba(255, 214, 98, 0.28), rgba(0, 217, 255, 0.3), rgba(255, 46, 209, 0.28));
  border-color: rgba(0, 217, 255, 0.6);
  color: #eafcff;
  box-shadow: 0 10px 24px rgba(0, 217, 255, 0.25), 0 0 14px rgba(255, 214, 98, 0.25);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.35);
}

.live-alert-btn:hover {
  box-shadow: 0 12px 28px rgba(0, 217, 255, 0.35), 0 0 18px rgba(255, 214, 98, 0.35);
}

.live-alert-btn.is-active {
  background: linear-gradient(120deg, rgba(0, 217, 255, 0.45), rgba(255, 214, 98, 0.45), rgba(255, 46, 209, 0.45));
  border-color: rgba(255, 214, 98, 0.75);
  color: #05070b;
  box-shadow: 0 0 22px rgba(255, 214, 98, 0.45);
}

.live-alert-note {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217, 255, 241, 0.7);
  max-width: 260px;
  text-align: right;
}

.live-kicker {
  display: inline-flex;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 10px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 82, 128, 0.5);
  background: rgba(10, 12, 20, 0.7);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.live-status.is-live {
  border-color: rgba(255, 74, 94, 0.7);
  box-shadow: 0 0 16px rgba(255, 74, 94, 0.35);
  background: linear-gradient(120deg, rgba(255, 46, 209, 0.18), rgba(255, 74, 94, 0.25), rgba(0, 217, 255, 0.18));
  background-size: 300% 300%;
  animation: live-rec-pulse 1.2s ease-in-out infinite, live-badge-shift 4.8s linear infinite;
}

.live-status.is-live .live-dot {
  background: #ff3b5e;
  box-shadow: 0 0 12px rgba(255, 74, 94, 0.6);
  animation: live-rec-dot 1.2s ease-in-out infinite;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5280;
  box-shadow: 0 0 12px rgba(255, 82, 128, 0.6);
}

.live-label {
  font-weight: 600;
}

.live-listeners {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.08em;
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.live-player {
  border-color: rgba(0, 217, 255, 0.35);
  background: linear-gradient(135deg, rgba(7, 12, 22, 0.95), rgba(8, 12, 24, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 18px rgba(0, 217, 255, 0.18);
}

.live-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-section.is-playing .live-player {
  border-color: rgba(255, 214, 98, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 214, 98, 0.28), 0 0 18px rgba(0, 217, 255, 0.22);
  animation: live-panel-glow 2.8s ease-in-out infinite;
}

.live-player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ff2ed1, #00d9ff);
  color: #05070b;
  font-weight: 700;
}

.live-player-head h3 {
  margin-top: 10px;
  font-size: 24px;
}

.live-player-head p {
  color: var(--muted);
  font-size: 13px;
}

.live-signal {
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
  align-items: end;
}

.live-signal span {
  width: 6px;
  height: 18px;
  border-radius: 6px;
  background: rgba(0, 217, 255, 0.75);
  animation: live-pulse 1.3s ease-in-out infinite;
}

.live-signal span:nth-child(2) {
  animation-delay: 0.15s;
  height: 26px;
}

.live-signal span:nth-child(3) {
  animation-delay: 0.3s;
  height: 22px;
}

.live-signal span:nth-child(4) {
  animation-delay: 0.45s;
  height: 30px;
}

.live-player-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.live-player-actions .btn {
  width: auto;
}

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

.live-volume-range {
  width: 120px;
  accent-color: #00d9ff;
}

.live-connecting {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.live-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0, 217, 255, 0.25);
  border-top-color: rgba(0, 217, 255, 0.85);
  animation: live-spin 0.9s linear infinite;
}

.live-player-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.live-stream,
.live-quality {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(161, 0, 255, 0.3);
  background: rgba(5, 7, 11, 0.5);
}

.live-player-note {
  font-size: 12px;
  color: var(--muted);
}

.live-chat {
  border-color: rgba(161, 0, 255, 0.45);
  background: linear-gradient(140deg, rgba(10, 12, 22, 0.95), rgba(10, 14, 26, 0.9));
}

.live-reactions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reaction-btn {
  border: 1px solid rgba(0, 217, 255, 0.35);
  background: rgba(11, 16, 28, 0.7);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reaction-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.35);
}

.reaction-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.live-section.is-live .live-status {
  border-color: rgba(255, 74, 94, 0.7);
  box-shadow: 0 0 16px rgba(255, 74, 94, 0.35);
  background: linear-gradient(120deg, rgba(255, 46, 209, 0.18), rgba(255, 74, 94, 0.25), rgba(0, 217, 255, 0.18));
  background-size: 300% 300%;
  animation: live-rec-pulse 1.2s ease-in-out infinite, live-badge-shift 4.8s linear infinite;
}

.live-section.is-live .live-dot {
  background: #ff3b5e;
  box-shadow: 0 0 12px rgba(255, 74, 94, 0.6);
  animation: live-rec-dot 1.2s ease-in-out infinite;
}

.live-section.is-offline .live-player,
.live-section.is-offline .live-chat {
  opacity: 0.7;
}

.live-section.is-offline .live-signal span {
  animation-play-state: paused;
  opacity: 0.35;
}

.live-section.is-offline .comment-input,
.live-section.is-offline .reaction-btn,
.live-section.is-offline .btn {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.live-section.is-offline .live-alert-btn {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
}

.live-section.is-playing .live-pill {
  background: linear-gradient(120deg, #ffd662, #00d9ff);
  color: #05070b;
  background-size: 260% 260%;
  animation: live-pill-glow 2.4s ease-in-out infinite, live-pill-shift 5.6s linear infinite;
}

.live-section.is-live .live-pill {
  background: linear-gradient(120deg, #ff2ed1, #ff4a5e, #00d9ff);
  background-size: 260% 260%;
  animation: live-pill-shift 5.6s linear infinite;
}

.live-reaction-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 120;
  overflow: hidden;
}

.live-reaction {
  position: absolute;
  bottom: -30px;
  opacity: 0;
  animation: live-float 3.2s ease-out forwards;
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.35));
  will-change: transform, opacity;
}

@keyframes live-pulse {
  0%,
  100% {
    transform: scaleY(0.7);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

@keyframes live-float {
  0% {
    transform: translate3d(0, 0, 0) scale(0.85);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--drift, 0px), -120vh, 0) scale(1.35);
    opacity: 0;
  }
}



@keyframes live-rec-pulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 74, 94, 0.45), 0 0 12px rgba(255, 74, 94, 0.35);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 74, 94, 0.25), 0 0 18px rgba(255, 74, 94, 0.55);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 74, 94, 0.35), 0 0 12px rgba(255, 74, 94, 0.35);
  }
}

@keyframes live-rec-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes live-badge-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes live-pill-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes live-pill-glow {
  0%,
  100% {
    filter: saturate(1.05) hue-rotate(0deg);
    box-shadow: 0 0 10px rgba(255, 214, 98, 0.35);
  }
  50% {
    filter: saturate(1.25) hue-rotate(35deg);
    box-shadow: 0 0 14px rgba(0, 217, 255, 0.4);
  }
}

@keyframes live-panel-glow {
  0%,
  100% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 98, 0.25), 0 0 18px rgba(0, 217, 255, 0.15);
  }
  50% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 18px rgba(0, 217, 255, 0.35), 0 0 12px rgba(255, 214, 98, 0.2);
  }
}

@keyframes live-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0 28px;
  background: rgba(5, 7, 11, 0.95);
  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: 14px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}

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

.footer-grid strong {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
}

.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);
  overflow: visible;
}

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

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

.player-toggle {
  border-color: rgba(0, 217, 255, 0.35);
  position: absolute;
  top: -16px;
  right: -16px;
  background: rgba(11, 15, 26, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.player-bar.is-minimized {
  padding: 8px 12px;
}

.player-bar.is-minimized .player-info {
  display: none;
}

.player-bar.is-minimized .player-actions {
  display: none;
}

.player-bar.is-minimized .player-volume {
  display: none;
}

.player-bar.is-minimized .player-cover {
  width: 42px;
  height: 42px;
}

.player-bar.is-minimized .player-toggle {
  top: -16px;
  right: -16px;
}

.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);
  }
}

@keyframes fiesta-glow {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(255, 46, 209, 0.45), 0 0 22px rgba(0, 217, 255, 0.4);
  }
  50% {
    box-shadow: 0 16px 38px rgba(255, 46, 209, 0.65), 0 0 32px rgba(0, 217, 255, 0.6);
  }
}

@keyframes fiesta-burst {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes fiesta-ring {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes fiesta-waves {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-6px) scale(1.05);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-12px) scale(1.3);
    opacity: 0;
  }
}

@keyframes fiesta-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@keyframes play-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fiesta-text-gradient {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes fiesta-text-blink {
  0% {
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.75), 0 0 18px rgba(0, 0, 0, 0.45);
  }
  50% {
    color: #0b0b0b;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.65);
  }
  100% {
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.75), 0 0 18px rgba(0, 0, 0, 0.45);
  }
}

@keyframes fiesta-heartbeat {
  0% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.06);
  }
  24% {
    transform: scale(0.98);
  }
  36% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fiesta-speaker {
  0% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.08);
  }
  32% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.06);
  }
  72% {
    transform: scale(0.99);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fiesta-soundwave {
  0% {
    opacity: 0.55;
    transform: scale(0.86);
  }
  70% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes fiesta-ring-pulse {
  0% {
    opacity: 0.45;
    transform: scale(0.9);
  }
  60% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes fiesta-wave-min {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes swipe-nudge {
  0% {
    transform: translateX(0) rotate(45deg);
    opacity: 0.2;
  }
  40% {
    transform: translateX(-6px) rotate(45deg);
    opacity: 0.65;
  }
  100% {
    transform: translateX(0) rotate(45deg);
    opacity: 0.2;
  }
}

@keyframes swipe-text-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    opacity: 1;
  }
}

@keyframes more-nudge-bounce {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
}

@keyframes top-title-glow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heart-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.18);
  }
  60% {
    transform: scale(0.96);
  }
}

@keyframes bpm-wave {
  0% {
    transform: scale(0.6);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes hero-logo-in {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(1.35);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.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-update {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 10px;
}

.toast-copy {
  display: grid;
  gap: 4px;
}

.toast-copy strong {
  font-size: 12px;
  letter-spacing: 0.18em;
}

.toast-copy span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.toast-action {
  background: rgba(0, 217, 255, 0.2);
  border: 1px solid rgba(0, 217, 255, 0.6);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.install-platform button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.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(70, 215, 120, 0.6);
  box-shadow: 0 0 14px rgba(70, 215, 120, 0.45);
}


.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;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .top-shell {
    width: 100%;
  }

  .top-sessions-grid,
  .card-grid,
  .genre-sessions-grid,
  .dj-sessions-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    justify-content: center;
  }

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

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

  .live-status {
    width: fit-content;
    justify-content: flex-start;
  }

  .live-head-actions,
  .live-alert {
    align-items: flex-start;
  }

  .live-alert-note {
    text-align: left;
  }

  .live-player-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .swipe-nudge {
    display: inline-flex;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }

  body.is-genres-view .swipe-nudge,
  body.is-dj-view .swipe-nudge,
  body.is-legal-view .swipe-nudge {
    opacity: 0;
  }


  .top-rank-badge {
    font-size: 10px;
    letter-spacing: 0.18em;
    padding: 6px 12px;
  }

  .more-nudge {
    display: inline-flex;
    margin-top: -24px;
  }

  .genres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .genre-card {
    width: 100%;
    min-height: 130px;
    height: 130px;
    padding: 14px;
  }

  .nav-mobile .online-indicator {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 240, 180, 0.35);
    background: rgba(8, 16, 30, 0.75);
    color: #d9fff1;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    white-space: nowrap;
  }

  .live-indicator-floating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 9px;
    letter-spacing: 0.16em;
    position: fixed;
    top: 78px;
    left: 14px;
    z-index: 85;
    backdrop-filter: blur(6px);
  }


  .nav-mobile .online-indicator.is-live {
    border-color: rgba(0, 240, 180, 0.55) !important;
    box-shadow: 0 0 16px rgba(0, 240, 180, 0.35) !important;
  }

  .nav-mobile .online-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background: #00f0b4 !important;
    box-shadow: 0 0 12px rgba(0, 240, 180, 0.6) !important;
    animation: online-pulse 1.6s ease-in-out infinite !important;
  }


  .hero {
    min-height: 70vh;
  }

  .session-card {
    padding: 12px;
    gap: 10px;
  }

  .top-metrics {
    font-size: 10px;
    letter-spacing: 0.08em;
    gap: 10px;
  }

  .session-media {
    border-radius: 12px;
  }

  .session-actions {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .session-actions-right {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .like-count {
    font-size: 11px;
    min-width: 12px;
  }

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

  .session-card p {
    font-size: 13px;
  }

  .session-meta {
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    min-width: 0;
  }

  .session-meta .meta {
    flex: 1 1 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    padding: 68px 0;
  }

  #home,
  #sessions,
  #top-sessions,
  #session {
    scroll-margin-top: 140px;
  }

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

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

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

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


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

  .comments-panel .panel-body {
    max-height: none;
    overflow: visible;
  }

  .dj-profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .dj-profile-card {
    text-align: center;
  }

  .dj-profile-media {
    max-width: 220px;
  }

  .dj-profile-genres {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .genre-pill {
    font-size: 9px;
    letter-spacing: 0.14em;
    width: 100%;
    max-width: 180px;
    justify-content: center;
  }

  .genre-pill .material-symbols-outlined {
    font-size: 12px;
  }

  .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-swipe-layer {
    padding-bottom: 180px;
    padding-top: 60px;
  }

  .is-ios .app-swipe-layer {
    padding-bottom: calc(180px + env(safe-area-inset-bottom));
    padding-top: calc(60px + env(safe-area-inset-top));
  }

  .is-ios .live-indicator-floating {
    top: calc(78px + env(safe-area-inset-top));
  }
}

@media (max-width: 340px) {
  .top-sessions-grid,
  .card-grid,
  .genre-sessions-grid,
  .dj-sessions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .session-actions {
    gap: 6px;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
  }
}

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

  .genres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .session-actions {
    flex-direction: row;
    align-items: center;
  }

  .session-actions-right {
    justify-content: flex-end;
  }

  .genres-hero-text h2 {
    font-size: 28px;
  }

  .genres-hero {
    gap: 16px;
  }

  .djs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .dj-tile {
    padding: 12px;
  }

  .dj-tile h3 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .dj-tile-meta {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .legal-nav {
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.14em;
    gap: 12px;
  }

  .legal-brand img {
    height: 44px;
  }

  .legal-hero {
    padding-top: 90px;
  }

  .top-sessions-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 240px));
    justify-content: center;
  }


  .hero-scroll {
    display: none;
  }

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

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

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

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

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

  .player-bar:not(.is-minimized) [data-player-artist] {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .player-bar:not(.is-minimized) .player-time {
    font-size: 10px;
  }

  .player-bar:not(.is-minimized) .player-controls {
    gap: 6px;
  }

  .player-bar:not(.is-minimized) .player-actions {
    gap: 8px;
    order: 3;
    width: auto;
    flex: 1 1 auto;
  }

  .player-bar:not(.is-minimized) .player-volume {
    order: 3;
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .player-bar:not(.is-minimized) .player-volume-range {
    width: 80px;
  }

  .player-bar:not(.is-minimized) .player-info {
    flex: 1 1 100%;
    gap: 4px;
  }

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

  .player-actions {
    gap: 8px;
  }

  .player-bar:not(.is-minimized) .player-feedback {
    display: none;
  }

  .hero-callout {
    display: none;
  }

  .top-callout {
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .top-callout-text {
    font-size: 16px;
  }

  .top-callout-highlight {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .install-modal-inner {
    padding: 20px;
  }

  .install-modal-inner img {
    height: 120px;
  }

  .nav-logo {
    height: 42px;
  }

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

  .session-card {
    padding: 10px;
  }

  .session-card p {
    display: none;
  }

  .session-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .session-actions-right {
    width: 100%;
    justify-content: space-between;
  }

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

  .app-swipe-layer {
    padding-bottom: 220px;
  }
}

@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(1400px, 140vw);
    opacity: 0.55;
    transform: translateY(-32px);
    animation: hero-logo-in 2.4s ease forwards;
  }

  .hero-logo {
    margin-top: -18px;
    position: relative;
    z-index: 0;
  }

  .btn-fiesta-hero,
  .btn-fiesta-genres {
    width: 132px;
    height: 132px;
    padding: 0;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fiesta-text {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
    text-align: center;
  }

  .fiesta-bpm {
    font-size: 13px;
    letter-spacing: 0.22em;
    padding: 10px 20px;
    width: fit-content;
    max-width: 100%;
    justify-content: center;
  }

  .fiesta-heart {
    font-size: 28px;
  }

  .fiesta-waves {
    display: none;
  }

  .hero-fiesta {
    width: 100%;
    align-items: center;
    margin: 20px 0 14px;
    transform: translateY(-36px);
  }

  .fiesta-bpm {
    transform: translateY(-18px);
  }

  .fiesta-bpm {
    transform: translateY(-10px);
  }

  .btn-fiesta-hero,
  .btn-fiesta-genres {
    align-self: center;
  }

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

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

  .logo-float {
    top: 64px;
  }

  .hero-simple .hero-content {
    padding-top: 72px;
  }
}

@media (max-width: 520px) {
  .genres-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-actions {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .session-actions-right {
    width: auto;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
  }

  .genres-hero-text h2 {
    font-size: 24px;
  }

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

  .dj-tile {
    padding: 10px;
  }

  .dj-tile h3 {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

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

@media (display-mode: standalone) and (max-width: 980px) {
  .btn-fiesta-hero,
  .btn-fiesta-genres {
    width: 132px;
    height: 132px;
    padding: 0;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-radius: 999px;
    animation: fiesta-speaker 0.72s ease-in-out infinite, fiesta-glow 1.4s ease-in-out infinite,
      fiesta-gradient 2.4s linear infinite;
    transform-origin: center;
    will-change: transform;
    overflow: visible;
    position: relative;
    z-index: 2;
    isolation: isolate;
  }

  .btn-fiesta-hero::before,
  .btn-fiesta-genres::before {
    content: "";
    position: absolute;
    inset: -12%;
    border-radius: 999px;
    border: 1px solid rgba(0, 217, 255, 0.55);
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.35);
    opacity: 0.6;
    animation: fiesta-ring-pulse 1.1s ease-out infinite;
    pointer-events: none;
    transform-origin: center;
    z-index: 0;
  }

  .btn-fiesta-hero::after,
  .btn-fiesta-genres::after {
    display: none;
  }

  .fiesta-text {
    flex-direction: column;
    gap: 2px;
    line-height: 1;
    text-align: center;
  }

  .fiesta-line {
    display: block;
  }

  .hero-fiesta {
    margin: 20px 0 14px;
    gap: 10px;
    transform: translateY(-36px);
  }

  .fiesta-waves {
    display: none;
  }

  .fiesta-bpm {
    transform: translateY(-18px);
  }

  .hero-logo img {
    width: min(1400px, 140vw);
    opacity: 0.55;
    transform: translateY(-32px);
  }

  .hero-logo {
    margin-top: -18px;
    position: relative;
    z-index: 0;
  }

  .hero-fiesta {
    position: relative;
    z-index: 2;
  }

  .top-sessions-grid,
  .card-grid,
  .genre-sessions-grid,
  .dj-sessions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .session-card {
    padding: 10px;
    gap: 8px;
  }

  .session-media {
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    width: 96%;
    justify-self: center;
  }

  .session-card h3 {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }

  .session-card p {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  .session-actions {
    gap: 6px;
    flex-wrap: wrap;
  }

  .session-actions-right {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .icon-btn {
    width: 30px;
    height: 30px;
  }

  .like-count {
    font-size: 10px;
  }

  .session-meta {
    font-size: 9px;
    gap: 6px;
  }

  .swipe-nudge {
    display: inline-flex;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }

  body.is-genres-view .swipe-nudge,
  body.is-dj-view .swipe-nudge,
  body.is-legal-view .swipe-nudge {
    opacity: 0;
  }
}
