* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  min-height: 100vh;
  color: #4b2b33;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 203, 219, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle at 80% 15%, rgba(255, 232, 150, 0.9) 0 7%, transparent 8%),
    radial-gradient(circle at 25% 85%, rgba(164, 224, 255, 0.85) 0 9%, transparent 10%),
    linear-gradient(135deg, #ffe6ef, #fff5c7, #dff6ff, #f6e3ff);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(35deg, transparent 45%, rgba(255,255,255,.45) 46% 54%, transparent 55%),
    linear-gradient(120deg, transparent 44%, rgba(255,174,201,.45) 45% 55%, transparent 56%),
    linear-gradient(75deg, transparent 47%, rgba(181,126,220,.35) 48% 54%, transparent 55%);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  opacity: .55;
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.player-card {
  width: min(92vw, 430px);
  padding: 28px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 45px rgba(120, 70, 90, 0.25);
  text-align: center;
  border: 2px solid rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}

.player-card::before {
  content: "✂️  📎  🎀  🖍️  📜  ✨";
  position: absolute;
  top: 12px;
  left: -20px;
  right: -20px;
  font-size: 22px;
  opacity: .28;
  letter-spacing: 8px;
}

.badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff0a8;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

h1 {
  margin: 8px 0 10px;
  font-size: 34px;
  color: #7d3c5c;
}

.blessing {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 auto 22px;
  max-width: 340px;
  color: #6b4250;
}

.center-art {
  width: 190px;
  height: 190px;
  margin: 0 auto 20px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  animation: floaty 5s ease-in-out infinite, imageBreath 3s ease-in-out infinite;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(125,60,92,.25);
  border: 4px solid rgba(255,255,255,.75);
}

h2 {
  font-size: 20px;
  margin: 10px 0 18px;
  color: #843d63;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

button {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  background: #ffffff;
  color: #7d3c5c;
  box-shadow: 0 8px 20px rgba(112, 64, 90, .22);
}

.main-btn {
  width: 72px;
  height: 72px;
  background: #ffb7cf;
  color: white;
  font-size: 30px;
}

.breath {
  animation: breathe 2.7s ease-in-out infinite;
}

.progress-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 18px;
}

input[type="range"] {
  width: 100%;
  accent-color: #d86b9d;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.track-list li {
  padding: 10px 12px;
  margin: 8px 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  font-size: 15px;
  transition: .25s;
}

.track-list li.active {
  background: #ffe0ec;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(125,60,92,.15);
}

footer {
  margin-top: 18px;
  font-size: 13px;
  color: #6b4250;
}

footer p {
  margin: 0 0 4px;
}

footer strong,
footer span {
  display: block;
  margin-top: 4px;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes imageBreath {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.045);
    filter: brightness(1.08);
  }
}