/* ============================================
   Song Link Pages — Social Sharing
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a1a;
  --bg-card: #222222;
  --text: #d4cfc8;
  --text-muted: #8a8478;
  --accent: #b8956a;
  --border: rgba(255, 255, 255, 0.06);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

.link-page {
  width: 100%;
  max-width: 420px;
  padding: 24px;
}

.link-card {
  text-align: center;
}

.link-logo {
  max-width: 280px;
  width: 80%;
  margin: 0 auto 32px;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.4));
}

.link-card h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.link-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.link-credits {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 32px;
}

.link-meta:last-of-type:not(:has(+ .link-credits)) {
  margin-bottom: 32px;
}

.link-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-yt {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255,0,51,0.3);
}
.btn-yt:hover {
  background: #ff0033;
  border-color: #ff0033;
}

.btn-spotify {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(29,185,84,0.3);
}
.btn-spotify:hover {
  background: #1db954;
  border-color: #1db954;
  color: #000;
}

.btn-apple {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(252,60,68,0.3);
}
.btn-apple:hover {
  background: #fc3c44;
  border-color: #fc3c44;
}

.btn-amazon {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(37,209,218,0.3);
}
.btn-amazon:hover {
  background: #25d1da;
  border-color: #25d1da;
  color: #000;
}

.link-home {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.link-home:hover {
  color: var(--accent);
}
