
:root {
  --bg: #f5f3ff;
  --bg-alt: #ede9fe;
  --bg-soft: #fef3c7;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #6b7280;
  --accent: #8b5cf6;
  --accent-gold: #fbbf24;
  --accent-soft: rgba(139,92,246,0.12);
  --border-subtle: #e5e7eb;
  --radius-lg: 1.25rem;
  --radius-full: 999px;
  --shadow-soft: 0 16px 40px rgba(148,163,184,0.45);
  --shadow-card: 0 18px 45px rgba(148,163,184,0.55);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(251,191,36,0.7), rgba(129,140,248,0.35)),
    radial-gradient(circle at bottom, #f5f3ff, #fff7ed);
}

/* Layout */

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(255,255,255,0.96), rgba(255,255,255,0.9), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(209,213,219,0.9);
  backdrop-filter: blur(12px);
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.55rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(251,191,36,0.9);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(148,163,184,0.8);
  background: radial-gradient(circle at top, rgba(251,191,36,0.7), rgba(59,130,246,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #4c1d95;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.18rem;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.86rem;
}

.nav-links a {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: #374151;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.85);
  color: #111827;
}

.nav-links a.nav-active {
  background: rgba(129,140,248,0.15);
  color: #4c1d95;
  font-weight: 600;
}

.nav-links a.nav-cta {
  border: 1px solid rgba(91,33,182,0.9);
  background: radial-gradient(circle at top, rgba(251,191,36,0.98), rgba(129,140,248,0.98));
  color: #111827;
  box-shadow: 0 12px 28px rgba(148,163,184,0.75);
}

.nav-links a.nav-cta.nav-active {
  box-shadow: 0 14px 34px rgba(129,140,248,0.8);
}

.site-main {
  flex: 1;
}


/* Trixie photo album */
.trixie-album {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(191,219,254,0.9));
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px rgba(15,23,42,0.35);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.album-pages {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.album-page {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px) rotate(1deg);
  transition: opacity 260ms ease, transform 260ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.album-page img {
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(15,23,42,0.45);
  object-fit: contain;
}

.album-page.album-page-active {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.album-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.album-nav {
  border-radius: 999px;
  border: none;
  padding: 0.45rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  background: radial-gradient(circle at 30% 0%, rgba(249,250,251,0.98), rgba(191,219,254,0.98));
  box-shadow: 0 10px 26px rgba(15,23,42,0.45);
}

.album-nav:active {
  transform: translateY(1px);
}

/* "What's Next" glass button variants */
.nav-cta.nav-whats-next {
  margin-left: 0.35rem;
  border-color: rgba(209,213,219,0.95);
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.95), transparent 60%),
    linear-gradient(135deg, rgba(249,250,251,0.95), rgba(219,234,254,0.98), rgba(254,249,195,0.98));
  color: #111827;
  box-shadow: 0 14px 36px rgba(148,163,184,0.9);
}

.nav-cta.nav-whats-next:hover {
  filter: saturate(1.15);
}

.btn-whats-next {
  border-radius: 999px;
  border: 2px solid rgba(56,189,248,0.95);
  padding: 0.55rem 1.4rem;
  background: rgba(124,58,237,0.95); /* purple */
  color: rgba(56,189,248,1.0);       /* blue letters */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px rgba(15,23,42,0.45);
}

.btn-whats-next:hover {
  filter: brightness(1.05) saturate(1.1);
}
.hero {
  position: relative;
  padding: 2.6rem 1.25rem 2.2rem;
  border-bottom: 1px solid rgba(209,213,219,0.85);
  background-image:
    radial-gradient(circle at top, rgba(251,191,36,0.7), rgba(129,140,248,0.5)),
    url("../images/earth_sunrise_hero.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #0f172a;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1.8rem;
}

.hero-main {
  max-width: 640px;
}

.kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f59e0b;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.55rem);
  margin: 0.4rem 0 0.4rem;
  line-height: 1.1;
  color: #111827;
}

.hero-title span {
  color: #4c1d95;
}

.hero-lede {
  font-size: 0.98rem;
  max-width: 35rem;
  color: #374151;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.hero-pill {
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.9);
  background: rgba(255,255,255,0.9);
  font-size: 0.75rem;
}

.hero-card {
  position: relative;
  padding: 1.35rem 1.4rem;
  border-radius: 1.6rem;
  background: radial-gradient(circle at top left, rgba(251,191,36,0.5), rgba(255,255,255,0.97));
  border: 1px solid rgba(209,213,219,0.95);
  box-shadow: 0 22px 45px rgba(148,163,184,0.75);
}

