.cantos-spotify-page {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: clamp(64px, 8vw, 112px) 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .2), transparent 34rem),
    radial-gradient(circle at 8% 80%, rgba(29, 185, 84, .12), transparent 28rem),
    linear-gradient(145deg, #050505 0%, #10100d 52%, #07170e 100%);
  color: #fff;
}

.cantos-spotify-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.cantos-spotify-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cantos-spotify-heading {
  max-width: 850px;
  margin: 0 auto clamp(32px, 5vw, 54px);
  text-align: center;
}

.cantos-spotify-kicker {
  margin: 0 0 15px;
  color: #e7c65d;
  font-size: clamp(.76rem, 1.1vw, .92rem);
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.cantos-spotify-heading h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 10vw, 8.5rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.055em;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .6);
}

.cantos-spotify-heading p:last-child {
  max-width: 700px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.cantos-spotify-card {
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(231, 198, 93, .5);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.cantos-spotify-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 198, 93, .82);
  box-shadow:
    0 46px 110px rgba(0, 0, 0, .62),
    0 0 38px rgba(212, 175, 55, .12),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.cantos-spotify-card iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 18px;
  background: #121212;
}

@media (max-width: 700px) {
  .cantos-spotify-page {
    min-height: 620px;
    padding: 54px 12px 70px;
  }

  .cantos-spotify-heading h1 {
    font-size: clamp(3.7rem, 20vw, 5.5rem);
  }

  .cantos-spotify-card {
    padding: 8px;
    border-radius: 20px;
  }

  .cantos-spotify-card iframe {
    height: 500px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cantos-spotify-card {
    transition: none;
  }

  .cantos-spotify-card:hover {
    transform: none;
  }
}
