:root {
  --ink: #fff7ec;
  --muted: #d1c3ad;
  --line: rgba(255, 247, 236, .18);
  --panel: rgba(22, 20, 18, .76);
  --accent: #ffcf5a;
  --accent-2: #72dcc2;
  --accent-3: #f06d82;
  --shadow: rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 207, 90, .16), transparent 26rem),
    radial-gradient(circle at 78% 20%, rgba(114, 220, 194, .13), transparent 24rem),
    linear-gradient(135deg, #12110f 0%, #211b1b 52%, #101817 100%);
  overflow-x: hidden;
}

.builder-page {
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 207, 90, .18), transparent 24rem),
    radial-gradient(circle at 80% 18%, rgba(114, 220, 194, .15), transparent 24rem),
    linear-gradient(135deg, #12110f 0%, #211b1b 52%, #101817 100%);
}

.builder-shell {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 28px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  place-items: center;
}

.builder {
  width: 100%;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(18px);
}

.builder-brand {
  margin-bottom: 0;
}

.builder-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 6vw, 4rem);
}

.builder-form {
  display: grid;
  gap: 12px;
}

.builder-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.builder-result {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.builder-result span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.builder-result output {
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.preview-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  place-items: center;
}

.hero {
  width: 100%;
}

.copy {
  max-width: 780px;
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
}

.brand-logo {
  display: block;
  width: min(210px, 58vw);
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .3));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 6.8vw, 5.55rem);
  line-height: .95;
  letter-spacing: 0;
}

.intro {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.layout {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(320px, 1.05fr);
  gap: 18px;
}

.stage,
.panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(18px);
}

.stage {
  min-height: 610px;
  padding: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
}

.gate {
  position: relative;
  width: min(356px, 78vw);
  aspect-ratio: 1;
  place-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  isolation: isolate;
}

.gate::before,
.gate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
}

.gate::before {
  animation: spin 18s linear infinite;
  background: conic-gradient(from 40deg, var(--accent), transparent, var(--accent-2), transparent, var(--accent-3), var(--accent));
}

.gate::after {
  inset: 9%;
  background: rgba(9, 8, 8, .72);
  box-shadow: inset 0 0 54px rgba(255, 255, 255, .06);
}

.gate__glow {
  position: absolute;
  inset: 16%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 36%, transparent), transparent 68%);
  filter: blur(2px);
}

.gate__mark {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 16vw, 7rem);
  font-weight: 800;
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 55%, transparent);
}

.speak-main {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  min-height: 48px;
  min-width: 164px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #14120f;
  background: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
}

.chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.panel {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.form {
  display: grid;
  gap: 12px;
}

.locked-summary {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}

.locked-summary div:not(.actions) {
  display: grid;
  gap: 6px;
}

.locked-summary span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.locked-summary strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
  font: inherit;
  outline: none;
}

select option {
  color: #191715;
}

textarea {
  resize: vertical;
  min-height: 78px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 70%, white 20%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.primary,
.ghost {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 16px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.primary {
  border: 0;
  color: #14120f;
  background: var(--accent);
}

.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
}

.message,
.url-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.message {
  padding: 18px;
}

.message__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.message h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.message p {
  color: var(--muted);
  line-height: 1.75;
}

.url-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, .18);
}

