:root {
  --bg: #0b0b12;
  --text: #e9e9f1;
  --muted: #a7a7c2;
  --line: #24243b;
  --accent: #8a7cff;
}

/* Reset basics */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px 28px;
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

h1:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

p.lead {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 32px;
}

/* Sections */
section {
  padding: 32px 20px;
  max-width: 900px;
  width: 100%;
  border-top: 1px solid var(--line);
  text-align: left;
  margin-bottom: 20px;
}

section h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

#socials,
#extras {
  text-align: center;
}

/* Music + About */
.music-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.spotify {
  flex: 1 1 360px;
  width: 100%;
  max-width: 480px;
  height: 360px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.6);
}

.about-text {
  flex: 1 1 260px;
  max-width: 380px;
}

.about-text p {
  color: var(--muted);
  font-size: 15px;
}

/* Socials + Projects */
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

/* Projects text */
.extras-text {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 14px;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 13px;
  width: 100%;
  max-width: 900px;
}

/* Mobile */
@media (max-width: 600px) {
  .spotify {
    height: 320px;
  }

  section {
    padding: 28px 16px;
  }
}