.hero-card h2 {
  font-size: 1.05rem;
  margin-top: 0;
}

.hero-card p {
  font-size: 0.88rem;
  margin: 0.3rem 0;
}

.hero-logo-wrap {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-logo-wrap img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(251,191,36,0.9);
  box-shadow: 0 12px 30px rgba(148,163,184,0.85);
  object-fit: cover;
}

.hero-logo-caption {
  font-size: 0.78rem;
  color: #4b5563;
}

.hero-video {
  margin-top: 0.8rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 18px 44px rgba(148,163,184,0.9);
}

.hero-video video {
  display: block;
  width: 100%;
  height: auto;
}

/* Sections */

.section {
  padding: 2.2rem 1.25rem 2.3rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.section-header .h2 {
  margin: 0.2rem 0 0.4rem;
}

.h2 {
  font-size: 1.6rem;
  line-height: 1.25;
}

.lede {
  font-size: 0.96rem;
  color: #374151;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  background: radial-gradient(circle at top left, rgba(221,214,254,0.8), rgba(255,255,255,0.98));
  border: 1px solid rgba(209,213,219,0.95);
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin-top: 0;
}

.h3 {
  font-size: 1.1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.brainstorm-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.brainstorm-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(221,214,254,0.9);
  border: 1px solid rgba(129,140,248,0.6);
  font-size: 0.8rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #facc15, #fbbf24);
  border-color: #f59e0b;
  color: #111827;
  box-shadow: 0 18px 44px rgba(148,163,184,0.85);
}

.btn-primary:hover {
  box-shadow: 0 20px 50px rgba(129,140,248,0.9);
}

.btn-ghost {
  background: rgba(255,255,255,0.95);
  border-color: rgba(148,163,184,0.8);
  color: #374151;
}

.btn-ghost:hover {
  border-color: rgba(91,33,182,0.9);
}

/* Song & video lists */

.song-list,
.video-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.song-row,
.video-row {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(221,239,253,0.95), rgba(255,255,255,0.98));
  box-shadow: 0 12px 30px rgba(148,163,184,0.7);
}

.song-art img,
.video-art img {
  width: 100%;
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(148,163,184,0.75);
}

.song-info h3,
.video-info h3 {
  margin: 0 0 0.3rem;
}

.song-info p,
.video-info p {
  margin: 0.15rem 0;
  font-size: 0.88rem;
}

.song-meta,
.video-meta-text {
  font-size: 0.8rem;
  color: #6b7280;
}

.song-links,
.video-links {
  font-size: 0.84rem;
}

/* Marquee */

.marquee {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(191,219,254,0.9);
  background: radial-gradient(circle at top left, rgba(221,239,253,0.96), rgba(255,255,255,0.98));
  box-shadow: 0 16px 32px rgba(148,163,184,0.7);
  margin-bottom: 1.6rem;
}

.marquee-track {
  display: flex;
  gap: 1.4rem;
  padding: 0.75rem 1.4rem;
  animation: marquee 26s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.marquee-item img {
  width: 64px;
  height: 64px;
  border-radius: 0.9rem;
  box-shadow: 0 8px 20px rgba(148,163,184,0.8);
  object-fit: cover;
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Forms */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.8rem;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
  color: #4b5563;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.5rem 0.55rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(209,213,219,0.95);
  background: rgba(255,255,255,0.96);
  color: #111827;
  font-size: 0.86rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.brainstorm-notes {
  width: 100%;
  min-height: 220px;
  border-radius: 0.9rem;
  border: 1px solid rgba(209,213,219,0.95);
  background: rgba(255,255,255,0.96);
  color: #111827;
  padding: 0.75rem 0.8rem;
  font-size: 0.86rem;
  resize: vertical;
}

/* Tiers */

.tiers-grid {
  align-items: stretch;
}

.tier-card ul {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.tier-card p {
  font-size: 0.9rem;
}

/* Trixie gallery */

.trixie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.trixie-card {
  border-radius: 1rem;
  padding: 0.75rem;
  background: radial-gradient(circle at top left, rgba(221,214,254,0.95), rgba(255,255,255,0.98));
  border: 1px solid rgba(209,213,219,0.95);
  box-shadow: 0 10px 26px rgba(148,163,184,0.7);
  font-size: 0.86rem;
}

.trixie-card-placeholder {
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.9);
  border: 1px dashed rgba(148,163,184,0.9);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.6rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(209,213,219,0.9);
  background: radial-gradient(circle at top, #e0e7ff, #fef3c7 55%);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem 1.2rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #4b5563;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: #4b5563;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .song-row,
  .video-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    right: 1.2rem;
    top: 3.1rem;
    background: rgba(255,255,255,0.96);
    border-radius: 0.9rem;
    border: 1px solid rgba(209,213,219,0.95);
    padding: 0.4rem 0.4rem;
    box-shadow: 0 16px 36px rgba(148,163,184,0.8);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 190px;
    z-index: 40;
  }
  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.1rem;
  }
}


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

.trixie-card {
  text-align: center;
}

.trixie-card img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.45);
  border: 1px solid rgba(148,163,184,0.7);
}

