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

html {
  font-family: "Helvetica Regular", Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  width: 1.5rem;
  height: 1.5rem;
}

.brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:hover { transform: scale(1.04); }

.btn-light {
  background: #ffffff;
  color: #0a0a0a;
}

.btn-dark {
  background: #1a1a1a;
  color: #ffffff;
}

.nav-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.nav-link:hover { color: white; }

/* Hero card */
.hero {
  padding: 5rem 1rem 2rem;
}

.hero-card {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(226, 232, 240, 0.18);
  animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-text-block {
  position: relative;
  z-index: 2;
  padding: 3rem;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-link {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.hero-link:hover { text-decoration: underline; }

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.dot.active { background: #ffffff; }

.hero-credit {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-credit span {
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Music row */
.music {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
}

.music-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.music-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.music-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: rollTracks 40s linear infinite;
}

.music-marquee:hover .music-track {
  animation-play-state: paused;
}

@keyframes rollTracks {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.track-card {
  flex: 0 0 300px;
  max-width: 300px;
}

@media (max-width: 640px) {
  .track-card {
    flex: 0 0 80vw;
    max-width: 80vw;
  }
}

.track-card iframe {
  border-radius: 12px !important;
}

/* Video row */
.videos {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 1rem 3rem;
}

.video-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.video-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: rollTracks 45s linear infinite;
}

.video-marquee:hover .video-track {
  animation-play-state: paused;
}

.video-card {
  position: relative;
  flex: 0 0 200px;
  max-width: 200px;
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  overflow: hidden;
  background: #111;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 35px rgba(226, 232, 240, 0.18);
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vid-play {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0a;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: transform 0.2s;
}

.vid-play:hover { transform: scale(1.1); }
.video-card.playing .vid-play { opacity: 0; pointer-events: none; }

@media (max-width: 640px) {
  .video-card {
    flex: 0 0 60vw;
    max-width: 60vw;
  }
}

/* Shared big title */
.big-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Never stop listening */
.listen {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.listen-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.qr {
  width: 140px;
  height: 140px;
  border-radius: 0.75rem;
  background: white;
  padding: 6px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.qr-link:hover .qr { transform: scale(1.05); }

.listen-note {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 18rem;
}

.listen-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vinyl-img {
  width: clamp(220px, 32vw, 380px);
  height: auto;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 45px rgba(226, 232, 240, 0.35));
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 58%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 58%, transparent 72%);
}

/* About / Meet the artist */
.about {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(226, 232, 240, 0.2);
}

.about-blurb {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-chip {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s, background 0.25s;
}

.social-chip:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-brand .logo {
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 767px) {
  .listen, .about {
    grid-template-columns: 1fr;
  }
  .listen-row { flex-direction: column; align-items: flex-start; }
  .about-img { height: 280px; }
}

/* Video lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(6px);
}

.video-modal.open { display: flex; }

.video-modal video {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
}

.modal-close:hover { background: rgba(255, 255, 255, 0.28); }

/* Edit Helper */
.edit-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #22c55e;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, background 0.2s;
  z-index: 40;
}

.edit-btn:hover {
  background: #16a34a;
  transform: scale(1.1);
}

.edit-btn:active { transform: scale(0.95); }

.edit-helper {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  background: #22c55e;
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  max-width: 20rem;
  z-index: 40;
  font-size: 0.75rem;
}

.edit-helper.hidden { display: none; }

.edit-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.edit-text {
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.edit-copy {
  width: 100%;
  background: #16a34a;
  color: white;
  border: none;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
}

.edit-copy:hover { background: #15803d; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility */
@media (max-width: 767px) {
  .hidden-mobile { display: none !important; }

  /* Header — keep tidy + tappable */
  .header { padding: 0.85rem 0.85rem; }
  .logo-section { gap: 0.4rem; }
  .logo { width: 1.2rem; height: 1.2rem; }
  .brand { font-size: 0.7rem; letter-spacing: 0.03em; white-space: nowrap; }
  .nav { gap: 0.4rem; }
  .btn { padding: 0.5rem 0.85rem; font-size: 0.78rem; }

  /* Hero */
  .hero { padding: 4.5rem 0.75rem 1.5rem; }
  .hero-card {
    min-height: 70vh;
    border-radius: 1.25rem;
    align-items: flex-start;
  }
  .hero-bg { object-position: center 20%; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.85) 100%
    );
  }
  .hero-text-block {
    padding: 2rem 1.5rem;
    margin-top: auto;
    padding-bottom: 4.5rem;
  }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-actions { gap: 1rem; }
  .hero-credit { display: none; }
  .hero-dots { bottom: 1.25rem; }

  /* Sections — tighter padding */
  .videos { padding: 0.5rem 0 2.5rem; }
  .music { padding: 2rem 0 3rem; }
  .music-heading { font-size: 1.3rem; margin-bottom: 1.5rem; }
  .listen, .about { padding: 2.5rem 1.25rem; gap: 1.75rem; }
  .big-title { font-size: 2rem; }
  .about-blurb { font-size: 1rem; }

  /* Centre the Never Stop Listening + Meet the Artist blocks */
  .listen { text-align: center; }
  .listen-row { flex-direction: column; align-items: center; }
  .listen-note { text-align: center; }
  .about { text-align: center; }
  .about-blurb { margin-left: auto; margin-right: auto; }

  /* Card sizes for thumb-swiping */
  .track-card { flex: 0 0 72vw; max-width: 72vw; }
  .video-card { flex: 0 0 44vw; max-width: 44vw; }

  .vinyl-img { width: 70vw; }
  .qr { width: 120px; height: 120px; }
  .listen-note { max-width: 100%; }

  /* Footer */
  .footer { padding: 2rem 1.25rem; }
  .socials { gap: 0.75rem; }
}

@media (max-width: 380px) {
  .header { padding: 0.75rem 0.7rem; }
  .logo { width: 1.05rem; height: 1.05rem; }
  .brand { font-size: 0.62rem; }
  .btn { padding: 0.45rem 0.7rem; font-size: 0.72rem; }
  .nav { gap: 0.35rem; }
  .hero-card { min-height: 75vh; }
}
