/* ============================================================
   NMC COMPONENTS — All UI Components
   Naira Music Cartel WordPress Theme
   ============================================================ */

/* ----------------------------------------------------------
   CONTAINER ALIAS — .nmc-container mirrors .container
   ---------------------------------------------------------- */
.nmc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------------------------
   ARCHIVE PAGES — .nmc-archive-*
   ---------------------------------------------------------- */
.nmc-archive-header {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--nmc-grey);
  margin-bottom: 40px;
}

.nmc-archive-header__label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nmc-gold);
  margin-bottom: 16px;
}

.nmc-archive-header__title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.nmc-archive-header__sub {
  font-size: 1rem;
  color: var(--nmc-grey-text);
  letter-spacing: 2px;
}

.nmc-archive-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--nmc-grey-text);
}

/* ----------------------------------------------------------
   ARTIST GRID — .nmc-artist-grid
   ---------------------------------------------------------- */
.nmc-artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  padding-bottom: 80px;
}

.nmc-archive-artists {
  min-height: 80vh;
}

/* ----------------------------------------------------------
   CTA BUTTON — .cta
   Wipe fill animation on hover
   ---------------------------------------------------------- */
.cta {
  display: inline-block;
  border: 1px solid var(--nmc-gold);
  color: var(--nmc-gold);
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  cursor: pointer;
  background: transparent;
  text-align: center;
  white-space: nowrap;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--nmc-gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.cta:hover {
  color: var(--nmc-black);
}

.cta:hover::after {
  transform: translateX(0);
}

.cta--outline-white {
  border-color: var(--nmc-white);
  color: var(--nmc-white);
}

.cta--outline-white::after {
  background: var(--nmc-white);
}

.cta--outline-white:hover {
  color: var(--nmc-black);
}

.cta--sm {
  padding: 10px 20px;
  font-size: 0.7rem;
}


/* Split-text fallback — ensure letters are visible if GSAP is slow */
.split-text span {
  display: inline-block;
  opacity: 1;
}

/* ----------------------------------------------------------
   HERO — .nmc-hero
   ---------------------------------------------------------- */
.nmc-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.nmc-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nmc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.nmc-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.nmc-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.nmc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  z-index: 1;
}

.nmc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.nmc-hero h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 32px;
  line-height: 1;
}

.nmc-hero h1 .accent {
  color: var(--nmc-gold);
}

.nmc-hero__subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nmc-grey-text);
  margin-bottom: 48px;
}

.nmc-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   ARTIST CARD — .nmc-artist-card
   ---------------------------------------------------------- */
.nmc-artist-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nmc-artist-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.nmc-artist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.nmc-artist-card:hover .nmc-artist-card__img img {
  transform: scale(1.08);
}

.nmc-artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 30%, transparent 70%);
  pointer-events: none;
}

.nmc-artist-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.nmc-artist-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0;
}

.nmc-artist-card p {
  font-size: 0.8rem;
  color: var(--nmc-grey-text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nmc-artist-card__tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nmc-gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 3px 8px;
  margin-top: 8px;
}

/* ----------------------------------------------------------
   TRACK CARD — .nmc-track-card
   ---------------------------------------------------------- */
.nmc-track-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--nmc-grey);
  transition: background var(--transition-fast);
  cursor: pointer;
}

.nmc-track-card:hover {
  background: var(--nmc-charcoal);
}

.nmc-track-card__number {
  font-size: 0.75rem;
  color: var(--nmc-grey-text);
  min-width: 20px;
  text-align: center;
}

.nmc-track-card__artwork {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.nmc-track-card__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nmc-track-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.6);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nmc-track-card:hover .nmc-track-card__play {
  opacity: 1;
}

.nmc-track-card__info {
  flex: 1;
  min-width: 0;
}

.nmc-track-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.nmc-track-card__artist {
  font-size: 0.75rem;
  color: var(--nmc-grey-text);
}

.nmc-track-card__duration {
  font-size: 0.75rem;
  color: var(--nmc-grey-text);
  min-width: 35px;
  text-align: right;
}

/* Play button circle */
.btn-play-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--nmc-gold);
  background: transparent;
  color: var(--nmc-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.btn-play-circle:hover {
  background: var(--nmc-gold);
  color: var(--nmc-black);
}

/* ----------------------------------------------------------
   GRIDS
   ---------------------------------------------------------- */
.nmc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nmc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nmc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ----------------------------------------------------------
   ARTISTS CAROUSEL — .nmc-artists-carousel
   ---------------------------------------------------------- */
.nmc-artists-carousel {
  padding: 60px 0;
}

.nmc-artists-carousel__scroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--container-pad, 24px) 8px;
}

.nmc-artists-carousel__scroll-wrap::-webkit-scrollbar {
  display: none;
}

.nmc-artists-carousel__track {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
}

.nmc-artists-carousel__track .nmc-artist-card {
  width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Placeholder when no featured image */
.nmc-artist-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--nmc-charcoal) 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nmc-artist-card__placeholder::after {
  content: 'NMC';
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(201, 168, 76, 0.25);
}

/* ----------------------------------------------------------
   HORIZONTAL SCROLL — .nmc-horizontal
   ---------------------------------------------------------- */
.nmc-horizontal {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.nmc-horizontal::-webkit-scrollbar {
  display: none;
}

.nmc-horizontal > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Width helpers for horizontal scroll children */
.nmc-horizontal--artist .nmc-artist-card {
  width: 220px;
}

.nmc-horizontal--track .nmc-track-card {
  width: 320px;
  border-bottom: none;
  border: 1px solid var(--nmc-grey);
}

/* ----------------------------------------------------------
   MARQUEE — .nmc-marquee
   ---------------------------------------------------------- */
.nmc-marquee {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--nmc-grey);
  border-bottom: 1px solid var(--nmc-grey);
  position: relative;
}