.trixie-video-block {
  margin-top: 2rem;
}

.trixie-video-frame {
  margin-top: 0.75rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.55);
  border: 1px solid rgba(148,163,184,0.7);
}

.trixie-video-frame iframe,
.trixie-video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.proto-logo-video,
.songs-logo-card {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.proto-logo-video video,
.songs-logo-card video {
  width: 100%;
  max-width: 360px;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.55);
  border: 1px solid rgba(148,163,184,0.7);
}


/* Mission highlight on home page */
.section-mission-highlight {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.mission-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.9rem;
  background:
    radial-gradient(circle at top left, rgba(251,191,36,0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(129,140,248,0.18), transparent 65%),
    rgba(255,255,255,0.96);
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 20px 55px rgba(15,23,42,0.35);
}

.mission-card .h2 {
  margin-bottom: 0.6rem;
}

.mission-card .lede {
  font-size: 0.98rem;
}


.song-version-list {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.song-version-list li {
  margin-bottom: 0.2rem;
}

.version-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ===== v12 Song Page (Suno-style) ===== */
.song-shell{max-width:1100px;margin:0 auto;padding:18px}
.song-head{display:grid;grid-template-columns:260px 1fr;gap:18px;align-items:start}
.song-cover{width:100%;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.25)}
.song-cover img{display:block;width:100%;height:auto}
.song-meta h1{margin:0 0 6px 0;font-size:34px;line-height:1.1}
.song-meta .song-album{opacity:.85;margin:0 0 14px 0}
.song-actions{display:flex;flex-wrap:wrap;gap:10px;margin:12px 0 10px}
.btn-row{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.song-audio{margin:8px 0 10px}
.song-audio audio{width:100%}
.song-lyrics{margin-top:18px}
.song-lyrics h2{margin:0 0 10px 0;font-size:18px}
.lyrics-frame{width:100%;height:720px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:rgba(0,0,0,.18)}
.song-split{display:grid;grid-template-columns: 1.2fr .8fr;gap:18px;margin-top:18px}
@media (max-width: 980px){.song-head{grid-template-columns:1fr}.song-split{grid-template-columns:1fr}.lyrics-frame{height:560px}}
.song-card{border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.22);border-radius:18px;padding:14px}
.song-card h3{margin:0 0 10px 0;font-size:16px}
.small-note{opacity:.85;font-size:13px;line-height:1.4}
.social-links{display:flex;flex-wrap:wrap;gap:10px}
.social-links a{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:14px;border:1px solid rgba(255,255,255,.14);text-decoration:none}
.social-links a:hover{border-color:rgba(255,255,255,.26)}
.comment-box textarea{width:100%;min-height:120px;border-radius:14px;border:1px solid rgba(255,255,255,.14);background:rgba(0,0,0,.28);color:inherit;padding:10px}
.comment-box .btn{margin-top:10px}

/* ===== v12 NewEarth-Songs (Jukebox list) ===== */
.jukebox-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
@media (max-width:980px){.jukebox-grid{grid-template-columns:1fr}}
.jukebox-album{border:1px solid rgba(255,255,255,.12);border-radius:18px;overflow:hidden;background:rgba(0,0,0,.22)}
.jukebox-album .jukebox-title{padding:12px 14px;font-weight:800}
.jukebox-album[data-letter="A"] .jukebox-title{background:rgba(255,212,59,.92);color:#111}
.jukebox-album[data-letter="B"] .jukebox-title{background:rgba(90,195,255,.92);color:#111}
.jukebox-album[data-letter="C"] .jukebox-title{background:rgba(255,79,98,.92);color:#111}
.jukebox-list{padding:12px;display:grid;gap:10px}
.jukebox-row{display:grid;grid-template-columns:64px 64px 1fr;gap:12px;align-items:center;padding:12px;border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.28);cursor:pointer;min-height:84px}
.jukebox-row:hover{border-color:rgba(255,255,255,.22);background:rgba(0,0,0,.34)}
.jukebox-code{font-weight:900;font-family:ui-monospace,Menlo,Consolas,monospace;border:1px solid rgba(255,255,255,.14);border-radius:14px;padding:10px;text-align:center;background:rgba(20,22,30,.72);font-size:18px;letter-spacing:.4px;line-height:1.05}
.jukebox-cover{width:64px;height:64px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.25)}
.jukebox-cover img{width:100%;height:100%;object-fit:cover}
.jukebox-album[data-letter="A"] .jukebox-code{background:rgba(255,212,59,.72);color:#111;border-color:rgba(255,255,255,.22)}
.jukebox-album[data-letter="B"] .jukebox-code{background:rgba(90,195,255,.72);color:#06111a;border-color:rgba(255,255,255,.22)}
.jukebox-album[data-letter="C"] .jukebox-code{background:rgba(255,79,98,.72);color:#1a0205;border-color:rgba(255,255,255,.22)}


/* ===== v12 Next Big Hit list tweaks ===== */
.nbh-row{display:grid;grid-template-columns:64px 1fr auto;gap:12px;align-items:center;padding:12px;border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.22)}
.nbh-row .nbh-cover{width:56px;height:56px;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.25)}
.nbh-row .nbh-cover img{width:100%;height:100%;object-fit:cover}
.nbh-row .nbh-title{font-weight:750}
.nbh-row .nbh-sub{opacity:.8;font-size:12px;margin-top:4px}


/* Download/Sharing disclaimer box */
.disclaimer-box{background:rgba(221,214,254,0.35);border:1px solid rgba(124,58,237,0.35);padding:12px 14px;border-radius:16px;color:#4c1d95;}
.disclaimer-box strong{display:block;margin-bottom:6px;}
.disclaimer-box p{margin:6px 0;font-size:0.92rem;line-height:1.35;}

/* === NECM V17 Fixes (auto-added) === */
/* Music page vertical list */
.jukebox-row-vertical{ display:flex !important; gap:14px !important; align-items:flex-start !important; padding:12px 10px; border-radius:14px; }
.jukebox-row-vertical:hover{ background: rgba(255,255,255,.04); }
.jukebox-row-vertical .jukebox-meta{ flex:1; min-width:0; }
.jukebox-title-line{ font-weight:900; font-size:16px; }
.jukebox-sub{ opacity:.85; font-size:12px; margin-top:4px; }
.jukebox-desc{ opacity:.85; font-size:12px; margin-top:10px; line-height:1.5; }
.jukebox-actions{ margin-top:10px; display:flex; gap:10px; flex-wrap:wrap; }
.btn-sm{ padding:8px 10px !important; font-size:12px !important; border-radius:10px !important; }
.tag{ display:inline-flex; align-items:center; margin-left:8px; padding:3px 8px; border-radius:999px; font-size:11px; border:1px solid rgba(255,255,255,.14); }
.coming-soon{ opacity:.55; pointer-events:none; }

/* === NECM V18 Fixes (auto-added) === */

/* Remove the oval/circle badge behind the logo (show logo only) */
.brand-mark{
  width:auto !important;
  height:auto !important;
  border:none !important;
  border-radius:0 !important;
  overflow:visible !important;
  box-shadow:none !important;
  background:transparent !important;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-mark img{
  width:84px !important;
  height:auto !important;
  object-fit:contain !important;
}
@media (max-width: 720px){
  .brand-mark img{ width:64px !important; }
}

/* Restore Sign In / Become Member buttons (top-left) */
.site-header{ position:relative; }
.auth-links{
  position:absolute;
  left:12px;
  top:10px;
  display:flex;
  gap:10px;
  z-index:50;
}
.auth-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  line-height:1;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(0,0,0,.18);
  color:var(--text);
  backdrop-filter: blur(10px);
}
.auth-link:hover{ background:rgba(0,0,0,.26); }
.auth-primary{
  background:rgba(37,99,235,.92);
  border-color:rgba(37,99,235,.92);
  color:#fff;
}
.auth-primary:hover{ background:rgba(37,99,235,1); }

@media (max-width: 720px){
  .auth-links{ left:10px; top:8px; gap:8px; }
  .auth-link{ padding:7px 9px; font-size:11px; }
}

/* Song page: cover should fit the screen */
.song-cover{
  max-width:520px;
  margin:0 auto;
}
.song-cover img{
  max-height:42vh;
  object-fit:contain;
}
@media (max-width: 720px){
  .song-cover img{ max-height:34vh; }
}

/* Radio page: cover should fit the screen and keep controls visible */
.radio-cover{
  width:100%;
  max-width:520px;
  max-height:38vh;
  height:auto;
  object-fit:contain;
  display:block;
  margin:0 auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
}
@media (max-width: 720px){
  .radio-cover{ max-height:30vh; max-width:100%; }
}

/* NECM-TV: make it look like a TV set */
.tv-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:1.2rem;
}
@media (max-width: 900px){
  .tv-grid{ grid-template-columns: 1fr; }
}
.tv-set{
  display:grid;
  grid-template-columns: 1fr 180px;
  gap:14px;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(17,24,39,.92), rgba(2,6,23,.92));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
@media (max-width: 720px){
  .tv-set{ grid-template-columns: 1fr; }
}
.tv-screen{
  border-radius:18px;
  background: radial-gradient(circle at top left, rgba(255,255,255,.10), rgba(0,0,0,.65));
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  min-height: 48vh;
}
@media (max-width: 720px){
  .tv-screen{ min-height: 34vh; }
}
.tv-screen-inner{ width:100%; height:100%; display:flex; flex-direction:column; justify-content:center; }
.tv-iframe, .tv-video{
  width:100%;
  height:100%;
  min-height:48vh;
  border:0;
  display:block;
}
@media (max-width: 720px){
  .tv-iframe, .tv-video{ min-height:34vh; }
}
.tv-screen-msg{
  padding:18px;
  text-align:center;
  color:#fff;
}
.tv-local-hint{
  padding:10px 12px;
  font-size:12px;
  line-height:1.35;
  border-top:1px solid rgba(255,255,255,.10);
}
.tv-side{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:10px;
  color:#fff;
}
.tv-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}
.tv-dial{
  width:110px;
  height:110px;
  border-radius:999px;
  margin:6px auto 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 10px 22px rgba(0,0,0,.35);
  position:relative;
}
.tv-dial:after{
  content:"";
  position:absolute;
  width:8px;
  height:44px;
  border-radius:999px;
  left:50%;
  top:10px;
  transform:translateX(-50%);
  background:rgba(255,255,255,.55);
}
.tv-list{
  list-style:none;
  padding-left:0;
  margin:0.6rem 0 0;
}
.tv-item{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  cursor:pointer;
  margin-bottom:10px;
}
.tv-item:hover{ background: rgba(0,0,0,.18); }
.tv-chip{
  font-size:11px;
  font-weight:900;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  opacity:.95;
}
.tv-title{ font-weight:800; }

/* === NECM V19 Fixes (auto-added) === */
/* Make NECM logo larger (about 1.5–2x) */
.brand-mark img{
  width:128px !important;
  height:auto !important;
}
@media (max-width: 720px){
  .brand-mark img{ width:92px !important; }
}

/* Radio controls: wrap on small screens */
.player-controls{ flex-wrap:wrap; }
.player-controls .btn{ margin-bottom:8px; }

/* === NECM V20 Fixes (auto-added) === */
/* Album section headers + color coding (Music page) */
.album-header{
  margin:18px 0 10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.album-title{ font-weight:950; font-size:18px; letter-spacing:.02em; }
.album-sub{ opacity:.85; font-size:12px; margin-top:4px; }

.album-yellow{ border-left:6px solid #fbbf24 !important; background: rgba(251,191,36,.08) !important; }
.album-red{    border-left:6px solid #ef4444 !important; background: rgba(239,68,68,.07) !important; }
.album-blue{   border-left:6px solid #3b82f6 !important; background: rgba(59,130,246,.07) !important; }
.album-green{  border-left:6px solid #22c55e !important; background: rgba(34,197,94,.07) !important; }

/* Put the description on the same long action line (wraps on mobile) */
.jukebox-actions{ align-items:center; }
.jukebox-action-desc{
  display:inline-block;
  margin-left:10px;
  opacity:.85;
  font-size:12px;
  line-height:1.35;
  flex: 1 1 280px;
  min-width: 180px;
}
@media (max-width: 720px){
  .jukebox-action-desc{ flex-basis: 100%; margin-left:0; margin-top:8px; }
}

/* NECM-TV now-playing bar + active playlist item */
.tv-nowbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin: 10px 0 14px;
}
.tv-nowtitle{
  font-weight:950;
  letter-spacing:.01em;
}
.tv-nowcontrols{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.tv-item.is-active{
  outline: 2px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
}
