html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
}

.likes-overlay {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
}

.counter-card {
  width: min(92vw, 1080px);
  padding: clamp(18px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(18, 7, 34, .9);
  border: 3px solid rgba(255, 66, 127, .75);
  box-shadow:
    0 0 40px rgba(255, 53, 111, .38),
    inset 0 0 25px rgba(141, 77, 255, .18);
}

.likes-title {
  margin-bottom: 14px;
  color: #ff79a5;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 950;
  text-align: center;
  letter-spacing: .08em;
}

.likes-count {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(32px, 6vw, 76px);
}

.likes-count em {
  margin-left: 16px;
  color: #61ffb2;
  font-size: .58em;
  font-style: normal;
}

.likes-track {
  height: clamp(24px, 4vw, 42px);
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 2px solid rgba(255,255,255,.38);
}

.likes-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #ff356f, #ff9e36, #8d4dff);
  box-shadow: 0 0 30px rgba(255,53,111,.75);
  transition: width .35s ease;
}

.celebration {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.16);
}

.celebration video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.celebration-copy {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  padding: 26px 38px;
  border-radius: 28px;
  text-align: center;
  font-size: clamp(34px, 7vw, 84px);
  font-weight: 950;
  color: #fff;
  background:
    linear-gradient(90deg,
      rgba(255,53,111,.92),
      rgba(141,77,255,.92));
  box-shadow: 0 0 70px rgba(255,53,111,.75);
  animation: celebrationPulse .55s ease-in-out infinite alternate;
}

.celebration-copy strong {
  display: block;
  margin-top: 12px;
  color: #fff6a8;
  font-size: .62em;
}

.hidden {
  display: none !important;
}

@keyframes celebrationPulse {
  from { transform: scale(.97) rotate(-.4deg); }
  to { transform: scale(1.025) rotate(.4deg); }
}