.nmc-marquee__track {
  display: inline-block;
  white-space: nowrap;
  animation: nmc-scroll 25s linear infinite;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--nmc-grey-text);
  text-transform: uppercase;
}

.nmc-marquee--gold .nmc-marquee__track {
  color: var(--nmc-gold);
}

.nmc-marquee--fast .nmc-marquee__track {
  animation-duration: 15s;
}

/* The actual @keyframes nmc-scroll lives in animations.css */

/* ----------------------------------------------------------
   MUSIC PLAYER — #nmc-player
   ---------------------------------------------------------- */
/* #nmc-player positioning now handled by player.css v2
   — kept here for reference only, overridden by player.css */
#nmc-player {
  transform: none !important;
  transition: none !important;
}

.player__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Artwork */
.player__artwork {
  flex-shrink: 0;
}

.player__artwork img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--nmc-grey);
}

/* Track info */
.player__info {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  max-width: 200px;
}

#track-title {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

#track-artist {
  font-size: 0.7rem;
  color: var(--nmc-grey-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Controls */
.player__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player__controls button {
  background: none;
  border: none;
  color: var(--nmc-white);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 8px;
  transition: color var(--transition-fast);
  line-height: 1;
}

.player__controls button:hover {
  color: var(--nmc-gold);
}

#btn-play-pause {
  border: 1px solid var(--nmc-gold);
  color: var(--nmc-gold);
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast);
  min-width: 64px;
}

#btn-play-pause:hover {
  background: var(--nmc-gold);
  color: var(--nmc-black);
}

/* Progress */
.player__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

#progress-bar {
  flex: 1;
  height: 3px;
  accent-color: var(--nmc-gold);
  cursor: pointer;
  background: var(--nmc-grey);
  border-radius: var(--radius-full);
  -webkit-appearance: none;
  appearance: none;
}

#progress-bar::-webkit-slider-runnable-track {
  height: 3px;
  background: var(--nmc-grey);
  border-radius: var(--radius-full);
}

#progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--nmc-gold);
  border-radius: 50%;
  margin-top: -4.5px;
  cursor: pointer;
}

#time-current,
#time-total {
  font-size: 0.7rem;
  color: var(--nmc-grey-text);
  min-width: 35px;
  font-variant-numeric: tabular-nums;
}

#time-total {
  text-align: right;
}

/* Volume */
.player__volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.player__volume button {
  background: none;
  border: none;
  color: var(--nmc-grey-text);
  cursor: pointer;
  padding: 4px;
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.player__volume button:hover {
  color: var(--nmc-white);
}

#volume-bar {
  width: 80px;
  height: 3px;
  accent-color: var(--nmc-gold);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: var(--nmc-grey);
  border-radius: var(--radius-full);
}

#volume-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: var(--nmc-gold);
  border-radius: 50%;
  margin-top: -3.5px;
  cursor: pointer;
}

/* Radio live button */
.radio-live-btn {
  border: 1px solid var(--nmc-red);
  color: var(--nmc-gold);
  background: transparent;
  padding: 8px 14px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition-fast);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
}

.radio-live-btn:hover {
  background: rgba(139, 26, 26, 0.3);
}

/* ----------------------------------------------------------
   RADIO STRIP — .nmc-radio-strip
   ---------------------------------------------------------- */
.nmc-radio-strip {
  background: var(--nmc-charcoal);
  padding: 80px 0;
  text-align: center;
}

.nmc-radio-strip h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.nmc-radio-strip h2 .accent {
  color: var(--nmc-gold);
}

.nmc-radio-strip p {
  font-size: 0.85rem;
  color: var(--nmc-grey-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.nmc-radio-strip__frequency {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--nmc-gold);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}

.nmc-radio-strip__fm {
  font-size: 1rem;
  letter-spacing: 6px;
  color: var(--nmc-grey-text);
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ----------------------------------------------------------
   ARTIST HERO — .nmc-artist-hero
   ---------------------------------------------------------- */
.nmc-artist-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.nmc-artist-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.1s linear;
}

.nmc-artist-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nmc-artist-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A 40%, transparent 80%);
  z-index: 1;
}

.nmc-artist-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.nmc-artist-hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
}

.nmc-artist-hero__genre {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--nmc-gold);
  margin-bottom: 32px;
  display: block;
}

/* ----------------------------------------------------------
   STATS — .nmc-stats
   ---------------------------------------------------------- */
.nmc-stats {
  padding: 80px 0;
  text-align: center;
}

.nmc-stats__inner {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.nmc-stats__item,
.nmc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nmc-stats__number,
.nmc-counter {
  font-size: 4rem;
  font-weight: 800;
  color: var(--nmc-gold);
  line-height: 1;
  letter-spacing: -2px;
}

.nmc-stats__label,
.nmc-stat__label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nmc-grey-text);
}

/* ----------------------------------------------------------
   WORLD PAGE — .nmc-world-hero
   ---------------------------------------------------------- */
.nmc-world-hero {
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--nmc-black);
  position: relative;
  overflow: hidden;
}

.nmc-world-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.nmc-world-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nmc-world-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 30%, transparent 100%);
  z-index: 1;
}

.nmc-world-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.nmc-world-hero h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -2px;
  max-width: 700px;
}

/* ----------------------------------------------------------
   LORE SECTION — .nmc-lore-section
   ---------------------------------------------------------- */
