body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 420px;
  padding: 20px;
}

/* COVER */
.cover {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

h1 {
  font-size: 22px;
  margin: 18px 0 5px;
}

.artist {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 22px;
}

/* LINKS */
.links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: black;
  text-decoration: none;
  padding: 14px;
  margin: 10px 0;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s;
  border: 1px solid #ddd;
}

.links a i {
  position: absolute;
  left: 18px;
  font-size: 20px;
}

.links a:hover {
  background: #eaeaea;
  transform: scale(1.03);
}

/* FOOTER */
.footer {
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer img {
  height: 40px;
  cursor: pointer;
  transition: 0.2s;
}

.footer img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer a {
  text-decoration: none;
}