/* ---------------------------------------------------
   Coming soon — Drop 1 portal
--------------------------------------------------- */
html, body.cs-body { height: 100%; }

.cs-body {
  background: var(--blush);
  display: flex;
  flex-direction: column;
}

.cs-header { position: static; }
.cs-header__row { justify-content: center; height: 60px; }

.cs-main {
  position: relative;
  flex: 1;
  display: flex;
}

.cs-hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 12px 0;
}

.cs-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.6vh, 16px);
}

/* ---------------------------------------------------
   Heading: DROP 1 + circus banner ribbon
--------------------------------------------------- */
.cs-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-drop {
  font-size: clamp(2.4rem, 1.8rem + 4vw, 4rem);
}

.cs-soon {
  margin-top: -6px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 0.85rem + 0.7vw, 1.3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--maroon);
  padding: 7px 30px 5px;
  transform: rotate(-2deg);
  clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
  box-shadow: var(--shadow-card);
}

.cs-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cs-reveal__label { margin: 0; }

.cs-reveal__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.05rem + 1.6vw, 1.95rem);
  color: var(--maroon);
  text-shadow: 1.5px 2px 0 var(--blush-deep);
}

/* ---------------------------------------------------
   Stage (static spotlight ring, no motion)
--------------------------------------------------- */
.cs-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 22vh, 260px);
  aspect-ratio: 1;
}

.cs-mascot { width: 62%; }

/* ---------------------------------------------------
   Ticket / countdown plaque
--------------------------------------------------- */
.cs-ticket {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 2.4vh, 22px) 24px clamp(12px, 2vh, 18px);
  box-shadow: var(--shadow-soft);
  border: 2px dashed var(--bubblegum);
}

.cs-ticket__label {
  margin: 0 0 2px;
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--circus-red);
}

.cs-date {
  margin: 0 0 clamp(10px, 1.6vh, 16px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--maroon);
}

.cs-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cs-flap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--maroon);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 10px 4px 8px;
  width: 70px;
  box-shadow: 0 5px 0 0 var(--circus-red-dark);
}

.cs-flap__num-window {
  display: block;
  overflow: hidden;
  line-height: 1;
}

.cs-flap__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cs-flap__num.is-rolling { animation: cs-roll 0.4s cubic-bezier(.2,.8,.3,1); }

@keyframes cs-roll {
  0% { transform: translateY(-100%); opacity: 0; }
  60% { transform: translateY(6%); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cs-flap__num.is-rolling { animation: none; }
}

.cs-flap__unit {
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bubblegum);
}

.cs-sep {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--circus-red);
  transform: translateY(-6px);
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
.cs-footer {
  flex-shrink: 0;
  padding: 10px 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--maroon);
  opacity: 0.6;
}

@media (max-width: 560px) {
  .cs-flap { width: 56px; padding: 8px 3px 6px; }
  .cs-countdown { gap: 5px; }
  .cs-sep { font-size: 1.1rem; }
}
