:root {
  --bg: #050507;
  --bg-soft: #0b0d10;
  --orange: #ff7b18;
  --orange-soft: #ffb36a;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent-glow: 0 0 18px rgba(255, 123, 24, 0.7);
  --radius-lg: 1.4rem;
  --radius-pill: 999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151515 0, #050507 40%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated background glow */
.page-bg::before,
.page-bg::after {
  content: "";
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(circle at 5% 10%, rgba(255, 123, 24, 0.18), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(255, 123, 24, 0.14), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  animation: bgPulse 16s ease-in-out infinite alternate;
  z-index: -1;
}

.page-bg::after {
  filter: blur(20px);
  opacity: 0.25;
}

@keyframes bgPulse {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.04) translate3d(0, -10px, 0);
  }
  100% {
    transform: scale(1.08) translate3d(0, 10px, 0);
  }
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

/* HERO / BANNER (Facebook-style cover + avatar) */
.hero {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top left, rgba(255, 135, 35, 0.35), transparent 45%),
              radial-gradient(circle at bottom right, rgba(255, 135, 35, 0.15), #050507 60%);
  margin-bottom: 2.5rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
              0 18px 60px rgba(0, 0, 0, 0.85),
              0 0 45px rgba(255, 123, 24, 0.35);
}

/* This acts like the Facebook cover banner */
.hero-banner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05) brightness(0.35);
  transform: scale(1.08);
}

.hero-overlay {
  position: relative;
  padding: 2.3rem 2rem 2.7rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(5, 5, 10, 0.9));
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 820px) {
  .hero-overlay {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.5rem 2.25rem;
  }
}

.hero-main-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(255, 123, 24, 0.2), transparent);
  border: 1px solid rgba(255, 123, 24, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 0.75rem;
  box-shadow: 0 0 12px rgba(255, 123, 24, 0.5);
}

.hero-main-tag span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 123, 24, 0.9);
  animation: livePulse 1.3s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

.hero-title {
  font-family: "Orbitron", system-ui;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 25px rgba(255, 123, 24, 0.8);
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  max-width: 35rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}

.hero-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 2.2rem;
  color: var(--orange-soft);
  opacity: 0.9;
}

.hero-quote span.credit {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

/* Buttons with neon glow / pulse */
.btn-neon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 30% -5%, rgba(255, 255, 255, 0.08), rgba(255, 123, 24, 0.2));
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255, 123, 24, 0.85);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: softPulse 1.9s ease-in-out infinite;
}

.btn-neon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  opacity: 0.9;
}

.btn-neon:hover::before {
  animation: shimmer 0.8s forwards;
}

.btn-neon:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 28px rgba(255, 123, 24, 1);
}

.btn-ghost {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.7rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-main);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 123, 24, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 123, 24, 0.7);
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(255, 123, 24, 0.75);
  }
  50% {
    box-shadow: 0 0 27px rgba(255, 123, 24, 1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* Artist photo side (avatar/logo style) */
.hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

/* This is your “profile picture / logo” */
.artist-photo-wrap {
  position: relative;
  width: min(260px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 30%;
  padding: 5px;
  background: radial-gradient(circle at 20% 0%, var(--orange), transparent 45%),
              radial-gradient(circle at 80% 100%, #ff4b1f, transparent 45%);
  box-shadow: 0 0 25px rgba(255, 123, 24, 0.9);
  animation: float 5.5s ease-in-out infinite;
}

.artist-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  animation: rotateSlow 40s linear infinite;
}

.artist-photo {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.75);
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  transform: scale(1.03);
}

.hero-side-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-socials {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.78rem;
  color: var(--text-main);
  text-decoration: none;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-pill i {
  color: var(--orange-soft);
}

.social-pill:hover {
  border-color: rgba(255, 123, 24, 0.9);
  background: rgba(255, 123, 24, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(255, 123, 24, 0.7);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(1turn);
  }
}

/* CONTENT SECTIONS */
main {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.section-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #181818 0, #060609 40%, #020203 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.75rem 1.6rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9),
              0 0 26px rgba(255, 123, 24, 0.28);
  position: relative;
  overflow: hidden;
}

.section-card::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at top left, rgba(255, 123, 24, 0.1), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}

.section-card-inner {
  position: relative;
  z-index: 1;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Orbitron", system-ui;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title span.bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 123, 24, 0.7), transparent);
  max-width: 140px;
  opacity: 0.7;
}

.section-body {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.8;
}

.section-body p + p {
  margin-top: 0.85rem;
}

/* AUDIO PLAYER */
.track-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 800px) {
  .track-card {
    grid-template-columns: 1fr;
  }
}

.track-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.track-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.track-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.track-title span {
  color: var(--orange-soft);
}

.track-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-player-shell {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 1.1rem;
  background: radial-gradient(circle at 0% 0%, rgba(255, 123, 24, 0.16), rgba(0, 0, 0, 0.95));
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 123, 24, 0.4);
  position: relative;
}

.track-art {
  width: 70px;
  height: 70px;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.9);
  box-shadow: var(--accent-glow);
  flex-shrink: 0;
}

.track-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.track-main-info {
  flex: 1;
  min-width: 0;
}

.track-main-info h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.track-main-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-controls {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
  min-width: 150px;
}

.play-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.2), rgba(255, 123, 24, 0.9));
  box-shadow: 0 0 16px rgba(255, 123, 24, 1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 123, 24, 0.5);
  opacity: 0;
  transform: scale(0.8);
}

.track-player.is-playing .play-btn::before {
  animation: ringPulse 1.2s ease-out infinite;
}

.track-player.is-playing .play-btn::after {
  animation: ringPulse 1.2s ease-out infinite;
  animation-delay: 0.25s;
}

@keyframes ringPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.play-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(255, 123, 24, 1);
}

.play-btn i {
  font-size: 1rem;
  color: #050505;
}

.volume-slider {
  -webkit-appearance: none;
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--accent-glow);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  box-shadow: var(--accent-glow);
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-top: 0.15rem;
}

.eq-bar {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--orange), #ffe0bd);
  opacity: 0.7;
  animation: eqWave 1.2s ease-in-out infinite;
  animation-play-state: paused;
}

.eq-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.eq-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.eq-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.eq-bar:nth-child(5) {
  animation-delay: 0.35s;
}

.track-player.is-playing .eq-bar {
  animation-play-state: running;
}

@keyframes eqWave {
  0%, 100% {
    height: 15%;
  }
  50% {
    height: 100%;
  }
}

.player-status {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.75rem;
}

@media (max-width: 820px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-frame {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 16px rgba(255, 123, 24, 0.35);
}

.video-frame::before {
  content: "";
  display: block;
  padding-bottom: 56.25%; /* 16:9 ratio */
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* FOOTER */
footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer span {
  color: var(--orange-soft);
}
