/* =========================================================
   TOGICHU — DEBUT TEASER / COMING-SOON PAGE
   Standalone single-page layout. Uses the shared tokens
   (palette, fonts) from base.css.
   ========================================================= */

.teaser-body {
  min-height: 100vh;
  display: flex;
}

.teaser {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 6vw, 80px) var(--gutter);
  overflow: hidden;
}

.teaser-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 130vw);
  height: min(900px, 130vw);
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(223, 64, 120, 0.35), rgba(199, 113, 234, 0.12) 40%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.teaser-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.teaser-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--magenta-2);
  margin: 0 0 1.5rem;
}

.teaser-art {
  width: clamp(200px, 45vw, 360px);
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 12px 40px rgba(223, 64, 120, 0.45));
  animation: teaserFloat 6s var(--ease-out) infinite;
}

@keyframes teaserFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.teaser-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.teaser-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--peach-dim);
  margin: 0 auto 2rem;
  max-width: 40ch;
}

.teaser-date {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

.teaser-countdown {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  justify-content: center;
  margin: 0 0 2.5rem;
}

.teaser-countdown > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.teaser-countdown span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--peach);
  font-variant-numeric: tabular-nums;
}

.teaser-countdown small {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.65rem;
  color: var(--peach-mute);
  margin-top: 0.25rem;
}

.teaser-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.teaser-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0.9rem 1.4rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s, border-color 0.18s, color 0.18s;
}

.teaser-btn:active { transform: scale(0.97); }

.teaser-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* Prominent "Remind me" button */
.teaser-btn.primary {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-2));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.teaser-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(223, 64, 120, 0.55);
}

/* Secondary dark buttons (Twitch / Discord) */
.teaser-btn.dark {
  background: var(--surface-2);
  color: var(--peach-dim);
  border-color: var(--hairline);
}
.teaser-btn.dark:hover {
  transform: translateY(-2px);
  color: var(--peach);
  border-color: var(--magenta);
}

.teaser-foot {
  position: relative;
  z-index: 1;
  margin-top: clamp(32px, 6vw, 64px);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--peach-mute);
}

@media (prefers-reduced-motion: reduce) {
  .teaser-art { animation: none; }
}