.url-box span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.url-box output {
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.is-speaking .gate__mark {
  animation: breathe 900ms ease infinite alternate;
}

@keyframes spin {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  to {
    transform: scale(1.08);
    filter: brightness(1.25);
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 22px, 720px);
    padding: 18px 0;
    place-items: start center;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .stage {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .stage,
  .panel {
    padding: 14px;
  }

  .gate {
    width: min(292px, 82vw);
  }

  .actions {
    grid-template-columns: 1fr;
  }

  .chips {
    display: grid;
  }

  .builder {
    padding: 16px;
  }

  .builder-actions {
    grid-template-columns: 1fr;
  }
}

.shop-cta {
  position: fixed;
  top: max(10px, env(safe-area-inset-top));
  right: 10px;
  z-index: 5;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  max-width: min(238px, calc(100vw - 20px));
  min-height: 42px;
  padding: 6px 10px 6px 6px;
  border: 1px solid rgba(255, 207, 90, .48);
  border-radius: 999px;
  color: #14120f;
  background: linear-gradient(135deg, #fff6d8, #ffcf5a 58%, #72dcc2);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .3);
  text-decoration: none;
}

.shop-cta::after {
  content: "İsme özel sesli sürpriz";
  position: absolute;
  right: 10px;
  top: calc(100% + 5px);
  max-width: 188px;
  color: rgba(255, 247, 236, .92);
  font-size: .68rem;
  font-weight: 760;
  line-height: 1.15;
  text-align: right;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.shop-cta__badge {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff7ec;
  background: #181511;
  font-size: .62rem;
  font-weight: 900;
}

.shop-cta__copy {
  overflow-wrap: anywhere;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.08;
}

.shell {
  width: min(430px, calc(100% - 20px));
  min-height: 100dvh;
  padding: 8px 0 14px;
  place-items: start center;
}

.copy {
  max-width: none;
  margin: 54px 0 8px;
  padding: 8px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 10, 9, .52);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
  text-align: center;
}

.brand {
  justify-content: center;
  margin: 0 auto 7px;
}

.brand-logo {
  width: min(174px, 48vw);
  max-height: 58px;
}

.eyebrow {
  margin-bottom: 6px;
  font-size: .68rem;
}

h1 {
  max-width: none;
  margin-bottom: 6px;
  font-size: clamp(1.15rem, 5vw, 1.58rem);
  line-height: 1.12;
}

.intro {
  max-width: none;
  font-size: .84rem;
  line-height: 1.35;
}

.layout {
  grid-template-columns: 1fr;
  gap: 10px;
}

.stage,
.panel {
  border-color: rgba(255, 247, 236, .2);
  background: rgba(13, 12, 13, .66);
}

.stage {
  min-height: 132px;
  padding: 10px;
  grid-template-rows: auto auto;
  overflow: hidden;
}

.gate {
  width: 100%;
  min-height: 86px;
  aspect-ratio: auto;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .18));
}

.gate::before,
.gate::after {
  display: none;
}

.celebration-burst {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gate__mark {
  z-index: 2;
  font-size: 2.65rem;
}

.speak-main {
  position: relative;
  z-index: 3;
  bottom: auto;
  min-width: min(210px, 76%);
  min-height: 42px;
  align-self: end;
  margin-top: 38px;
}

.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.chips span {
  justify-content: center;
  min-height: 32px;
  border-radius: 8px;
  font-size: .74rem;
  text-align: center;
}

.panel {
  padding: 12px;
  gap: 10px;
}

.recipient-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .2);
}

.recipient-card__avatar {
  grid-row: 1 / span 2;
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #14120f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
  font-size: 1.6rem;
  font-weight: 950;
}

.recipient-card__main,
.recipient-card__detail {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.recipient-card__detail {
  grid-column: 1 / -1;
  grid-template-columns: 92px 1fr;
  align-items: center;
}

.recipient-card span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 820;
}

.recipient-card strong {
  overflow-wrap: anywhere;
  font-size: .94rem;
}

.recipient-card__main strong {
  font-size: 1.32rem;
  line-height: 1.08;
}

.actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.primary,
.stop-button {
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.stop-button {
  border: 1px solid rgba(255, 247, 236, .28);
  color: var(--ink);
  background: rgba(255, 255, 255, .07);
}

.message {
  padding: 13px;
}

.message__top {
  margin-bottom: 12px;
  font-size: .78rem;
}

.message h2 {
  margin-bottom: 9px;
  font-size: 1.28rem;
}

.message p {
  margin-bottom: 0;
  font-size: .95rem;
  line-height: 1.55;
}

.gate.celebration-fireworks .celebration-burst::before,
.gate.celebration-fireworks .celebration-burst::after {
  content: "";
  position: absolute;
  inset: 7px;
  background:
    radial-gradient(circle at 18% 26%, var(--accent) 0 2px, transparent 3px),
    radial-gradient(circle at 25% 22%, var(--accent-2) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 32%, var(--accent-3) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 20%, #fff7ec 0 2px, transparent 3px),
    radial-gradient(circle at 54% 62%, var(--accent) 0 2px, transparent 3px);
  animation: fireworksPop 1.35s ease-in-out infinite;
}

.gate.celebration-fireworks .celebration-burst::after {
  inset: 18px;
  animation-delay: .5s;
}

.gate.celebration-hearts .celebration-burst::before {
  content: "♥   ♥   ♥   ♥";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  color: var(--accent-3);
  font-size: 1.32rem;
  letter-spacing: .55rem;
  text-align: center;
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent-3) 58%, transparent);
  animation: heartsFloat 2.6s linear infinite;
}

.gate.celebration-confetti .celebration-burst::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--accent) 0 8px, transparent 8px),
    linear-gradient(90deg, var(--accent-2) 0 7px, transparent 7px),
    linear-gradient(90deg, var(--accent-3) 0 6px, transparent 6px);
  background-size: 42px 52px, 36px 48px, 52px 44px;
  background-position: 0 0, 18px 10px, 9px 22px;
  opacity: .42;
  animation: confettiFall 1.8s linear infinite;
}

