:root {
  color-scheme: dark;
  font-family: "Archivo Black", Arial, sans-serif;
  background: #120b08;
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body { background: #120b08; }

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity .48s ease;
}

.hero-video.resetting { opacity: 0; }

.hero-video:focus-visible {
  outline: 5px solid #ecff52;
  outline-offset: -8px;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 5, 3, .46) 0%, transparent 34%, transparent 62%, rgba(10, 5, 3, .62) 100%),
    radial-gradient(circle at center, transparent 35%, rgba(10, 5, 3, .18) 100%);
  transition: opacity .3s ease;
}

.utility-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: clamp(16px, 2.5vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.contract-copy,
.socials a {
  pointer-events: auto;
  border: 2px solid rgba(255, 244, 232, .72);
  border-radius: 999px;
  background: rgba(18, 11, 8, .68);
  color: #fff4e8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font: inherit;
  font-size: clamp(.66rem, 1.1vw, .86rem);
  letter-spacing: -.025em;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.contract-copy {
  max-width: min(62vw, 610px);
  min-height: 46px;
  padding: 10px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contract-label {
  color: #ecff52;
}

.contract-full {
  overflow: hidden;
  text-overflow: ellipsis;
}

.contract-short { display: none; }

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  min-height: 46px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contract-copy:hover,
.socials a:hover {
  transform: translateY(-2px) scale(1.025);
  background: rgba(18, 11, 8, .88);
  border-color: #ecff52;
}

.contract-copy:focus-visible,
.socials a:focus-visible {
  outline: 4px solid #ecff52;
  outline-offset: 3px;
}

.copy-toast {
  position: absolute;
  top: clamp(78px, 9vw, 110px);
  left: 50%;
  z-index: 6;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ecff52;
  color: #120b08;
  box-shadow: 5px 5px 0 #120b08;
  font-size: .78rem;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -8px) scale(.92);
  transition: opacity .18s ease, transform .18s ease;
}

.copy-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.content {
  width: 100%;
  height: 100%;
  padding: clamp(22px, 4vw, 62px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vh, 22px);
  pointer-events: none;
}

.title-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  width: min(58vw, 800px);
  margin: 0;
  line-height: 0;
}

h1 img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .42));
}

.cum-score {
  position: relative;
  margin-top: clamp(-18px, -1.3vw, -8px);
  margin-right: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff4e8;
  text-shadow: 3px 3px 0 #120b08, 0 8px 22px rgba(0, 0, 0, .48);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.cum-score strong {
  font-size: 1.45em;
}

.cum-score.pop {
  animation: score-pop .42s cubic-bezier(.2, .9, .25, 1.45);
}

.score-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  color: #ecff52;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  text-shadow: 3px 3px 0 #120b08;
  pointer-events: none;
  animation: burst-up .7s ease-out forwards;
}

@keyframes score-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.34) rotate(-3deg); color: #ecff52; }
  100% { transform: scale(1); }
}

@keyframes burst-up {
  0% { opacity: 0; transform: translate(-50%, -30%) scale(.45) rotate(-8deg); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -170%) scale(1.2) rotate(6deg); }
}

#cum-now {
  pointer-events: auto;
  min-width: min(390px, 88vw);
  min-height: 92px;
  margin-bottom: clamp(10px, 2vh, 24px);
  padding: 18px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 4px solid #120b08;
  border-radius: 999px;
  background: #ecff52;
  color: #120b08;
  box-shadow: 10px 10px 0 #120b08, 0 18px 50px rgba(0, 0, 0, .35);
  font: inherit;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -.045em;
  cursor: pointer;
  transform: rotate(-2deg);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  animation: cum-pulse .68s ease-in-out infinite;
}

#cum-now i {
  font-style: normal;
  font-size: .75em;
}

#cum-now.activated {
  animation: none;
}

@keyframes cum-pulse {
  0%, 100% {
    transform: rotate(-2deg) scale(1);
    box-shadow: 10px 10px 0 #120b08, 0 18px 50px rgba(0, 0, 0, .35);
  }
  50% {
    transform: rotate(-2deg) scale(1.075);
    box-shadow: 13px 13px 0 #120b08, 0 23px 60px rgba(236, 255, 82, .28);
  }
}

#cum-now:hover,
#cum-now.hovering {
  box-shadow: 7px 7px 0 #120b08, 0 16px 38px rgba(0, 0, 0, .34);
  animation: cum-shake .13s linear infinite;
}

@keyframes cum-shake {
  0% { transform: rotate(-2deg) scale(1.09) translate(0, 0); }
  25% { transform: rotate(.2deg) scale(1.09) translate(3px, -2px); }
  50% { transform: rotate(-3.6deg) scale(1.09) translate(-3px, 2px); }
  75% { transform: rotate(-.2deg) scale(1.09) translate(2px, 2px); }
  100% { transform: rotate(-2deg) scale(1.09) translate(0, 0); }
}

#cum-now:focus-visible {
  outline: 5px solid #fff4e8;
  outline-offset: 7px;
}

.playing .shade { opacity: .35; }
.playing #cum-now { background: #f5b8c0; }

@media (max-width: 650px) {
  .utility-bar {
    padding: 15px 13px;
    align-items: flex-start;
  }

  .contract-copy {
    width: auto;
    min-height: 42px;
    padding: 9px 13px;
  }

  .contract-full { display: none; }
  .contract-short { display: inline; }

  .socials {
    gap: 7px;
  }

  .socials a {
    min-height: 42px;
    padding: 9px 12px;
  }

  .socials svg {
    width: 16px;
    height: 16px;
  }

  .content { padding: 24px 18px 32px; }

  h1 {
    width: 94vw;
  }

  .cum-score {
    margin-top: -4px;
    margin-right: 0;
  }

  #cum-now {
    min-height: 76px;
    min-width: min(330px, 88vw);
    gap: 20px;
  }
}
