:root {
  --color-bg: #000;
  --color-white: #fff;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--color-bg);
  overflow: hidden;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.site {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.15);
}

.content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}

.logo {
  position: absolute;
  top: clamp(20px, 3vw, 42px);
  left: clamp(20px, 3vw, 42px);

  width: 15vw;
  height: auto;
  display: block;

  opacity: 0.82;
  mix-blend-mode: screen;

  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .logo {
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);

    width: 50vw;
    opacity: 0.84;
  }

}

.listen-card {
  position: absolute;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3vw, 48px);

  width: 515px;
  height: 187px;

  display: grid;
  grid-template-columns: 1fr 179px;
  gap: 20px;
  align-items: center;

  padding: 4px;

  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 12px;
  z-index: 4;
  pointer-events: auto;
}

.listen-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 20px;
}

.listen-card__logo {
  width: 60%;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.listen-card__title {
  margin-bottom: 15px;

  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.platform-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: transparent;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.platform-link:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.platform-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.listen-card__cover {
  width: 179px;
  height: 179px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* =========================
   PRIVACY LINK
========================= */

.privacy-link {
  position: fixed;
  left: clamp(18px, 2vw, 34px);
  bottom: clamp(18px, 2vw, 26px);

  z-index: 120;

  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 500;
  letter-spacing: 0.04em;

  color: rgba(255,255,255,0.78);
  text-decoration: none;

  opacity: 0.78;

  transition:
    opacity 0.25s ease,
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

@media (max-width: 768px) {
  .listen-card {
    left: 50%;
    right: auto;
    bottom: 40px;
    transform: translateX(-50%);

    width: 90vw;
    height: 40vw;

    grid-template-columns: 1fr 38vw;
    gap: 18px;

    padding: 1vw;
    
  }

.listen-card__info {
  padding: 15px 0 15px 15px;
}

.listen-card__logo {
display: none;
}

.listen-card__title {
  font-size: 4vw;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5vw;
  align-items: center;
}

.platform-link {
  width: 8.5vw;
  height: 8.5vw;
}

.platform-link:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}


.listen-card__cover {
  width: 38vw;
  height: 38vw;
}

.privacy-link {
  left: 50%;
  transform: translateX(-50%);
  opacity:1;
}
  
}


.video-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  background: #000;
}

.video-fallback {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 1;

  transition: opacity 0.5s ease;
}

.video-fallback.hidden {
  opacity: 0;
}

.bg-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 2;

  background: #000;
}


.video-wrapper.video-failed .video-fallback {
  opacity: 1;
  visibility: visible;
}

.video-wrapper.video-failed .bg-video {
  opacity: 0;
  visibility: hidden;
}