.gate.celebration-sparkles .celebration-burst::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, #fff7ec 0 1px, transparent 2px),
    radial-gradient(circle at 80% 28%, var(--accent) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 75%, var(--accent-2) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 70%, var(--accent-3) 0 1px, transparent 2px);
  animation: sparklePulse 1.4s ease-in-out infinite alternate;
}

@keyframes fireworksPop {
  0% {
    transform: scale(.72);
    opacity: .2;
  }

  55% {
    transform: scale(1.08);
    opacity: .92;
  }

  100% {
    transform: scale(1.22);
    opacity: .18;
  }
}

@keyframes heartsFloat {
  to {
    transform: translateY(-120px);
    opacity: 0;
  }
}

@keyframes confettiFall {
  to {
    background-position: 0 52px, 18px 58px, 9px 66px;
  }
}

@keyframes sparklePulse {
  to {
    opacity: .42;
    transform: scale(1.04);
  }
}

@media (max-width: 420px) {
  .shop-cta {
    max-width: 188px;
  }

  .shop-cta::after {
    display: none;
  }

  .copy {
    margin-top: 50px;
  }

  .recipient-card__detail {
    grid-template-columns: 78px 1fr;
  }
}

/* Konusan Kupa celebration theme */
:root {
  --ink: #211018;
  --muted: #6a335a;
  --line: rgba(33, 16, 24, .22);
  --panel: rgba(255, 255, 255, .92);
  --accent: #ffc400;
  --accent-2: #6b13a8;
  --accent-3: #ec1680;
  --shadow: rgba(75, 10, 110, .22);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .34) 0 2px, transparent 3px) 0 0 / 18px 18px,
    radial-gradient(circle at 92% 8%, rgba(236, 22, 128, .28), transparent 22rem),
    radial-gradient(circle at 24% 88%, rgba(107, 19, 168, .42), transparent 24rem),
    linear-gradient(135deg, #ffc400 0%, #ffb000 48%, #ff7a00 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

body::before {
  left: -40px;
  right: -40px;
  bottom: -82px;
  z-index: 0;
  height: 34vh;
  background: linear-gradient(100deg, transparent 0 8%, #3c086b 9% 78%, transparent 79%);
  filter: drop-shadow(0 -12px 24px rgba(62, 6, 102, .18));
  transform: rotate(-2deg);
}

body::after {
  inset: 0;
  z-index: 0;
  opacity: .72;
  background:
    radial-gradient(circle at 7% 14%, transparent 0 9px, rgba(107, 19, 168, .45) 10px 12px, transparent 13px),
    radial-gradient(circle at 86% 20%, transparent 0 10px, rgba(236, 22, 128, .35) 11px 13px, transparent 14px),
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, .18) 58.4% 61%, transparent 61.4%);
}

.shop-cta {
  border: 2px solid #211018;
  color: #211018;
  background: linear-gradient(135deg, #ffffff, #ffc400 54%, #ec1680);
  box-shadow: 0 8px 0 rgba(33, 16, 24, .22), 0 16px 34px rgba(74, 9, 120, .24);
}

.shop-cta::after {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(74, 9, 120, .72);
}

.shop-cta__badge {
  color: #ffffff;
  background: #6b13a8;
}

.copy,
.stage,
.panel {
  border: 2px solid #211018;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 0 rgba(33, 16, 24, .18), 0 18px 44px rgba(74, 9, 120, .2);
  backdrop-filter: none;
}

.promo-art {
  position: relative;
  width: 100%;
  height: clamp(122px, 32vw, 154px);
  margin: 0 0 8px;
  overflow: hidden;
  border: 2px solid #211018;
  border-radius: 8px;
  background: #ffc400;
  box-shadow: inset 0 -18px 0 rgba(107, 19, 168, .2);
}

.promo-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 45% 50%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  color: #ec1680;
}

h1 {
  color: #211018;
  text-shadow: 2px 2px 0 rgba(255, 196, 0, .45);
}

.intro {
  color: #5a2a4e;
}

