:root {
  --bg: #0a0a0a;
  --text: #f2eeea;
  --text-dim: #a89f9a;
  --accent: #b32020;
  --accent-bright: #e63c3c;
  --border: #2a2320;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  position: relative;
  overflow-x: hidden;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  width: 100%;
  z-index: 1;
}

.glow {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(179, 32, 32, 0.18) 0%, rgba(179, 32, 32, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(179, 32, 32, 0.35), 0 0 0 1px var(--border);
  margin-bottom: 1.75rem;
}

.name {
  font-family: 'Cinzel', serif;
  font-size: 2.25rem;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--text);
  text-shadow: 0 0 24px rgba(230, 60, 60, 0.25);
}

.tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0.6rem 0 2rem;
}

.spotify-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
  margin-bottom: 2.5rem;
}

.spotify-embed iframe {
  display: block;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: #141110;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.link-btn:hover {
  border-color: var(--accent-bright);
  background: #1a1412;
  transform: translateY(-1px);
}

footer {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  font-size: 0.8rem;
  padding-top: 1rem;
}

footer p {
  margin: 0;
}
