/* ================
   LYRICS PAGE CORE
   ================ */

.lyrics-page {
    padding: 40px 0;
}

.lyrics-shell {
    background: rgba(255,255,255,0.04);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Title */
.lyrics-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lyrics-meta {
    opacity: .75;
    font-size: 14px;
    margin-bottom: 25px;
}

/* =====================
   GRID LAYOUT (Left/Right)
   ===================== */

.lyrics-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
}

@media (max-width: 900px) {
    .lyrics-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   LYRICS CARD
   ===================== */

.lyrics-card {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Tabs */
.lyrics-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.lyrics-tab {
    flex: 1;
    padding: 10px 0;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: .25s;
}

.lyrics-tab:hover {
    background: rgba(255,255,255,0.12);
}

.lyrics-tab.active {
    background: #ffd24a;
    color: #000;
    font-weight: 600;
}

/* Panes */
.lyrics-panes {
    margin-top: 12px;
}

.lyrics-pane {
    display: none;
    animation: fadeIn .25s ease;
}

.lyrics-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Chords block */
.lyrics-chords-block {
    background: rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 10px;
    font-family: "Courier New", monospace;
    white-space: pre-wrap;
    font-size: 15px;
    line-height: 1.4;
}

/* Empty text */
.lyrics-empty {
    opacity: .7;
    padding: 10px 0;
}

/* Copy Buttons */
.lyrics-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lyrics-actions .btn {
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

/* Copied animation */
.btn.copied {
    background: #3af57a !important;
    color: #000 !important;
}

/* =====================
   MEDIA CARD
   ===================== */

.lyrics-media-card {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

@media (max-width: 900px) {
    .lyrics-media-card {
        position: relative;
        top: 0;
    }
}

.media-heading {
    font-size: 18px;
    margin-bottom: 15px;
}

.media-section {
    margin-bottom: 25px;
}

.media-subheading {
    font-size: 13px;
    opacity: .7;
    margin-bottom: 6px;
}

.media-video iframe {
    width: 100%;
    border-radius: 12px;
}

.media-audio {
    width: 100%;
}

/* Notes */
.media-notes {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
/* Tabs row – 3 equal columns */
.lyrics-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

/* Hide / show panes */
.lyrics-pane {
  display: none;
}
.lyrics-pane.active {
  display: block;
}
/* RELATED SONGS */
.related-songs {
  margin-top: 40px;
  padding: 25px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}

.related-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

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

.related-item {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  transition: 0.2s ease;
}

.related-item:hover {
  background: rgba(255,255,255,0.12);
}

.related-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.related-meta {
  font-size: 13px;
  opacity: 0.6;
  color: #fff;
}
/* ================================
   RELATED SONGS SECTION
================================ */
/* RELATED SONGS ITEM (default – keep your existing dark gradient) */
.related-item {
  display: block;
  padding: 16px 20px;
  background: linear-gradient(135deg, #1E3A8A, #020617); /* your theme gradient */
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease-in-out;
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
  color: #fff;
}

/* HOVER — Golden */
.related-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #FACC15, #EAB308); /* GOLD gradient */
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
  border-color: transparent;
  color: #1a1a1a;
}

/* Title */
.related-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #ffffff;
}

/* Title hover */
.related-item:hover .related-title {
  color: #1a1a1a;
}

/* Meta */
.related-meta {
  font-size: 0.8rem;
  color: #d1d5db; /* light gray */
  opacity: 0.9;
}

/* Meta hover */
.related-item:hover .related-meta {
  color: #4b5563; /* dark gray */
  opacity: 1;
}

/* GRID */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}


/* Mobile adjustments */
@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