.gate {
  border: 2px solid #211018;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .72) 0 3px, transparent 4px) 0 0 / 24px 24px,
    linear-gradient(135deg, #6b13a8 0%, #8d1ac9 46%, #ec1680 100%);
}

.gate__mark {
  color: #ffc400;
  -webkit-text-stroke: 1px #211018;
  text-shadow: 3px 3px 0 rgba(33, 16, 24, .5);
}

.speak-main,
.primary {
  border: 2px solid #211018;
  color: #211018;
  background: #ffc400;
  box-shadow: 0 5px 0 #211018;
}

.stop-button {
  border: 2px solid #211018;
  color: #ffffff;
  background: #ec1680;
  box-shadow: 0 5px 0 #211018;
}

.chips span {
  border: 2px solid #211018;
  color: #ffffff;
  background: #6b13a8;
}

.recipient-card {
  border: 2px solid #211018;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, .18), transparent 42%),
    #ffffff;
}

.recipient-card__avatar {
  border: 2px solid #211018;
  color: #ffffff;
  background: linear-gradient(135deg, #ec1680, #6b13a8);
  box-shadow: 0 5px 0 #211018;
}

.recipient-card span,
.message__top {
  color: #8b1971;
}

.recipient-card strong,
.message p {
  color: #211018;
}

.message {
  border: 2px solid #211018;
  background: #ffffff;
  box-shadow: 0 6px 0 rgba(33, 16, 24, .2);
}

.message h2 {
  color: #6b13a8;
}

@media (max-width: 420px) {
  .promo-art {
    height: 112px;
  }
}

.speak-main {
  display: none;
}

.video-status {
  position: relative;
  z-index: 3;
  max-width: min(280px, 86%);
  padding: 8px 12px;
  border: 2px solid #211018;
  border-radius: 999px;
  color: #211018;
  background: #ffffff;
  box-shadow: 0 5px 0 #211018;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.video-countdown {
  position: absolute;
  z-index: 4;
  right: 16px;
  top: 12px;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid #211018;
  border-radius: 50%;
  color: #ffffff;
  background: #ec1680;
  box-shadow: 0 5px 0 #211018, 0 0 30px rgba(255, 196, 0, .72);
  font-size: 1.5rem;
  font-weight: 950;
  animation: countdownPulse .8s ease-in-out infinite alternate;
}

.video-countdown[hidden] {
  display: none;
}

.gate.finale-mode .celebration-burst::before,
.gate.finale-mode .celebration-burst::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, #ffc400, #ec1680, #ffffff, #6b13a8, #ffc400);
  opacity: .72;
  animation: finaleSpin 2.4s linear infinite;
}

.gate.finale-mode .celebration-burst::after {
  inset: 6px;
  background:
    radial-gradient(circle at 20% 20%, #ffffff 0 4px, transparent 5px),
    radial-gradient(circle at 80% 25%, #ffc400 0 6px, transparent 7px),
    radial-gradient(circle at 70% 78%, #ec1680 0 5px, transparent 6px),
    radial-gradient(circle at 30% 72%, #ffffff 0 4px, transparent 5px);
  animation: finalePop 900ms ease-in-out infinite alternate;
}

@keyframes countdownPulse {
  to {
    transform: scale(1.12) rotate(-4deg);
  }
}

@keyframes finaleSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes finalePop {
  to {
    transform: scale(1.1);
    opacity: .46;
  }
}

/* Banner readability and richer video-stage motion */
.promo-art {
  height: clamp(156px, 38vw, 194px);
  padding: 42px 10px 10px;
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 255, 255, .72), transparent 24%),
    linear-gradient(135deg, #ffc400, #ff9400);
}

.promo-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8px 8px, rgba(236, 22, 128, .22) 0 3px, transparent 4px) 0 0 / 16px 16px,
    radial-gradient(circle at 14px 13px, rgba(107, 19, 168, .18) 0 2px, transparent 3px) 0 0 / 22px 22px,
    linear-gradient(105deg, rgba(255, 196, 0, .55) 0 18%, transparent 18.5% 30%, rgba(236, 22, 128, .18) 30.5% 46%, transparent 46.5%),
    linear-gradient(180deg, #fff8d8 0 48px, transparent 49px),
    radial-gradient(circle at 8% 16%, rgba(107, 19, 168, .26) 0 3px, transparent 4px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(107, 19, 168, .18), transparent 26%, transparent 74%, rgba(107, 19, 168, .18));
}

.promo-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 56%;
  top: 18%;
  width: 23%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(236, 22, 128, .26),
    0 0 26px rgba(255, 196, 0, .86);
  animation: cupSpotlight 1.35s ease-in-out infinite alternate;
  pointer-events: none;
}

.promo-art img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 6px 0 rgba(33, 16, 24, .15));
  animation: bannerAlive 3.2s ease-in-out infinite;
}

