:root {
  --ink: #16110c;
  --felt: #1c1410;
  --gold: #e8c547;
  --gold-dim: #b8962e;
  --cream: #fbf6ea;
  --paper: #f3e6d0;
  --muted: #cbbfa8;
  --line: rgba(232, 197, 71, 0.28);
  --serif: "Fraunces", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

.splash-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--sans);
  color: var(--cream);
  background: var(--ink);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.splash-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.splash-felt {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 80% -10%, rgba(122, 31, 51, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 110%, rgba(232, 197, 71, 0.12), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent 0 18px,
      rgba(232, 197, 71, 0.03) 18px 19px
    );
}

.splash-shine {
  position: absolute;
  width: 140%;
  height: 40%;
  top: -10%;
  left: -20%;
  background: linear-gradient(115deg, transparent, rgba(251, 246, 234, 0.06), transparent);
  transform: rotate(-8deg);
}

.splash-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.splash-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.splash-status {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.splash-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 6vw, 5rem) 2rem;
  max-width: 920px;
}

.splash-serial {
  margin: 0 0 1rem;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.splash-headline {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.splash-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.splash-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.splash-lead strong {
  color: var(--cream);
  font-weight: 600;
}

.splash-ticket {
  display: flex;
  width: min(420px, 100%);
  margin: 0 0 2rem;
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.splash-ticket-stub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem 0.7rem;
  background: #7a1f33;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-right: 2px dashed rgba(251, 246, 234, 0.35);
}

.splash-ticket-body {
  flex: 1;
  padding: 0.95rem 1.1rem;
}

.splash-ticket-body p {
  margin: 0 0 0.2rem;
  font-size: 13px;
  color: #6b5e4e;
}

.splash-ticket-body strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.splash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.splash-tags li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.splash-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 13px;
  color: var(--muted);
}

.splash-footer p { margin: 0; }

.splash-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.splash-footer a:hover { color: var(--cream); }

@media (max-width: 640px) {
  .splash-top { padding: 1rem 1.1rem; }
  .splash-main { padding-top: 1rem; }
  .splash-footer { flex-direction: column; }
}
