/* Shared across index/library/favorites/song/author/top_authors. */
.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line, rgba(255,255,255,0.1));
  padding: 40px 24px 20px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #ec4899) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px;
}

.footer-tagline {
  color: var(--text-soft, rgba(255,255,255,0.55));
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 32ch;
}

.footer-bot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.12);
  color: var(--text, #fff);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-bot-link:hover {
  background: rgba(99, 102, 241, 0.22);
  border-color: rgba(99, 102, 241, 0.6);
}

.footer-col-title {
  color: var(--text, #fff);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  color: var(--text-muted, rgba(255,255,255,0.75));
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 0;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--text, #fff);
}

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line, rgba(255,255,255,0.1));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-soft, rgba(255,255,255,0.55));
  font-size: 0.76rem;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a {
  color: var(--text-soft, rgba(255,255,255,0.55));
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--text, #fff);
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
