/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #2e2e2e);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 100vh;
}

.container {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.avatar img {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid white;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

p {
  color: #aaa;
  margin-bottom: 24px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1f1f1f;
  border: 2px solid #444;
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.2s ease;
}

.btn img {
  width: 24px;
  height: 24px;
}

.btn:hover {
  background-color: #333;
  transform: scale(1.02);
}

/* Optional individual hover styles */
.btn.spotify:hover {
  background-color: #1DB954;
  color: black;
}

.btn.apple:hover {
  background-color: #9933CC;
  color: white;
}

.btn.amazon:hover {
  background-color: #00A8E1;
  color: white;
}

.btn.deezer:hover {
  background-color: #AC25FF;
  color: white;
}
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #aaa;
  text-align: right;
}

footer a {
  color: #aaa;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}