:root {
  --bg: #060606;
  --bg-soft: #111111;
  --panel: rgba(17, 17, 17, 0.88);
  --panel-strong: rgba(10, 10, 10, 0.95);
  --text: #f4f0f1;
  --muted: #b5a8ab;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #a10824;
  --accent-bright: #ff274f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(161, 8, 36, 0.14), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

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

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

.site-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  padding: 7px 10px;
  background: var(--accent);
  color: white;
  border-radius: 7px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a,
.player-actions a,
.contact-card a,
.footer-links a {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.site-nav a:hover,
.contact-card a:hover,
.footer-links a:hover {
  color: var(--accent-bright);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  gap: 36px;
  min-height: 82vh;
  margin-top: 22px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(7, 7, 7, 0.94);
  box-shadow: var(--shadow);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 8%, rgba(5, 5, 5, 0.74) 50%, rgba(5, 5, 5, 0.95) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.92));
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(1);
}

.hero-copy,
.player-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: end;
  max-width: 720px;
  padding-top: 70px;
  animation: rise 600ms ease both;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--accent-bright);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.hero h1,
.section-heading h2,
.player-panel h2,
.info-card h3,
.artist-card h3,
.release-card h3,
.contact-card h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(5rem, 14vw, 10rem);
}

.hero-subtitle {
  margin: 10px 0 18px;
  color: var(--accent-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0.04em;
}

.hero-text,
.section-heading p,
.player-panel p,
.info-card p,
.artist-card p,
.release-card p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 700px;
  font-size: 1.08rem;
}

.player-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.player-panel h2 {
  font-size: 3rem;
}

.player-panel p {
  max-width: 44ch;
  font-size: 1.02rem;
}

.now-playing-card {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.now-playing-art {
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(114, 82, 255, 0.14);
}

.now-playing-copy {
  min-width: 0;
}

.now-playing-kicker {
  margin-bottom: 8px;
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.now-playing-copy h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.now-playing-meta,
.now-playing-album {
  margin: 10px 0 0;
  max-width: none !important;
}

.now-playing-meta {
  color: var(--text);
  font-size: 1.06rem !important;
  font-weight: 700;
}

.now-playing-album {
  color: var(--muted);
  font-size: 0.96rem !important;
}

.player-embed-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(120, 110, 255, 0.28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(6, 6, 12, 0.96), rgba(10, 8, 18, 0.94));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(98, 80, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
  isolation: isolate;
  animation: playerFloat 5s ease-in-out infinite;
}

.player-embed-shell::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -26px;
  height: 82px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 55%, rgba(40, 145, 255, 0.82), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(106, 76, 255, 0.78), transparent 38%),
    radial-gradient(circle at 82% 55%, rgba(214, 52, 255, 0.78), transparent 32%);
  filter: blur(30px);
  opacity: 0.96;
  transform-origin: center;
  animation: ghostPulse 3.8s ease-in-out infinite alternate;
}

.player-embed-shell::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -40px;
  height: 32px;
  z-index: -2;
  border-radius: 999px;
  background: rgba(70, 35, 200, 0.42);
  filter: blur(26px);
  opacity: 0.82;
  animation: underShadow 4.2s ease-in-out infinite alternate;
}

.player-embed {
  position: relative;
  display: block;
  width: 100%;
  min-height: 230px;
  height: 230px;
  border: 0;
  border-radius: 22px;
  background: #050507;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.player-actions a,
.contact-card a {
  color: white;
  font-weight: 700;
}

.player-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.player-actions a:hover {
  border-color: rgba(255, 39, 79, 0.5);
  color: var(--accent-bright);
  transform: translateY(-1px);
}

/* Custom audio player */
.custom-player {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-top: 24px;
  border: 1px solid rgba(120, 110, 255, 0.28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(6, 6, 12, 0.96), rgba(10, 8, 18, 0.94));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(98, 80, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
  isolation: isolate;
  animation: playerFloat 5s ease-in-out infinite;
}

.custom-player::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -26px;
  height: 82px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 55%, rgba(40, 145, 255, 0.82), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(106, 76, 255, 0.78), transparent 38%),
    radial-gradient(circle at 82% 55%, rgba(214, 52, 255, 0.78), transparent 32%);
  filter: blur(30px);
  opacity: 0.96;
  transform-origin: center;
  animation: ghostPulse 3.8s ease-in-out infinite alternate;
}

.custom-player::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -40px;
  height: 32px;
  z-index: -2;
  border-radius: 999px;
  background: rgba(70, 35, 200, 0.42);
  filter: blur(26px);
  opacity: 0.82;
  animation: underShadow 4.2s ease-in-out infinite alternate;
}

.cp-btn {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, transform 100ms ease;
}

.cp-btn:hover {
  background: var(--accent-bright);
  transform: scale(1.06);
}

.cp-btn svg {
  width: 22px;
  height: 22px;
}

.cp-icon-stop { display: none; }

.custom-player.playing .cp-icon-play { display: none; }
.custom-player.playing .cp-icon-stop { display: block; }
.custom-player.playing .cp-btn { background: var(--accent-bright); }

.cp-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cp-live-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.custom-player.buffering .cp-live-badge {
  animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.cp-status {
  font-size: 0.88rem;
  color: var(--muted);
}

.cp-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cp-vol-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}

.cp-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.cp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
}

.cp-vol-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
  border: none;
}

.section {
  margin-top: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.section-heading p {
  max-width: 720px;
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.info-card,
.artist-card,
.release-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.info-card,
.contact-card {
  padding: 24px;
}

.card-tag,
.card-meta {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-bright);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

.info-card h3,
.artist-card h3,
.release-card h3,
.contact-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.artist-card,
.release-card {
  display: grid;
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 220ms ease, filter 220ms ease;
}

.artist-card-body {
  padding: 18px;
}

.artist-card:hover img,
.release-card:hover img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.release-card div {
  padding: 18px;
}

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

.address-card p {
  color: var(--text);
  font-weight: 500;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.85);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ghostPulse {
  0% {
    transform: scaleX(0.94) scaleY(0.92) translateY(0);
    opacity: 0.72;
    filter: blur(24px);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1.1) scaleY(1.08) translateY(7px);
    opacity: 1;
    filter: blur(36px);
  }
}

@keyframes underShadow {
  0% {
    transform: scaleX(0.96);
    opacity: 0.55;
  }
  100% {
    transform: scaleX(1.08);
    opacity: 0.9;
  }
}

@keyframes playerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1100px) {
  .four-up,
  .five-up,
  .release-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .player-panel p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 20px, 1280px);
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .brand-text {
    display: none;
  }

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

  .hero-copy {
    padding-top: 24px;
  }
}

@media (max-width: 620px) {
  .four-up,
  .five-up,
  .release-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .player-panel {
    padding: 22px;
  }

  .now-playing-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .now-playing-art {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .player-embed-shell {
    padding: 12px;
  }

  .player-embed {
    min-height: 230px;
    height: 230px;
  }

  .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-subtitle {
    line-height: 1;
  }
}
