/* NEW ALBUM PAGE LOOK */
.track-row {
  transition: background 0.2s ease;
}

.track-row:hover {
  background: rgba(255,255,255,0.05);
}

.track-title {
  cursor: pointer;
  text-decoration: underline;
}

.track-title:hover {
  color: #ffa500; /* matches your orange accents */
}

.active-track {
  background: rgba(255,165,0,0.15);
  border-left: 3px solid #ffa500;
}

.track-title::before {
  font-size: 10px;
  margin-right: 8px;
  opacity: 0.5;
  display: inline-block;
  transform: translateY(-1px);
}

.track-row:hover .track-title::before {
  opacity: 1;
}
.play-icon {
  font-size: 10px;
  margin-right: 8px;
  opacity: 0.5;
}

.track-row:hover .play-icon {
  opacity: 1;
}

/* ===== FORCE CLEAN TRACK LOOK ===== */

.track-title,
.track-title a {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* kill ANY old pseudo icons */
.track-title::before {
  content: "" !important;        /* kill the ? */
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 12px solid #00c853;   /* green triangle */
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-right: 10px;
  transform: translateY(1px);
}

/* hover polish */
.track-row:hover .track-title::before {
  opacity: 1 !important;
}




.track-row--album .track-title {
  flex: 1 1 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
/*  text-overflow: ellipsis; */
}

.track-title a {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}




.track-title {
  cursor: pointer;
  font-weight: 500;
}

/* active row */
.active-track {
  background: rgba(255,165,0,0.15);
  border-left: 3px solid #ffa500;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;     /* adjust to taste */
  margin: 0;       /* keeps it centred */
  aspect-ratio: 9 / 16;   /* ?? locks height */
  background: #000;
  overflow: hidden;
}

#trackVideo {
  width: 100%;
  display: none;   /* ?? start hidden */
}

.video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: block;   /* ?? ALWAYS visible initially */
  z-index: 1;
}

/* dark overlay */
.video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* text */
.fallback-text {
  animation: pulse 2s infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #00c853;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Orbitron", sans-serif; /* futuristic vibe */
  text-align: center;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ENQUIRE BUTTON (ALBUM PLAYER) */

.enquire-btn {
  display: inline-block;
  padding: 4px 10px;
  margin-left: 6px;
  background: #c62828;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 120ms ease;
}

.enquire-btn:hover {
  background: #e53935;
  transform: translateY(-1px);
}


/* ===== PLAYER MODULE (TAB STYLE - FINAL WORKING) ===== */

#centralPlayerWrap {
  background: #dcdcdc;
  padding: 16px 12px 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  position: relative;

  border-top: 2px solid #ffffff; /* ?? THIS is the key */
}

/* TITLE TAB */
#nowPlayingTitle {
  display: inline-block;
  background: #dcdcdc;
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 6px 6px 0 0;

  position: relative;
  top: -14px;              /* ?? lifts it OUT of panel */
  margin-bottom: -8px;     /* ?? pulls content back up */

  border: 1px solid #cfcfcf;   /* ?? THIS is the key */
  border-bottom: none;         /* ?? makes it a tab */

  box-shadow: 0 1px 0 #dcdcdc; /* ?? blends into panel */
}

/* tidy spacing */
#playerMeta {
  margin-top: 8px;
}