.nmc-lore-section {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.nmc-lore-section h2 {
  font-size: 2rem;
  color: var(--nmc-gold);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.nmc-lore-section h3 {
  font-size: 1.25rem;
  color: var(--nmc-white);
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
}

.nmc-lore-section p {
  line-height: 1.8;
  color: var(--nmc-white);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.nmc-lore-section p + p {
  margin-top: 0;
}

/* ----------------------------------------------------------
   SECTION HEADER
   ---------------------------------------------------------- */
.nmc-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.nmc-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.nmc-section-header .cta {
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   FEATURED TRACK — .nmc-featured-track
   ---------------------------------------------------------- */
.nmc-featured-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.nmc-featured-track__artwork {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.nmc-featured-track__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.nmc-featured-track__artwork:hover img {
  transform: scale(1.04);
}

.nmc-featured-track__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nmc-featured-track__info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -2px;
}

.nmc-featured-track__meta {
  font-size: 0.75rem;
  color: var(--nmc-grey-text);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   EMBED PLAYER WRAPPER — .nmc-embed-wrapper
   ---------------------------------------------------------- */
.nmc-embed-wrapper {
  border: 1px solid var(--nmc-grey);
  overflow: hidden;
  background: var(--nmc-charcoal);
}

.nmc-embed-wrapper iframe {
  width: 100%;
  display: block;
}

/* ----------------------------------------------------------
   TAG / BADGE
   ---------------------------------------------------------- */
.nmc-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
}

.nmc-badge--gold {
  color: var(--nmc-black);
  background: var(--nmc-gold);
}

.nmc-badge--outline-gold {
  color: var(--nmc-gold);
  border: 1px solid var(--nmc-gold);
}

.nmc-badge--red {
  color: var(--nmc-white);
  background: var(--nmc-red);
}

/* ----------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------- */
.nmc-divider {
  width: 48px;
  height: 2px;
  background: var(--nmc-gold);
  margin: 24px 0;
}

/* ----------------------------------------------------------
   MODAL — .nmc-modal
   ---------------------------------------------------------- */
.nmc-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nmc-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.nmc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  cursor: pointer;
}

.nmc-modal__content {
  position: relative;
  z-index: 1;
  background: var(--nmc-charcoal);
  border: 1px solid var(--nmc-grey);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.nmc-modal.is-open .nmc-modal__content {
  transform: translateY(0);
}

.nmc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--nmc-grey-text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.nmc-modal__close:hover {
  color: var(--nmc-white);
}

/* ----------------------------------------------------------
   REC 1 — Hook Preview Mode
   ---------------------------------------------------------- */
[data-nmc-play].nmc-hook-preview {
  outline: 2px solid var(--nmc-gold);
  outline-offset: 3px;
}
[data-nmc-play].nmc-hook-preview .nmc-track-card__play {
  background: var(--nmc-gold);
  transform: scale(1.1);
}
.nmc-hook-preview-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--nmc-gold);
  color: var(--nmc-black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 2px;
  pointer-events: none;
}

/* ----------------------------------------------------------
   REC 17 — Night / Day Mode Toggle
   ---------------------------------------------------------- */
.nmc-nav__theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: transform 0.2s;
}
.nmc-nav__theme-toggle:hover { transform: scale(1.2); }

/* ----------------------------------------------------------
   REC 18 — Playback Speed Control
   ---------------------------------------------------------- */
.player__speed select {
  background: var(--nmc-surface, #111);
  color: var(--nmc-gold, #C9A84C);
  border: 1px solid var(--nmc-gold, #C9A84C);
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.75rem;
  font-family: inherit;
  cursor: pointer;
}

/* ----------------------------------------------------------
   ARTIST CHALLENGE HASHTAG — .nmc-artist__challenge
   ---------------------------------------------------------- */
.nmc-artist__challenge {
  padding: 64px 0;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}
.nmc-artist__challenge-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--nmc-white, #F5F0E8);
}
.nmc-artist__challenge-tag {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--nmc-gold, #C9A84C);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.nmc-artist__challenge-desc {
  color: #888;
  margin-bottom: 24px;
  font-size: 1rem;
}
.nmc-artist__challenge-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.player__speed select:focus { outline: 1px solid var(--nmc-gold, #C9A84C); }

/* ----------------------------------------------------------
   REC 15 — Listener Location Globe
   ---------------------------------------------------------- */
.nmc-radio__globe-wrap { text-align: center; padding: 32px 0; }
.nmc-radio__globe-label { color: #555; font-size: 0.8rem; margin-top: 8px; }

/* ----------------------------------------------------------
   REC 2 — Daily Signal Email Subscription
   ---------------------------------------------------------- */
.nmc-email-signup { background: #111; border-top: 1px solid #1a1a1a; padding: 48px 20px; }
.nmc-email-signup__inner { max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.nmc-email-signup__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; color: var(--nmc-gold, #C9A84C); text-transform: uppercase; margin-bottom: 4px; }
.nmc-email-signup__desc { color: #888; font-size: 0.95rem; margin: 0; }
.nmc-email-signup__form { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; align-items: flex-start; }
.nmc-email-signup__input { flex: 1; min-width: 200px; background: #0A0A0A; border: 1px solid #333; color: #F5F0E8; border-radius: 6px; padding: 10px 14px; font-family: inherit; font-size: 0.9rem; }
.nmc-email-signup__input:focus { border-color: var(--nmc-gold, #C9A84C); outline: none; }
.nmc-email-signup__status { width: 100%; font-size: 0.85rem; padding: 4px 0; }
.nmc-email-signup__status--success { color: #4ade80; }
.nmc-email-signup__status--error { color: #f87171; }
@media (max-width: 600px) { .nmc-email-signup__inner { flex-direction: column; gap: 16px; } }

/* ----------------------------------------------------------
   REC 9 — Artist Tip Jar
   ---------------------------------------------------------- */
.nmc-artist__tip { padding: 64px 0; border-top: 1px solid #1a1a1a; text-align: center; }
.nmc-artist__tip-title { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 8px; }
.nmc-artist__tip-desc { color: #888; margin-bottom: 24px; }
.nmc-artist__tip-amounts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.nmc-artist__tip-btn { background: #111; border: 1px solid #333; color: #ccc; padding: 10px 20px; border-radius: 100px; font-family: inherit; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s; }
.nmc-artist__tip-btn:hover, .nmc-artist__tip-btn.active { border-color: var(--nmc-gold, #C9A84C); color: var(--nmc-gold, #C9A84C); background: rgba(201,168,76,0.08); }
.nmc-artist__tip-custom { margin-bottom: 16px; }
.nmc-artist__tip-input { background: #111; border: 1px solid #333; color: #F5F0E8; border-radius: 8px; padding: 10px 16px; font-family: inherit; font-size: 1rem; width: 200px; text-align: center; }
.nmc-artist__tip-input:focus { border-color: var(--nmc-gold, #C9A84C); outline: none; }


/* === ARTIST CARD Hover Play === */
.artist-card { position: relative; cursor: pointer; overflow: hidden; }
.artist-card .artist-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.72);
  opacity: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 12px;
  transition: opacity .3s ease;
}
.artist-card:hover .artist-overlay,
.artist-card:focus-within .artist-overlay { opacity: 1; }
.artist-overlay h3 { color:#fff; font-size:1.1rem; text-align:center; margin:0; }
.play-artist {
  background: var(--color-gold,#C9A84C); color:#000; border:none;
  padding:10px 24px; font-weight:700; font-size:.95rem;
  cursor:pointer; border-radius:2px; transition:background .2s;
}
.play-artist:hover { background:#e0be6a; }
.artist-overlay__link { color:rgba(255,255,255,.7); font-size:.8rem; text-decoration:underline; }

/* === MUSIC FEED === */
.music-hero { padding:80px 0 40px; text-align:center; }
.music-hero__title { font-size:clamp(2rem,5vw,3.5rem); text-transform:uppercase; letter-spacing:.1em; }
.music-hero__sub { opacity:.6; }
.music-feed { max-width:860px; margin:0 auto; padding:0 20px 80px; }
.track-card {
  display:grid; grid-template-columns:36px 1fr 40px;
  align-items:center; gap:16px; padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  cursor:pointer; transition:background .2s;
}
.track-card:hover { background:rgba(255,255,255,.04); }
.track-card__num { opacity:.3; font-size:.85rem; text-align:right; }
.track-card__title { font-size:.95rem; font-weight:600; margin:0; }
.track-card__artist { font-size:.8rem; opacity:.5; margin:2px 0 0; }
.track-card__play {
  background:none; border:none; color:var(--color-gold,#C9A84C);
  font-size:1.1rem; cursor:pointer; opacity:0; transition:opacity .2s;
}
.track-card:hover .track-card__play { opacity:1; }

/* === RADIO PAGE === */
.radio-live { text-align:center; padding:80px 20px; }
.radio-live__badge { color:#ff3b3b; font-size:.75rem; font-weight:700; letter-spacing:.15em; display:block; margin-bottom:12px; }
.radio-live__title { font-size:clamp(3rem,8vw,6rem); text-transform:uppercase; letter-spacing:.05em; margin:0; }
.radio-live__sub { opacity:.5; margin:8px 0 32px; }
.radio-live__play { font-size:1.1rem; padding:16px 40px; margin-bottom:48px; }
.radio-live__now { margin:0 auto 40px; max-width:600px; }
.radio-live__now-title { font-size:1.4rem; margin:0; }
.radio-live__now-artist { opacity:.5; margin:6px 0 0; }
.radio-live__history { max-width:600px; margin:0 auto; text-align:left; }
.radio-live__history h3 { font-size:.8rem; letter-spacing:.12em; opacity:.4; margin:0 0 12px; }
#radio-history-list { list-style:none; padding:0; margin:0; }

/* === WORLD PAGE === */
.nmc-world-wrap { overflow:hidden; }
.world-section {
  min-height:70vh; display:flex; align-items:center;
  padding:100px 0; border-bottom:1px solid rgba(255,255,255,.06);
  opacity:0; transform:translateY(40px);
  transition:opacity .8s ease, transform .8s ease;
}
.world-section.is-visible { opacity:1; transform:translateY(0); }
.world-section--intro { min-height:90vh; }
.world-section--signal { background:rgba(201,168,76,.05); }
.world-section__title { font-size:clamp(2.5rem,6vw,5rem); text-transform:uppercase; letter-spacing:.06em; margin:0 0 20px; }
.world-section__name { font-size:clamp(2rem,5vw,4rem); letter-spacing:.1em; color:var(--color-gold,#C9A84C); margin:0 0 8px; }
.world-section__role { opacity:.45; font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; margin:0 0 20px; }
.world-section__body, .world-section__lore { font-size:1.05rem; line-height:1.7; max-width:620px; opacity:.8; }

/* === NMC TV TikTok Feed === */
.tv-feed-section { margin-top:60px; }
.tv-feed-section__title { font-size:1rem; letter-spacing:.12em; text-transform:uppercase; opacity:.4; margin:0 0 24px; }
#tv-feed { scroll-snap-type:y mandatory; overflow-y:scroll; height:100vh; scrollbar-width:none; }
#tv-feed::-webkit-scrollbar { display:none; }
.tv-item { height:100vh; scroll-snap-align:start; position:relative; background:#000; display:flex; align-items:flex-end; }
.tv-item video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.tv-item__info { position:relative; z-index:1; padding:24px; background:linear-gradient(transparent,rgba(0,0,0,.8)); width:100%; }
.tv-item__info h3 { margin:0; font-size:1.1rem; }
.tv-item__info p { margin:4px 0 0; opacity:.6; font-size:.85rem; }
.tv-item__thumb { position:absolute; inset:0; background-size:cover; background-position:center; }
.tv-feed__empty, .music-feed__empty { opacity:.4; text-align:center; padding:40px; }


/* Artist card — consistent 1:1 aspect ratio */
.artist-card .artist-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.artist-card .artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-image__placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
}


/* Hero H1 — prevent fragmented render */
.nmc-hero h1,
.hero__title,
.world-section__title {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ===========================================
   CONTACT PAGE
=========================================== */
.contact-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.contact-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}
.contact-hero__sub { opacity: 0.6; }
.contact-body { padding-bottom: 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h2 { font-size: 1.3rem; margin: 0 0 16px; }
.contact-info p { opacity: 0.7; line-height: 1.7; margin: 0 0 24px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  line-height: 1.6;
}
.contact-list a {
  color: var(--color-gold, #C9A84C);
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }
.contact-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-social a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: underline;
}
.contact-social a:hover { color: rgba(255,255,255,0.8); }
.contact-form__fallback { opacity: 0.5; }


/* =============================================
   MOBILE NAV — hamburger + menu open state
   Fix: H-2
============================================= */
@media (max-width: 960px) {
  .nmc-nav__hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: inherit;
    z-index: 200;
  }
  .nmc-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-radius: 1px;
  }
  /* Active (open) state */
  .nmc-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nmc-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nmc-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Desktop nav list — hide on mobile by default */
  #nmc-primary-menu,
  .nmc-nav__list,
  .nmc-nav__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    z-index: 150;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.4rem;
    padding: 40px;
  }
  #nmc-primary-menu.is-open,
  .nmc-nav__list.is-open,
  .nmc-nav__menu.is-open {
    display: flex !important;
  }
  #nmc-primary-menu li,
  .nmc-nav__list li,
  .nmc-nav__menu li {
    list-style: none;
  }
}



/* ============================================================
 * MUSIC CATALOGUE — /music/ archive page
 * Filter bar, track grid, track cards, play state
 * ============================================================ */

/* Page wrapper */
.nmc-catalogue {
  background: #0a0a0a;
  min-height: 100vh;
  padding: 40px 0 80px;
}

.nmc-catalogue .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page heading */
.nmc-catalogue__heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #d4af37;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}

.nmc-catalogue__count {
  font-size: 0.85em;
  color: #777;
  margin: 0 0 32px;
}

/* ---- Filter Bar ---- */
.nmc-catalogue__filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
}

.nmc-catalogue__filter-label {
  font-size: 0.8em;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nmc-catalogue__filter-select {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #e0e0e0;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.9em;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.nmc-catalogue__filter-select:focus {
  outline: none;
  border-color: #d4af37;
}

.nmc-catalogue__filter-btn {
  background: #d4af37;
  color: #111;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85em;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nmc-catalogue__filter-btn:hover {
  background: #e8c84a;
}

/* ---- Track Grid ---- */
.nmc-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* ---- Track Card ---- */
.nmc-track-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
}

.nmc-track-card:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}

/* Cover image area */
.nmc-track-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d0d0d;
}

.nmc-track-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nmc-track-card:hover .nmc-track-card__cover img {
  transform: scale(1.05);
}

/* Play overlay on hover */
.nmc-track-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s;
}

.nmc-track-card:hover .nmc-track-card__cover::after {
  background: rgba(0, 0, 0, 0.35);
}

/* Genre badge on cover */
.nmc-track-card__genre {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(212, 175, 55, 0.9);
  color: #111;
  font-size: 0.7em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

/* Card body */
.nmc-track-card__body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nmc-track-card__title {
  font-size: 0.95em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.nmc-track-card__artist {
  font-size: 0.8em;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nmc-track-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.nmc-track-card__duration {
  font-size: 0.75em;
  color: #666;
}

/* Play button */
.nmc-track-card__play {
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9em;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}

.nmc-track-card__play:hover {
  background: #e8c84a;
  transform: scale(1.1);
}

/* Active / playing state */
.nmc-track-card.is-playing {
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.nmc-track-card.is-playing .nmc-track-card__play {
  background: #e8c84a;
}

.nmc-track-card.is-playing .nmc-track-card__play::before {
  content: '\275A\275A'; /* pause bars */
  font-size: 0.7em;
  letter-spacing: -2px;
}

/* ---- No results state ---- */
.nmc-catalogue__empty {
  text-align: center;
  padding: 80px 20px;
  color: #555;
}

.nmc-catalogue__empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.nmc-catalogue__empty p {
  font-size: 1em;
  line-height: 1.6;
}

/* ---- Pagination ---- */
.nmc-catalogue__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.nmc-catalogue__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.85em;
  transition: border-color 0.2s, color 0.2s;
}

.nmc-catalogue__pagination .page-numbers:hover,
.nmc-catalogue__pagination .page-numbers.current {
  border-color: #d4af37;
  color: #d4af37;
}

.nmc-catalogue__pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #555;
  cursor: default;
}

/* ---- Tip Jar button (fixed, bottom-right) ---- */
.nmc-tip-jar {
  position: fixed;
  bottom: 80px; /* sits above radio bar */
  right: 20px;
  z-index: 900;
  background: #d4af37;
  color: #111;
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 0.85em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
}

.nmc-tip-jar:hover {
  background: #e8c84a;
  transform: translateY(-2px);
  color: #111;
}

/* ---- Featured artist badge ---- */
.nmc-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #111;
  font-size: 0.7em;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 8px;
}

/* ---- Listener count in radio bar ---- */
.nmc-radio-bar__listeners {
  font-size: 11px;
  color: #d4af37;
  margin-left: 10px;
  opacity: 0.85;
  white-space: nowrap;
}

/* ---- Mobile responsive ---- */
@media (max-width: 600px) {
  .nmc-catalogue__grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .nmc-catalogue__filters {
    padding: 12px;
    gap: 8px;
  }

  .nmc-tip-jar {
    bottom: 72px;
    right: 12px;
    padding: 8px 14px;
    font-size: 0.8em;
  }
}


/* ============================================================
 * FEATURES 1-10 — Component Styles
 * ============================================================ */

/* ---- Shared form inputs ---- */
.nmc-form-input {
    width: 100%;
    padding: 10px 14px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
    border-radius: 4px;
    font-size: 0.9em;
    transition: border-color 0.2s;
    box-sizing: border-box;
    margin-bottom: 12px;
}
.nmc-form-input:focus { outline: none; border-color: #d4af37; }
.nmc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nmc-form-textarea { resize: vertical; min-height: 90px; }
@media(max-width:600px){ .nmc-form-row { grid-template-columns: 1fr; } }

/* ---- FEATURE 1: Mood Radio ---- */
.nmc-mood-radio { background: #111; border: 1px solid #222; border-radius: 10px; padding: 24px; }
.nmc-mood-radio__moods { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.nmc-mood-btn { background: #1a1a1a; border: 1px solid #333; color: #aaa; padding: 8px 18px; border-radius: 20px; cursor: pointer; font-size: 0.85em; transition: all 0.2s; }
.nmc-mood-btn:hover, .nmc-mood-btn.active { background: #d4af37; color: #111; border-color: #d4af37; font-weight: 700; }
.nmc-mood-radio__now { display: flex; align-items: center; gap: 16px; background: #0d0d0d; border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.nmc-mood-radio__cover { width: 56px; height: 56px; border-radius: 4px; background: #222 center/cover no-repeat; flex-shrink: 0; }
.nmc-mood-radio__info { flex: 1; min-width: 0; }
.nmc-mood-radio__title { display: block; color: #fff; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nmc-mood-radio__artist { font-size: 0.8em; color: #999; }
.nmc-mood-radio__play, .nmc-mood-radio__skip { background: #d4af37; color: #111; border: none; border-radius: 50%; width: 38px; height: 38px; cursor: pointer; font-size: 1em; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nmc-mood-radio__skip { background: #222; color: #aaa; font-size: 1.2em; }
.nmc-mood-radio__skip:hover { background: #333; }
.nmc-mood-radio__queue { display: flex; flex-direction: column; gap: 4px; }
.nmc-mood-queue-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 4px; cursor: pointer; transition: background 0.15s; }
.nmc-mood-queue-item:hover, .nmc-mood-queue-item.active { background: rgba(212,175,55,0.1); }
.nmc-mood-queue-item.active .nmc-mood-qi-title { color: #d4af37; }
.nmc-mood-qi-num { color: #555; font-size: 0.75em; width: 18px; text-align: right; flex-shrink: 0; }
.nmc-mood-qi-title { flex: 1; color: #ddd; font-size: 0.88em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nmc-mood-qi-artist { color: #777; font-size: 0.78em; white-space: nowrap; }

/* ---- FEATURE 2: NMC Charts ---- */
.nmc-charts { padding: 8px 0; }
.nmc-charts__title { color: #d4af37; font-size: 1.4rem; margin-bottom: 20px; }
.nmc-chart-row { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #111; border: 1px solid #1a1a1a; border-radius: 6px; margin-bottom: 8px; transition: border-color 0.2s; }
.nmc-chart-row:hover { border-color: #d4af37; }
.nmc-chart-rank { font-size: 1.1em; font-weight: 900; color: #d4af37; min-width: 28px; text-align: center; }
.nmc-chart-cover { width: 48px; height: 48px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.nmc-chart-cover--empty { background: #222; width: 48px; height: 48px; border-radius: 4px; flex-shrink: 0; }
.nmc-chart-info { flex: 1; min-width: 0; }
.nmc-chart-title { display: block; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nmc-chart-artist { font-size: 0.8em; color: #999; }
.nmc-chart-plays { font-size: 0.75em; color: #666; white-space: nowrap; margin-left: auto; padding-right: 10px; }
.nmc-chart-play { background: #d4af37; color: #111; border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; font-size: 0.85em; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.15s; }
.nmc-chart-play:hover { transform: scale(1.1); }

/* ---- FEATURE 3: Drop Countdown ---- */
.nmc-countdown { background: linear-gradient(135deg, #111 0%, #1a1200 100%); border: 1px solid #d4af37; border-radius: 10px; padding: 20px 24px; display: flex; align-items: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.nmc-countdown__label { color: #d4af37; font-weight: 700; font-size: 0.9em; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.nmc-countdown__segments { display: flex; gap: 12px; }
.nmc-countdown__seg { text-align: center; background: #0a0a0a; border-radius: 6px; padding: 10px 14px; min-width: 56px; }
.nmc-countdown__seg span { display: block; font-size: 1.8em; font-weight: 900; color: #fff; line-height: 1; }
.nmc-countdown__seg small { font-size: 0.6em; color: #d4af37; letter-spacing: 2px; text-transform: uppercase; }

/* ---- FEATURE 4: Tracklist ---- */
.nmc-tracklist { background: #0d0d0d; border: 1px solid #1e1e1e; border-radius: 8px; padding: 20px 24px; }
.nmc-tracklist__heading { color: #d4af37; font-size: 1.1rem; margin: 0 0 14px; }
.nmc-tracklist__list { list-style: none; padding: 0; margin: 0; }
.nmc-tracklist__item { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; border-bottom: 1px solid #1a1a1a; }
.nmc-tracklist__item:last-child { border-bottom: none; }
.nmc-tracklist__title { font-weight: 600; color: #ddd; font-size: 0.9em; }
.nmc-tracklist__artist { color: #888; font-size: 0.85em; }
.nmc-tracklist__ago { margin-left: auto; color: #555; font-size: 0.75em; white-space: nowrap; }

/* ---- FEATURE 5: Collab Request ---- */
.nmc-collab-form { background: #111; border: 1px solid #2a2a2a; border-radius: 8px; padding: 24px; max-width: 520px; }
.nmc-collab-form__title { color: #d4af37; margin: 0 0 18px; font-size: 1.1rem; }
.nmc-collab-form__success { color: #d4af37; padding: 20px; text-align: center; }

/* ---- FEATURE 6: Shoutout Wall ---- */
.nmc-shoutout-wall { padding: 8px 0; }
.nmc-shoutout-wall__title { color: #d4af37; font-size: 1.4rem; margin-bottom: 20px; }
.nmc-shoutout-wall__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-bottom: 24px; }
.nmc-shoutout-card { background: #111; border: 1px solid #1e1e1e; border-radius: 8px; padding: 18px; transition: border-color 0.2s; }
.nmc-shoutout-card:hover { border-color: #d4af37; }
.nmc-shoutout-card__msg { color: #ddd; font-style: italic; line-height: 1.6; margin: 0 0 12px; font-size: 0.95em; }
.nmc-shoutout-card__meta { color: #888; font-size: 0.8em; display: flex; gap: 10px; align-items: center; }
.nmc-shoutout-card__meta strong { color: #d4af37; }
.nmc-shoutout-wall__empty { color: #555; text-align: center; padding: 30px; }
.nmc-shoutout-form { background: #111; border: 1px solid #222; border-radius: 8px; padding: 20px; margin-top: 24px; }

/* ---- FEATURE 7: NMC Passport ---- */
.nmc-passport { padding: 24px; background: #0d0d0d; border: 1px solid #1e1e1e; border-radius: 10px; }
.nmc-passport__title { color: #d4af37; font-size: 1.2rem; margin: 0 0 4px; }
.nmc-passport__sub { color: #777; font-size: 0.85em; margin: 0 0 20px; }
.nmc-passport__stamps { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.nmc-passport-stamp { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; transition: transform 0.2s; }
.nmc-passport-stamp:hover { transform: scale(1.05); }
.nmc-passport-stamp img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #d4af37; object-fit: cover; }
.nmc-passport-stamp__initials { width: 60px; height: 60px; border-radius: 50%; background: #d4af37; color: #111; display: flex; align-items: center; justify-content: center; font-size: 1.4em; font-weight: 900; border: 2px solid #d4af37; }
.nmc-passport-stamp__name { font-size: 0.7em; color: #aaa; text-align: center; max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nmc-passport__count { color: #666; font-size: 0.8em; text-align: center; }
/* Toast for passport stamp */
.nmc-passport-toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: #1a1a1a; border: 1px solid #d4af37; color: #d4af37; padding: 12px 24px; border-radius: 30px; font-size: 0.9em; opacity: 0; transition: opacity 0.3s, transform 0.3s; z-index: 9999; white-space: nowrap; pointer-events: none; }
.nmc-passport-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- FEATURE 8: Cipher Booth ---- */
.nmc-cipher-booth { background: #0d0d0d; border: 1px solid #2a2a2a; border-radius: 10px; overflow: hidden; }
.nmc-cipher-booth__header { background: linear-gradient(135deg, #1a1200, #111); padding: 24px; border-bottom: 1px solid #222; }
.nmc-cipher-booth__title { color: #d4af37; margin: 0 0 6px; font-size: 1.4rem; }
.nmc-cipher-booth__sub { color: #aaa; font-size: 0.9em; margin: 0 0 12px; }
.nmc-cipher-status { display: inline-block; font-size: 0.75em; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.nmc-cipher-status.open { background: rgba(80,200,80,0.15); color: #50c850; border: 1px solid rgba(80,200,80,0.3); }
.nmc-cipher-status.closed { background: rgba(200,60,60,0.15); color: #c83c3c; border: 1px solid rgba(200,60,60,0.3); }
.nmc-cipher-form { padding: 24px; }
.nmc-cipher-form__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.nmc-cipher-form__rules { font-size: 0.75em; color: #666; }
.nmc-cipher-booth__success { padding: 32px; text-align: center; color: #d4af37; font-size: 1.05em; }
.nmc-cipher-booth__closed { padding: 24px; text-align: center; color: #666; }

/* ---- FEATURE 9: Beat Preview Player ---- */
.nmc-beat-player { background: #111; border: 1px solid #222; border-radius: 8px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.nmc-beat-player__info { flex: 1; min-width: 0; }
.nmc-beat-player__title { font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.nmc-beat-player__tags { display: flex; gap: 6px; }
.nmc-beat-tag { background: rgba(212,175,55,0.12); color: #d4af37; border: 1px solid rgba(212,175,55,0.25); padding: 2px 10px; border-radius: 12px; font-size: 0.75em; }
.nmc-beat-player__controls { display: flex; align-items: center; gap: 12px; }
.nmc-beat-player__play { background: #d4af37; color: #111; border: none; border-radius: 4px; padding: 8px 18px; cursor: pointer; font-weight: 700; font-size: 0.85em; white-space: nowrap; transition: background 0.2s; }
.nmc-beat-player__play:hover, .nmc-beat-player__play.playing { background: #e8c84a; }
.nmc-beat-player__progress { width: 120px; height: 4px; background: #2a2a2a; border-radius: 2px; overflow: hidden; }
.nmc-beat-player__bar { height: 100%; background: #d4af37; width: 0; transition: width 0.25s linear; }
.nmc-beat-player__time { color: #888; font-size: 0.78em; white-space: nowrap; min-width: 32px; }

/* ---- FEATURE 10: Push Bell ---- */
.nmc-push-bell { position: fixed; bottom: 130px; right: 20px; z-index: 910; width: 42px; height: 42px; background: #1a1a1a; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1em; transition: border-color 0.2s, transform 0.2s; box-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.nmc-push-bell:hover { border-color: #d4af37; transform: scale(1.1); }
.nmc-push-bell.subscribed { border-color: #d4af37; background: rgba(212,175,55,0.12); }
.nmc-push-bell__dot { position: absolute; top: 4px; right: 4px; width: 9px; height: 9px; background: #ff4444; border-radius: 50%; border: 2px solid #0a0a0a; }
.nmc-push-toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: #1a1a1a; border: 1px solid #333; color: #e0e0e0; padding: 12px 24px; border-radius: 30px; font-size: 0.88em; opacity: 0; transition: opacity 0.3s, transform 0.3s; z-index: 9999; white-space: nowrap; pointer-events: none; max-width: 90vw; text-align: center; }
.nmc-push-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- Shared nmc-btn-icon ---- */
.nmc-btn-icon { background: none; border: none; cursor: pointer; padding: 4px 8px; color: #d4af37; font-size: 1em; transition: color 0.2s; }
.nmc-btn-icon:hover { color: #e8c84a; }


/* ============================================================
 * FOOTER SUPPORT COLUMN — Ko-fi + Push Bell
 * ============================================================ */

/* Extend footer grid to 4 columns */
.nmc-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
}

/* Support column */
.nmc-footer__support {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nmc-footer__support h3 {
    color: #d4af37;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 4px;
}

/* Ko-fi button */
.nmc-footer__kofi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: #111;
    font-weight: 700;
    font-size: 0.85em;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(212,175,55,0.25);
    width: fit-content;
    white-space: nowrap;
}

.nmc-footer__kofi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    color: #111;
}

.nmc-footer__kofi-icon {
    font-size: 1.1em;
}

/* Push bell button */
.nmc-footer__bell-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #aaa;
    font-size: 0.85em;
    padding: 9px 16px;
    border-radius: 30px;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    position: relative;
    width: fit-content;
    white-space: nowrap;
}

.nmc-footer__bell-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.nmc-footer__bell-btn.subscribed {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212,175,55,0.08);
}

.nmc-footer__bell-icon {
    font-size: 1em;
    transition: transform 0.3s;
}

.nmc-footer__bell-btn:hover .nmc-footer__bell-icon,
.nmc-footer__bell-btn.subscribed .nmc-footer__bell-icon {
    animation: bell-ring 0.4s ease;
}

@keyframes bell-ring {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-15deg); }
    50%  { transform: rotate(15deg); }
    75%  { transform: rotate(-8deg); }
    100% { transform: rotate(0deg); }
}

/* Notification dot on bell */
#nmc-push-bell .nmc-push-bell__dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid #0a0a0a;
    display: none;
}

/* Remove the old fixed-position bell styles (overrides) */
.nmc-push-bell {
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
}

/* Hide old fixed tip jar if it somehow renders */
a.nmc-tip-jar,
.nmc-tip-btn {
    display: none !important;
}

/* Responsive: stack support column below others on mobile */
@media (max-width: 768px) {
    .nmc-footer__inner {
        grid-template-columns: 1fr 1fr !important;
    }
    .nmc-footer__support {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding-top: 16px;
        border-top: 1px solid #1e1e1e;
        gap: 10px;
    }
    .nmc-footer__support h3 {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .nmc-footer__inner {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   NMC FIXES — Auto-generated improvements
   ========================================================== */

/* FIX 2: Artist card placeholder for missing images */
.nmc-artist-card__img img[src=""],
.nmc-artist-card__img img:not([src]),
.nmc-artist-card__img img[src*="placeholder"],
.nmc-artist-card__img--empty {
  display: none;
}
.nmc-artist-card__img {
  background: linear-gradient(135deg, #111 0%, #1a1505 100%);
  position: relative;
}
.nmc-artist-card__img::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #C9A84C;
  opacity: 0.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nmc-artist-card__img img.nmc-img-error {
  opacity: 0;
  position: absolute;
}

/* FIX 4: Sticky LIVE nav button */
.nmc-nav__live-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: #C9A84C;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nmc-nav__live-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: #C9A84C;
  color: #C9A84C;
}
.nmc-nav__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3333;
  flex-shrink: 0;
  animation: nmc-live-pulse 1.8s ease-in-out infinite;
}
@keyframes nmc-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,51,51,0.5); }
  50% { opacity: 0.6; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(255,51,51,0); }
}

/* FIX 7: EXPAND button gold pulse animation */
.nmc-expand-btn,
[class*="expand"],
#nmc-expand,
.nmc-radio__expand {
  animation: nmc-expand-pulse 2.5s ease-in-out infinite !important;
}
@keyframes nmc-expand-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); border-color: rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 12px 3px rgba(201,168,76,0.25); border-color: rgba(201,168,76,0.9); }
}

/* FIX 11: Discord CTA block */
.nmc-discord-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1505 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px auto;
  max-width: 640px;
}
.nmc-discord-cta__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
  opacity: 0.7;
}
.nmc-discord-cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nmc-discord-cta__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.nmc-discord-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865F2;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.nmc-discord-cta__btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.35);
  color: #fff;
}