.promo-title {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 9px;
  transform: translateX(-50%) rotate(-2deg);
  width: max-content;
  max-width: 92%;
  padding: 4px 13px 6px;
  border: 2px solid #211018;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec1680, #6b13a8 54%, #ffc400);
  box-shadow: 0 5px 0 #211018, 0 0 22px rgba(255, 196, 0, .72);
  font-size: clamp(.86rem, 3.7vw, 1.16rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-shadow:
    2px 2px 0 #211018,
    -1px 1px 0 #211018;
  animation: promoTitlePop 1.35s ease-in-out infinite alternate;
  pointer-events: none;
}

.gate {
  min-height: 112px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .24), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .72) 0 3px, transparent 4px) 0 0 / 24px 24px,
    linear-gradient(135deg, #6b13a8 0%, #8d1ac9 42%, #ec1680 100%);
}

.gate::before,
.gate::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.gate::before {
  inset: -32%;
  border-radius: 0;
  background: conic-gradient(from 20deg, transparent, rgba(255, 196, 0, .64), transparent, rgba(255, 255, 255, .42), transparent);
  animation: videoBeamSpin 5s linear infinite;
}

.gate::after {
  inset: 10px;
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 24%, #ffc400 0 3px, transparent 4px),
    radial-gradient(circle at 86% 24%, #ffffff 0 3px, transparent 4px),
    radial-gradient(circle at 76% 78%, #ffc400 0 4px, transparent 5px),
    radial-gradient(circle at 26% 76%, #ec1680 0 4px, transparent 5px);
  opacity: .74;
  animation: videoSparkDance 1.4s ease-in-out infinite alternate;
}

.gate__mark,
.video-status,
.video-countdown {
  position: relative;
}

.video-status {
  max-width: min(318px, 92%);
  background: linear-gradient(135deg, #ffffff, #fff2b3);
  animation: statusBounce 1.2s ease-in-out infinite alternate;
}

.gate.finale-mode .video-status {
  background: linear-gradient(135deg, #ffffff, #ffc400 60%, #ff9ed1);
}

@keyframes bannerAlive {
  0%,
  100% {
    transform: translateY(0) scale(.985);
  }

  50% {
    transform: translateY(-3px) scale(1);
  }
}

@keyframes cupSpotlight {
  to {
    transform: scale(1.1) rotate(-4deg);
    opacity: .58;
  }
}

@keyframes videoBeamSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes videoSparkDance {
  to {
    transform: scale(1.06) translateY(-3px);
    opacity: 1;
  }
}

@keyframes statusBounce {
  to {
    transform: translateY(-2px);
  }
}

@keyframes promoTitlePop {
  to {
    transform: translateX(-50%) rotate(2deg) scale(1.04);
  }
}

.project-credit {
  width: 100%;
  margin: 12px auto 0;
  text-align: center;
}

.project-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 2px solid #211018;
  border-radius: 999px;
  color: #211018;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(33, 16, 24, .22);
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
}

.project-credit a:hover {
  background: #ffc400;
}

.cross-promo {
  width: 100%;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid #211018;
  border-radius: 8px;
  color: #211018;
  background:
    radial-gradient(circle at 8px 8px, rgba(236, 22, 128, .2) 0 3px, transparent 4px) 0 0 / 18px 18px,
    linear-gradient(135deg, #ffffff, #fff1a8 44%, #ffc400);
  box-shadow: 0 8px 0 rgba(33, 16, 24, .18), 0 18px 44px rgba(74, 9, 120, .18);
  text-decoration: none;
  overflow: hidden;
}

.cross-promo__icon {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid #211018;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #6b13a8, #ec1680);
  box-shadow: 0 5px 0 #211018;
  font-size: 1.4rem;
  font-weight: 950;
  animation: crossPromoPop 1.2s ease-in-out infinite alternate;
}

.cross-promo__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cross-promo__body strong {
  font-size: .95rem;
  line-height: 1.12;
}

.cross-promo__body small {
  color: #6a335a;
  font-size: .75rem;
  font-weight: 760;
  line-height: 1.28;
}

.cross-promo__cta {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 2px solid #211018;
  border-radius: 999px;
  color: #ffffff;
  background: #ec1680;
  box-shadow: 0 4px 0 #211018;
  font-size: .78rem;
  font-weight: 950;
}

@keyframes crossPromoPop {
  to {
    transform: rotate(-5deg) scale(1.08);
  }
}

@media (max-width: 420px) {
  .promo-art {
    height: 146px;
    padding-top: 40px;
  }

  .promo-art::after {
    left: 55%;
    top: 20%;
    width: 24%;
  }

  .promo-title {
    top: 8px;
    padding-inline: 10px;
  }
}
