:root {
  --bg-main: #0e0f1a;
  --bg-card: #17182a;
  --accent-warm: #f08c6a;
  --accent-soft: #c97fa5;
  --text-main: #f2f2f4;
  --text-muted: #b5b6c9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

.container {
  max-width: 760px;
  margin: auto;
  padding: 24px;
}

header {
  text-align: center;
  margin-bottom: 32px;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

.subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 28px;
}

.artist h2 {
  margin-bottom: 4px;
}

.artist .meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.music {
  margin: 28px 0;
}

.curation h3 {
  margin-bottom: 8px;
}

.curation p {
  line-height: 1.6;
  color: var(--text-main);
  opacity: 0.9;
}

.actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  background: var(--accent-warm);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent-soft);
  color: var(--text-main);
}

footer {
  margin-top: 56px;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.icon-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.icon-link {
  width: 42px;
  height: 42px;
  color: var(--accent-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-link:hover {
  transform: scale(1.1);
  color: var(--accent-warm);
}

.icon-link svg {
  width: 100%;
  height: 100%;
}

