:root {
  --bg: #06020d;
  --ink: #fff8ec;
  --muted: #d7c2ad;
  --gold: #f6bd38;
  --gold-soft: #ffe38a;
  --gold-deep: #9b5305;
  --violet: #b73cff;
  --panel: rgba(14, 6, 24, 0.86);
  --panel-strong: rgba(20, 8, 32, 0.96);
  --line: rgba(246, 189, 56, 0.34);
  --line-hot: rgba(246, 189, 56, 0.72);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
  --serif: Georgia, "Times New Roman", serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12rem, rgba(246, 189, 56, 0.26), transparent 34rem),
    radial-gradient(circle at 12% 34rem, rgba(183, 60, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 46rem, rgba(246, 120, 28, 0.15), transparent 26rem),
    linear-gradient(180deg, #06020d 0%, #12061d 46%, #07020d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 72%, transparent);
}

a {
  color: inherit;
}

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

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(6, 2, 13, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #170900;
  background: radial-gradient(circle at 35% 24%, #fff6b8, var(--gold) 48%, var(--gold-deep));
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(246, 189, 56, 0.38);
  font-weight: 950;
}

.desktop-nav,
.admin-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.desktop-nav a,
.admin-header a,
.site-footer a,
.mobile-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.desktop-nav a:hover,
.admin-header a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 9px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.poster-hero {
  width: min(1040px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2.2rem) 0 3.8rem;
  text-align: center;
}

.poster-frame {
  position: relative;
  width: min(820px, 100%);
  height: min(78vh, 980px);
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(246, 189, 56, 0.62);
  border-radius: 1rem;
  background: #0d0515;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 48px rgba(246, 189, 56, 0.22),
    0 28px 110px rgba(0, 0, 0, 0.72);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 2, 13, 0) 58%, rgba(6, 2, 13, 0.78) 100%),
    radial-gradient(circle at 50% 55%, transparent 0 42%, rgba(6, 2, 13, 0.28) 78%);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.04);
}

.hero-panel {
  position: relative;
  width: min(760px, calc(100% - 1.5rem));
  margin: -5.5rem auto 0;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(246, 189, 56, 0.46);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 7, 30, 0.9), rgba(8, 3, 15, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(246, 189, 56, 0.18), transparent 65%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

.section-kicker,
.kicker {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket-section h2,
.checkout h2,
.legal-card h1,
.admin-header h1,
.admin-card h1 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-panel p:not(.section-kicker) {
  max-width: 620px;
  margin: 0.9rem auto 0;
  color: #ffe0a5;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.gold-button,
.ghost-button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.gold-button,
.card-button {
  border: 1px solid rgba(255, 235, 150, 0.58);
  background: linear-gradient(180deg, #ffe177 0%, #e3970c 52%, #8f4904 100%);
  box-shadow:
    0 0 24px rgba(246, 189, 56, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.full {
  width: 100%;
}

.ticket-section,
.checkout,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.ticket-section {
  padding: 0 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.ticket-section h2,
.checkout h2 {
  font-size: clamp(2.25rem, 6vw, 4.2rem);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.8vw, 1.6rem);
  margin-top: 1.8rem;
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(183, 60, 255, 0.68);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 189, 56, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(31, 12, 48, 0.96), rgba(10, 4, 18, 0.98));
  box-shadow: var(--shadow);
}

.ticket-card::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.55rem;
}

.ticket-card.featured {
  border-color: var(--line-hot);
  box-shadow:
    0 0 42px rgba(246, 189, 56, 0.33),
    var(--shadow);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.36rem 0.75rem;
  color: #1c0d00;
  background: var(--gold);
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.lotus {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 2.55rem;
  text-shadow: 0 0 26px rgba(246, 189, 56, 0.55);
}

.ticket-card h3 {
  margin: 0.8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  text-transform: uppercase;
}

.price {
  margin: 0.6rem 0 1rem;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
}

.featured .price {
  color: var(--gold-soft);
}

.ticket-card ul {
  flex: 1;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.ticket-card li {
  margin: 0.72rem 0;
  color: var(--muted);
}

.ticket-card li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--gold);
  font-weight: 950;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: start;
  padding: 0 0 clamp(3rem, 7vw, 5rem);
}

.checkout-copy {
  position: sticky;
  top: 6rem;
  padding: 1.35rem;
  border-left: 1px solid var(--line-hot);
}

.checkout-copy p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.checkout-stack {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.ticket-form,
.payment-box,
.legal-card,
.admin-card,
.booking-table,
.stat-grid article {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 189, 56, 0.1), transparent 42%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.ticket-form {
  padding: clamp(1rem, 3vw, 1.75rem);
}

.notice {
  padding: 1rem;
  margin: 0 0 1rem;
  border-radius: 0.7rem;
  line-height: 1.5;
}

.notice strong {
  display: block;
  margin-top: 0.25rem;
}

.notice.success {
  color: #081f0e;
  background: linear-gradient(180deg, #d7ffd5, #acefb8);
}

.notice.error {
  color: #3a0808;
  background: #ffc4c4;
}

.payment-result {
  display: grid;
  gap: 1rem;
}

.payment-box {
  padding: 1rem;
}

.payment-box h3 {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.payment-box p {
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.55;
}

.payment-data {
  display: grid;
  gap: 0.45rem;
}

.payment-data div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.65fr) 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-data span,
.field span,
.consent,
.quantity-row small,
td small {
  color: var(--muted);
}

.payment-data strong {
  overflow-wrap: anywhere;
}

.payment-data button,
.paid-form button,
.status-form button {
  min-height: 2.35rem;
  border: 0;
  border-radius: 0.45rem;
  color: #1b0d00;
  background: var(--gold);
  font-weight: 950;
  cursor: pointer;
}

.ticket-controls,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.quantity-row,
.field {
  display: grid;
  gap: 0.45rem;
}

.quantity-row {
  grid-template-columns: 1fr 5.8rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.045);
}

.field {
  margin-top: 0.9rem;
}

.field span,
.consent,
.quantity-row strong {
  font-weight: 850;
}

.quantity-row strong,
.quantity-row small {
  display: block;
}

.quantity-row small {
  margin-top: 0.2rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

textarea {
  resize: vertical;
}

.payment-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
}

.payment-choice legend {
  padding: 0 0.45rem;
  color: var(--gold);
  font-weight: 950;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.045);
}

.payment-option input,
.consent input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.2rem;
}

.payment-option small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-total strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page,
.admin-page {
  background:
    radial-gradient(circle at 70% 0%, rgba(246, 189, 56, 0.16), transparent 24rem),
    linear-gradient(180deg, #080311, #12071c);
}

.legal-shell,
.admin-login {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.legal-card,
.admin-card {
  padding: clamp(1.2rem, 4vw, 3rem);
}

.legal-card section {
  margin-top: 1.8rem;
}

.legal-card h2,
.booking-table h2 {
  color: var(--gold);
}

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

.legal-back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.legal-note {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.admin-card {
  width: min(460px, 100%);
}

.admin-shell {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-grid article,
.booking-table {
  padding: 1rem;
}

.stat-grid span {
  color: var(--muted);
}

.stat-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 2rem;
}

.stat-grid small {
  color: rgba(248, 238, 225, 0.62);
  font-weight: 750;
}

.booking-table {
  margin-top: 1.5rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  color: var(--gold);
}

td small {
  display: block;
}

.status-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
}

.paid-form {
  margin-top: 0.65rem;
}

.paid-form button {
  width: 100%;
  background: #bff7c8;
}

.paid-pill {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #08210d;
  background: #bff7c8;
  font-weight: 950;
}

.empty-state {
  color: var(--muted);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    position: fixed;
    inset: 4.8rem 1rem auto;
    z-index: 40;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: var(--panel-strong);
    box-shadow: var(--shadow);
  }

  .poster-frame {
    height: min(72vh, 760px);
    min-height: 520px;
  }

  .ticket-grid,
  .checkout {
    grid-template-columns: 1fr;
  }

  .checkout-copy {
    position: static;
  }

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

  .admin-header,
  .admin-header nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .poster-hero {
    width: min(100% - 1rem, 560px);
    padding-top: 0.65rem;
  }

  .poster-frame {
    height: 68vh;
    min-height: 455px;
    border-radius: 0.75rem;
  }

  .hero-panel {
    width: calc(100% - 0.7rem);
    margin-top: -3.8rem;
    border-radius: 0.8rem;
  }

  .hero-actions {
    display: grid;
  }

  .ticket-section,
  .checkout,
  .site-footer {
    width: min(100% - 1rem, 560px);
  }

  .ticket-card {
    min-height: 24rem;
    padding: 1.35rem;
  }

  .ticket-controls,
  .form-grid,
  .payment-choice,
  .status-form {
    grid-template-columns: 1fr;
  }

  .quantity-row {
    grid-template-columns: 1fr 5rem;
  }

  .payment-data div {
    grid-template-columns: 1fr;
  }
}

/* Agency-level visual layer */
:root {
  --lux-bg: #05020a;
  --lux-panel: rgba(14, 7, 20, 0.78);
  --lux-panel-solid: #120819;
  --lux-border: rgba(255, 198, 82, 0.42);
  --lux-border-soft: rgba(255, 255, 255, 0.11);
  --lux-purple: #2a0d37;
  --lux-copy: #f8eee1;
}

body.public-page {
  background:
    radial-gradient(circle at 72% 14%, rgba(250, 179, 44, 0.2), transparent 22rem),
    radial-gradient(circle at 18% 28%, rgba(117, 36, 168, 0.24), transparent 24rem),
    linear-gradient(180deg, #05020a 0%, #110616 46%, #06020b 100%);
}

.public-page .site-header {
  padding: 1rem clamp(1rem, 5vw, 4.5rem);
  background: rgba(5, 2, 10, 0.82);
}

.public-page .brand {
  letter-spacing: 0.1em;
}

.hero-stage {
  width: min(1260px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3.2rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-copy-block {
  position: relative;
  padding: clamp(1rem, 2vw, 1.4rem) 0;
}

.hero-copy-block::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.hero-copy-block h1 {
  margin: 0;
  max-width: 10.5ch;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 6.2vw, 5.9rem);
  line-height: 0.91;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin: 1.2rem 0 0;
  color: #ffe4ad;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.48;
  font-weight: 720;
}

.event-strip {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.event-strip span {
  width: fit-content;
  padding: 0.55rem 0.85rem;
  color: var(--lux-copy);
  border: 1px solid rgba(255, 198, 82, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
}

.hero-stage .hero-actions {
  justify-content: flex-start;
  margin-top: 1.8rem;
}

.hero-stage .poster-frame {
  width: min(100%, 560px);
  height: clamp(430px, 118vw, 690px);
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 1.1rem;
  justify-self: center;
  transform: perspective(1200px) rotateY(-3deg);
}

.hero-stage .poster-frame img {
  object-fit: cover;
  object-position: center 8%;
}

.hero-stage .poster-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 70px rgba(0, 0, 0, 0.44);
}

.hero-stage .poster-frame::after {
  background: linear-gradient(180deg, rgba(6, 2, 13, 0.02), rgba(6, 2, 13, 0.16));
}

.gold-button,
.card-button {
  color: #190b00;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ticket-section {
  padding-top: clamp(1rem, 4vw, 3rem);
}

.ticket-section h2,
.checkout h2 {
  margin-top: 0.2rem;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  letter-spacing: 0.01em;
}

.ticket-grid {
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2rem);
}

.ticket-card {
  min-height: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-color: rgba(255, 198, 82, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 50% 0%, rgba(255, 198, 82, 0.16), transparent 42%),
    #13081b;
  backdrop-filter: blur(16px);
}

.ticket-card.featured {
  transform: translateY(-0.75rem);
  border-color: rgba(255, 215, 120, 0.85);
}

.ticket-card h3 {
  min-height: 2.4em;
  display: grid;
  place-items: center;
}

.ticket-card ul {
  margin-top: 0.2rem;
}

.ticket-card .card-button {
  width: 100%;
}

.checkout {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  padding-top: clamp(1rem, 3vw, 2rem);
}

.checkout-copy {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--lux-border);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(11, 5, 18, 0.72);
}

.checkout-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  overflow-wrap: break-word;
}

.checkout-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--muted);
}

.checkout-note strong {
  color: var(--gold);
}

.ticket-form,
.payment-box,
.legal-card,
.admin-card,
.booking-table,
.stat-grid article {
  border-color: var(--lux-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    rgba(14, 7, 22, 0.92);
}

.ticket-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quantity-row,
.payment-option,
input,
select,
textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(246, 189, 56, 0.35);
  border-color: rgba(246, 189, 56, 0.7);
}

.site-footer {
  color: rgba(248, 238, 225, 0.74);
}

.admin-page .admin-header {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(5, 2, 10, 0.88);
}

.admin-header h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.admin-shell {
  display: grid;
  gap: 1.25rem;
}

.stat-grid article {
  min-height: 8rem;
  display: grid;
  align-content: center;
}

.booking-table {
  padding: 1.25rem;
}

.booking-table h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

table {
  border-spacing: 0;
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  background: rgba(255, 255, 255, 0.018);
}

.status-form select,
.status-form button,
.paid-form button {
  min-height: 2.7rem;
}

.paid-form button {
  color: #06170b;
  background: linear-gradient(180deg, #d9ffd8, #8de8a3);
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .hero-stage,
  .checkout {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    order: 2;
    text-align: center;
  }

  .hero-copy-block::before {
    display: none;
  }

  .hero-copy-block h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .event-strip {
    justify-items: center;
  }

  .hero-stage .hero-actions {
    justify-content: center;
  }

  .hero-stage .poster-frame {
    order: 1;
    width: min(520px, 100%);
    transform: none;
  }

  .checkout-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .ticket-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero-stage {
    width: min(100% - 1rem, 560px);
    gap: 1.2rem;
    padding-top: 0.9rem;
  }

  .hero-copy-block h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .event-strip span {
    width: 100%;
  }

  .ticket-card h3 {
    min-height: auto;
  }

  .payment-choice {
    grid-template-columns: 1fr;
  }
}

/* Checkout wizard */
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.75rem 0.85rem;
  color: rgba(248, 238, 225, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
}

.checkout-steps span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  color: #1a0b00;
  background: rgba(246, 189, 56, 0.78);
}

.checkout-steps li.is-active {
  color: var(--ink);
  border-color: rgba(246, 189, 56, 0.72);
  box-shadow: 0 0 28px rgba(246, 189, 56, 0.12);
}

.checkout-steps li.is-complete {
  color: var(--gold);
}

.checkout-step {
  display: none;
  scroll-margin-top: 6rem;
}

.checkout-step.is-active {
  display: block;
}

.step-card {
  padding: clamp(1.1rem, 3vw, 2rem);
  min-width: 0;
  border: 1px solid var(--lux-border);
  border-radius: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    rgba(14, 7, 22, 0.92);
  box-shadow: var(--shadow);
}

.step-card h3 {
  margin: 0 0 0.8rem;
  max-width: 100%;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.step-card > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.wizard-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.wizard-ticket {
  min-height: 7rem;
  padding: 1rem;
  color: var(--ink);
  text-align: left;
  border: 1px solid rgba(255, 198, 82, 0.32);
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 189, 56, 0.14), transparent 52%),
    rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.wizard-ticket strong,
.wizard-ticket span {
  display: block;
}

.wizard-ticket strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.wizard-ticket span {
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 950;
}

.wizard-ticket.is-selected,
.quantity-row.is-selected,
.ticket-card .card-button.is-selected {
  border-color: rgba(246, 189, 56, 0.86);
  box-shadow: 0 0 26px rgba(246, 189, 56, 0.18);
}

.wizard-ticket.is-primary-selection,
.quantity-row.is-primary-selection,
.ticket-card .card-button.is-primary-selection {
  outline: 2px solid rgba(255, 226, 138, 0.38);
  outline-offset: 3px;
}

.selected-ticket-panel {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(246, 189, 56, 0.52);
  border-radius: 0.78rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 189, 56, 0.22), transparent 46%),
    rgba(255, 255, 255, 0.055);
}

.selected-ticket-panel span,
.selected-ticket-panel small {
  color: var(--muted);
  font-weight: 800;
}

.selected-ticket-panel strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  text-transform: uppercase;
}

.quantity-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 0.75rem;
}

.quantity-head span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quantity-head small {
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.4;
  text-align: right;
}

.slot-field {
  display: none;
}

.slot-field.is-relevant {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid rgba(246, 189, 56, 0.38);
  border-radius: 0.78rem;
  background: rgba(246, 189, 56, 0.055);
}

.slot-free-note span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slot-free-note strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.slot-free-note small {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.45;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}

.step-actions .gold-button {
  flex: 1;
}

.payment-instruction {
  position: relative;
  overflow: hidden;
}

.payment-instruction::before {
  content: "Schritt 3";
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout.is-payment-result {
  grid-template-columns: 1fr;
}

.checkout.is-payment-result .checkout-copy {
  position: static;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.checkout.is-payment-result .checkout-stack {
  width: min(880px, 100%);
  margin: 0 auto;
}

.checkout.is-payment-result .checkout-steps li[data-step-indicator="ticket"],
.checkout.is-payment-result .checkout-steps li[data-step-indicator="details"] {
  color: var(--gold);
}

.payment-reference {
  border-color: rgba(246, 189, 56, 0.5) !important;
  background: rgba(246, 189, 56, 0.08);
}

.payment-reference strong {
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  letter-spacing: 0.04em;
}

.payment-final-note {
  margin-top: 1rem !important;
  padding: 0.9rem;
  border: 1px solid rgba(246, 189, 56, 0.35);
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.18);
  color: #ffe4ad !important;
  font-weight: 850;
}

.payment-finish-button {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 760px) {
  .checkout-steps,
  .wizard-ticket-grid {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column;
  }

  .checkout-steps li {
    min-height: 2.85rem;
    padding: 0.65rem;
    font-size: 0.92rem;
  }

  .checkout-steps span {
    width: 1.55rem;
    height: 1.55rem;
  }

  .step-card h3 {
    font-size: clamp(1.55rem, 8.4vw, 2.25rem);
    line-height: 1.04;
  }

  .quantity-head {
    display: grid;
  }

  .quantity-head small {
    text-align: left;
  }
}

.ops-admin-shell,
.ops-login-shell {
  min-height: 100vh;
  color: var(--ink, #fff6de);
  background:
    radial-gradient(circle at 50% -8rem, rgba(246, 189, 56, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 26%, rgba(183, 60, 255, 0.22), transparent 24rem),
    linear-gradient(180deg, #06020d 0%, #12061d 48%, #07020d 100%);
}

.ops-admin-shell {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: clamp(18px, 3vw, 36px);
}

.ops-login-shell {
  display: grid;
  place-items: center;
  padding: 22px;
}

.ops-login-card {
  width: min(100%, 460px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 203, 101, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 203, 101, 0.16), transparent 58%),
    rgba(12, 5, 20, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 60px rgba(246, 189, 56, 0.13);
}

.ops-login-card h1,
.ops-admin-title h1,
.ops-section-head h2,
.ops-payment-card h3,
.ops-booking-card h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif, Georgia, "Times New Roman", serif);
}

.ops-login-card h1,
.ops-admin-title h1 {
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.ops-login-copy {
  margin: 14px 0 24px;
  color: rgba(232, 212, 174, 0.82);
  line-height: 1.58;
}

.ops-eyebrow {
  margin: 0 0 8px;
  color: var(--gold-soft, #ffcb65);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ops-admin-hero,
.ops-panel,
.ops-kpi-grid article {
  border: 1px solid rgba(255, 203, 101, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 189, 56, 0.13), transparent 58%),
    rgba(12, 5, 20, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 22px 70px rgba(0, 0, 0, 0.42);
}

.ops-admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  min-height: 210px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 203, 101, 0.25), transparent 20rem),
    radial-gradient(circle at 12% 28%, rgba(183, 60, 255, 0.3), transparent 22rem),
    linear-gradient(135deg, rgba(17, 7, 27, 0.96), rgba(6, 2, 13, 0.94));
}

.ops-admin-title {
  display: grid;
  gap: 8px;
}

.ops-admin-title span {
  color: rgba(232, 212, 174, 0.86);
  font-weight: 800;
}

.ops-admin-nav,
.ops-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-admin-nav a,
.ops-button-secondary,
.ops-button,
.ops-status-form button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
}

.ops-admin-nav a,
.ops-button-secondary,
.ops-status-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 203, 101, 0.3);
  color: #fff6de;
  background: rgba(255, 255, 255, 0.055);
}

.ops-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 229, 151, 0.76);
  color: #241000;
  background: linear-gradient(180deg, #ffdc77, #f6bd38 58%, #d98509);
  box-shadow: 0 0 30px rgba(246, 189, 56, 0.26);
  cursor: pointer;
}

.ops-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ops-kpi-grid article {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 20px;
  border-radius: 20px;
}

.ops-kpi-grid span,
.ops-booking-meta span,
.ops-status-form span,
.ops-detail-grid dt {
  color: rgba(232, 212, 174, 0.74);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ops-kpi-grid strong {
  color: var(--gold-soft, #ffcb65);
  font-family: var(--serif, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.ops-kpi-grid small,
.ops-detail-grid dd,
.ops-booking-meta small,
.ops-booking-main span {
  color: rgba(232, 212, 174, 0.78);
}

.ops-panel {
  padding: clamp(18px, 3vw, 30px);
  border-radius: 24px;
}

.ops-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ops-section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}

.ops-section-head > span {
  color: var(--gold-soft, #ffcb65);
  font-weight: 950;
}

.ops-payment-grid,
.ops-booking-list {
  display: grid;
  gap: 14px;
}

.ops-payment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-payment-card,
.ops-booking-card {
  border: 1px solid rgba(255, 203, 101, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(7, 4, 15, 0.6);
}

.ops-payment-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.ops-card-topline,
.ops-booking-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.ops-card-topline strong,
.ops-booking-code {
  margin: 0;
  color: var(--gold-soft, #ffcb65);
  font-weight: 950;
  letter-spacing: 0.06em;
}

.ops-card-topline span {
  color: #fffaf0;
  font-family: var(--serif, Georgia, "Times New Roman", serif);
  font-size: 1.6rem;
  font-weight: 900;
}

.ops-payment-card h3,
.ops-booking-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
}

.ops-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.ops-detail-grid div,
.ops-booking-meta div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.ops-detail-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.ops-ticket-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ops-ticket-lines span,
.ops-pill,
.ops-paid-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 203, 101, 0.26);
  border-radius: 999px;
  color: #fff6de;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 900;
}

.ops-booking-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.ops-status-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.ops-pill-paid {
  border-color: rgba(120, 255, 187, 0.32);
  color: #adffd1;
  background: rgba(68, 255, 159, 0.09);
}

.ops-pill-open {
  border-color: rgba(255, 203, 101, 0.38);
  color: var(--gold-soft, #ffcb65);
  background: rgba(246, 189, 56, 0.1);
}

.ops-booking-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(150px, 0.55fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.ops-booking-meta strong {
  color: #fffaf0;
  overflow-wrap: anywhere;
}

.ops-booking-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.ops-status-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr)) auto;
  gap: 10px;
}

.ops-status-form label {
  display: grid;
  gap: 6px;
}

.ops-status-form select,
.ops-login-card input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 203, 101, 0.28);
  border-radius: 14px;
  color: #fff6de;
  background: rgba(0, 0, 0, 0.24);
}

.ops-status-form select {
  padding: 0 12px;
}

.ops-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(255, 203, 101, 0.28);
  border-radius: 16px;
  color: rgba(232, 212, 174, 0.84);
  background: rgba(255, 255, 255, 0.035);
}

.ops-flash {
  margin: 0;
}

@media (max-width: 980px) {
  .ops-admin-hero,
  .ops-section-head,
  .ops-card-topline,
  .ops-booking-main,
  .ops-booking-actions {
    display: grid;
  }

  .ops-kpi-grid,
  .ops-payment-grid,
  .ops-booking-meta,
  .ops-status-form {
    grid-template-columns: 1fr;
  }

  .ops-status-stack {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .ops-admin-shell {
    padding: 14px;
  }

  .ops-admin-hero,
  .ops-panel,
  .ops-payment-card,
  .ops-booking-card {
    border-radius: 18px;
  }

  .ops-admin-nav a,
  .ops-button,
  .ops-button-secondary,
  .ops-status-form button {
    width: 100%;
  }

  .ops-detail-grid {
    grid-template-columns: 1fr;
  }
}

.ops-ticket-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.ops-ticket-detail {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 203, 101, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 203, 101, 0.12), transparent 58%),
    rgba(0, 0, 0, 0.16);
}

.ops-ticket-detail span {
  color: var(--gold-soft, #ffcb65);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.ops-ticket-detail strong {
  color: #fffaf0;
}

.ops-ticket-detail small {
  color: rgba(232, 212, 174, 0.8);
  font-weight: 800;
}

.slot-application-page {
  background:
    radial-gradient(circle at 50% 5%, rgba(246, 189, 56, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 38%, rgba(183, 60, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #05020a 0%, #16071f 48%, #05020a 100%);
}

.slot-hero,
.slot-application-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.slot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(58px, 8vw, 110px) 0 clamp(34px, 6vw, 72px);
}

.slot-hero-copy h1,
.slot-section-head h2 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.slot-hero-copy .hero-lead,
.slot-section-head p {
  max-width: 760px;
  color: rgba(255, 246, 222, 0.86);
  font-size: clamp(1.02rem, 2.3vw, 1.28rem);
  font-weight: 700;
  line-height: 1.65;
}

.slot-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.slot-impact-grid article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 203, 101, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 203, 101, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.045);
}

.slot-impact-grid strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.slot-impact-grid span {
  color: rgba(232, 212, 174, 0.82);
  font-weight: 800;
  line-height: 1.4;
}

.slot-hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 203, 101, 0.36);
  border-radius: 28px;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(246, 189, 56, 0.16);
}

.slot-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.slot-application-section {
  padding: clamp(30px, 6vw, 74px) 0 clamp(64px, 9vw, 110px);
}

.slot-section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.slot-section-head h2 {
  max-width: 920px;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
}

.slot-success,
.slot-error {
  margin-bottom: 18px;
}

.slot-application-form {
  display: grid;
  gap: 18px;
}

.slot-picker,
.slot-form-panel {
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 203, 101, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 203, 101, 0.13), transparent 45%),
    rgba(9, 3, 15, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.slot-picker legend {
  padding: 0 10px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  text-transform: uppercase;
}

.slot-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.slot-day-card {
  display: grid;
  gap: 14px;
}

.slot-day-card h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 2rem;
}

.slot-options {
  display: grid;
  gap: 10px;
}

.slot-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 203, 101, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.slot-option:has(input:checked) {
  border-color: rgba(255, 203, 101, 0.84);
  background: rgba(246, 189, 56, 0.12);
  box-shadow: 0 0 28px rgba(246, 189, 56, 0.12);
}

.slot-option.is-blocked {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-option input {
  accent-color: var(--gold);
}

.slot-option span {
  display: grid;
  gap: 4px;
}

.slot-option strong {
  color: #fffaf0;
  font-weight: 950;
}

.slot-option small,
.slot-option em {
  color: rgba(232, 212, 174, 0.78);
  font-style: normal;
  font-weight: 800;
}

.slot-option em {
  justify-self: end;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.file-field small {
  color: rgba(232, 212, 174, 0.72);
  font-weight: 800;
}

.field input[type="file"] {
  padding: 14px;
  color: rgba(255, 246, 222, 0.9);
}

.slot-admin-panel {
  scroll-margin-top: 20px;
}

.slot-admin-grid {
  display: grid;
  gap: 16px;
}

.slot-admin-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 203, 101, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 203, 101, 0.11), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.slot-admin-image {
  position: relative;
  min-height: 320px;
  background: #07040f;
}

.slot-admin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-admin-image .ops-pill {
  position: absolute;
  left: 14px;
  top: 14px;
  backdrop-filter: blur(10px);
}

.slot-admin-content {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.slot-admin-content h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.slot-admin-creator {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 900;
}

.slot-admin-text {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.slot-admin-text strong {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.slot-admin-text p,
.slot-admin-note {
  margin: 0;
  color: rgba(232, 212, 174, 0.86);
  font-weight: 750;
  line-height: 1.55;
}

.slot-admin-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}

.slot-admin-actions label {
  display: grid;
  gap: 6px;
}

.slot-admin-actions label span {
  color: rgba(232, 212, 174, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slot-admin-actions input {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 203, 101, 0.28);
  border-radius: 14px;
  color: #fff6de;
  background: rgba(0, 0, 0, 0.24);
  font: inherit;
}

@media (max-width: 980px) {
  .slot-hero,
  .slot-day-grid,
  .slot-admin-card,
  .slot-admin-actions {
    grid-template-columns: 1fr;
  }

  .slot-impact-grid {
    grid-template-columns: 1fr;
  }

  .slot-hero {
    min-height: auto;
    padding-top: 110px;
  }
}

@media (max-width: 620px) {
  .slot-hero,
  .slot-application-section {
    width: min(100% - 24px, 1180px);
  }

  .slot-option {
    grid-template-columns: auto 1fr;
  }

  .slot-option em {
    grid-column: 2;
    justify-self: start;
  }

  .slot-admin-image {
    min-height: 260px;
  }
}

/* Slot application v2: focused 4-step creator journey */
.slot-application-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -8rem, rgba(246, 189, 56, 0.2), transparent 30rem),
    radial-gradient(circle at 12% 34%, rgba(183, 60, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #05020a 0%, #16071f 48%, #05020a 100%);
}

.slot-application-page .site-header {
  border-bottom: 1px solid rgba(255, 203, 101, 0.12);
  background: rgba(5, 2, 10, 0.74);
  backdrop-filter: blur(18px);
}

.slot-application-section {
  width: min(1100px, calc(100% - 28px));
  min-height: calc(100vh - 82px);
  padding: clamp(92px, 10vw, 128px) 0 clamp(46px, 7vw, 86px);
}

.slot-wizard {
  position: relative;
}

.slot-wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(620px, 100%);
  margin: 0 auto clamp(18px, 3vw, 26px);
  padding: 6px;
  border: 1px solid rgba(255, 203, 101, 0.2);
  border-radius: 999px;
  list-style: none;
  background: rgba(6, 2, 12, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.slot-wizard-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border-radius: 999px;
  color: rgba(232, 212, 174, 0.68);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slot-wizard-steps span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(255, 203, 101, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
}

.slot-wizard-steps li.is-active {
  color: #160912;
  background: linear-gradient(180deg, #ffe08a, #d98512);
  box-shadow: 0 0 28px rgba(246, 189, 56, 0.32);
}

.slot-wizard-steps li.is-active span {
  border-color: rgba(22, 9, 18, 0.22);
}

.slot-wizard-steps li.is-complete {
  color: var(--gold-soft);
}

.slot-wizard-panel {
  display: none;
}

.slot-wizard-panel.is-active,
.slot-wizard[data-current-step="intro"] [data-slot-step="intro"],
.slot-wizard[data-current-step="slot"] [data-slot-step="slot"],
.slot-wizard[data-current-step="details"] [data-slot-step="details"],
.slot-wizard[data-current-step="success"] [data-slot-step="success"] {
  display: grid;
}

.slot-application-form {
  display: block;
}

.slot-info-panel {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  min-height: min(760px, calc(100vh - 180px));
}

.slot-info-copy,
.slot-select-panel,
.slot-details-panel,
.slot-success-card {
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(255, 203, 101, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 203, 101, 0.14), transparent 46%),
    linear-gradient(145deg, rgba(30, 9, 42, 0.92), rgba(6, 2, 12, 0.94));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.slot-info-copy h1,
.slot-section-head h2,
.slot-success-card h1 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 9vw, 6.6rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.slot-info-copy .hero-lead,
.slot-section-head p,
.slot-success-card p {
  max-width: 720px;
  color: rgba(255, 246, 222, 0.86);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 750;
  line-height: 1.62;
}

.slot-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.slot-impact-grid article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 203, 101, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 203, 101, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.045);
}

.slot-impact-grid strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.slot-impact-grid span {
  color: rgba(232, 212, 174, 0.82);
  font-weight: 850;
  line-height: 1.38;
}

.slot-hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 203, 101, 0.38);
  border-radius: 28px;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(246, 189, 56, 0.16);
}

.slot-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.slot-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.slot-section-head h2 {
  max-width: 850px;
  font-size: clamp(2.2rem, 7vw, 5.1rem);
}

.slot-error {
  width: min(780px, 100%);
  margin: 0 auto 16px;
}

.slot-picker,
.slot-form-panel,
.slot-selected-summary {
  margin: 0;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(255, 203, 101, 0.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 203, 101, 0.11), transparent 45%),
    rgba(9, 3, 15, 0.72);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.slot-picker legend {
  padding: 0 10px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.24rem, 3vw, 1.8rem);
  text-transform: uppercase;
}

.slot-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.slot-day-card {
  display: grid;
  gap: 12px;
}

.slot-day-card h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.slot-options {
  display: grid;
  gap: 9px;
}

.slot-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 203, 101, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.slot-option:has(input:checked),
.slot-option.is-selected {
  border-color: rgba(255, 203, 101, 0.86);
  background: rgba(246, 189, 56, 0.12);
  box-shadow: 0 0 28px rgba(246, 189, 56, 0.14);
}

.slot-option.is-blocked {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-option input {
  accent-color: var(--gold);
}

.slot-option span {
  display: grid;
  gap: 4px;
}

.slot-option strong {
  color: #fffaf0;
  font-weight: 950;
}

.slot-option small,
.slot-option em {
  color: rgba(232, 212, 174, 0.78);
  font-style: normal;
  font-weight: 850;
}

.slot-option em {
  justify-self: end;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.slot-selected-summary {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.slot-selected-summary span,
.slot-wizard-alert {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slot-selected-summary strong {
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  text-transform: uppercase;
}

.slot-selected-summary small {
  color: rgba(232, 212, 174, 0.82);
  font-weight: 850;
}

.slot-form-panel {
  display: grid;
  gap: 15px;
}

.slot-form-panel .form-grid {
  margin: 0;
}

.slot-form-panel .field {
  display: grid;
  gap: 7px;
  margin: 0;
}

.slot-form-panel .field span,
.slot-form-panel .consent {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slot-form-panel input,
.slot-form-panel textarea {
  border: 1px solid rgba(255, 203, 101, 0.25);
  border-radius: 15px;
  color: #fffaf0;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.slot-form-panel textarea {
  min-height: 138px;
  line-height: 1.45;
}

.slot-form-panel .file-field input {
  min-height: 54px;
}

.slot-form-panel .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 0;
  color: rgba(232, 212, 174, 0.84);
  font-size: 0.83rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.slot-form-panel .consent input {
  width: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

.slot-wizard-actions,
.slot-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.slot-wizard-actions .ghost-button,
.slot-wizard-actions .gold-button,
.slot-success-actions .ghost-button,
.slot-success-actions .gold-button {
  min-width: 160px;
  text-align: center;
}

.slot-wizard-alert {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 203, 101, 0.32);
  border-radius: 14px;
  background: rgba(246, 189, 56, 0.1);
}

.file-field small {
  color: rgba(232, 212, 174, 0.72);
  font-weight: 800;
}

.field input[type="file"] {
  padding: 14px;
  color: rgba(255, 246, 222, 0.9);
}

.slot-success-panel {
  min-height: min(620px, calc(100vh - 180px));
  place-items: center;
}

.slot-success-card {
  width: min(760px, 100%);
  text-align: center;
}

@media (max-width: 980px) {
  .slot-info-panel,
  .slot-day-grid {
    grid-template-columns: 1fr;
  }

  .slot-info-panel {
    min-height: auto;
  }

  .slot-impact-grid {
    grid-template-columns: 1fr;
  }

  .slot-hero-media {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .slot-application-section {
    width: min(100% - 22px, 1100px);
    padding-top: 88px;
  }

  .slot-wizard-steps {
    gap: 4px;
    padding: 5px;
  }

  .slot-wizard-steps li {
    gap: 4px;
    min-height: 38px;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }

  .slot-wizard-steps span {
    width: 20px;
    height: 20px;
    font-size: 0.66rem;
  }

  .slot-info-copy,
  .slot-select-panel,
  .slot-details-panel,
  .slot-success-card {
    padding: 18px;
    border-radius: 22px;
  }

  .slot-info-copy h1,
  .slot-section-head h2,
  .slot-success-card h1 {
    font-size: clamp(2.45rem, 15vw, 4.1rem);
  }

  .slot-info-copy .hero-lead,
  .slot-section-head p,
  .slot-success-card p {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .slot-option {
    grid-template-columns: auto 1fr;
  }

  .slot-option em {
    grid-column: 2;
    justify-self: start;
  }

  .slot-wizard-actions,
  .slot-success-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .slot-wizard-actions .ghost-button,
  .slot-wizard-actions .gold-button,
  .slot-success-actions .ghost-button,
  .slot-success-actions .gold-button {
    width: 100%;
  }
}

.scanner-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12rem, rgba(246, 189, 56, 0.26), transparent 34rem),
    radial-gradient(circle at 10% 34%, rgba(183, 60, 255, 0.2), transparent 26rem),
    linear-gradient(180deg, #05020a 0%, #13071f 54%, #05020a 100%);
}

.scanner-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(14px, 4vw, 34px);
}

.scanner-card {
  width: min(100%, 620px);
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 203, 101, 0.48);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 189, 56, 0.18), transparent 48%),
    rgba(11, 4, 18, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 70px rgba(246, 189, 56, 0.16);
}

.scanner-card h1 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 10vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.scanner-copy {
  color: rgba(232, 212, 174, 0.82);
  font-weight: 800;
  line-height: 1.5;
}

.scanner-camera {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 20px 0;
  border: 1px solid rgba(255, 203, 101, 0.42);
  border-radius: 24px;
  background: #030107;
}

.scanner-camera video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner-frame {
  position: absolute;
  inset: 16%;
  border: 2px solid rgba(255, 203, 101, 0.86);
  border-radius: 22px;
  box-shadow:
    0 0 0 999px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(246, 189, 56, 0.34);
}

.scanner-actions,
.scanner-manual {
  display: grid;
  gap: 10px;
}

.scanner-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scanner-manual {
  margin-top: 14px;
}

.scanner-manual label {
  display: grid;
  gap: 8px;
}

.scanner-manual span {
  color: rgba(232, 212, 174, 0.76);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scanner-manual input {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 203, 101, 0.34);
  border-radius: 16px;
  color: #fffaf0;
  background: rgba(0, 0, 0, 0.28);
  font: inherit;
  font-weight: 900;
}

.scanner-result {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 203, 101, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.scanner-result strong {
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.scanner-result span,
.scanner-result small {
  color: rgba(232, 212, 174, 0.86);
  font-weight: 800;
  line-height: 1.45;
}

.scanner-result.is-valid {
  border-color: rgba(120, 255, 187, 0.5);
  background: rgba(68, 255, 159, 0.1);
}

.scanner-result.is-duplicate {
  border-color: rgba(255, 203, 101, 0.5);
  background: rgba(246, 189, 56, 0.11);
}

.scanner-result.is-invalid {
  border-color: rgba(255, 110, 110, 0.5);
  background: rgba(255, 70, 70, 0.1);
}

@media (max-width: 620px) {
  .scanner-actions {
    grid-template-columns: 1fr;
  }
}

/* Mobile ticket-system parity for the uploaded PHP landing page */
body.ticket-mobile-page {
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12rem, rgba(255, 122, 0, 0.2), transparent 24rem),
    radial-gradient(circle at 0% 28%, rgba(92, 26, 112, 0.28), transparent 18rem),
    linear-gradient(180deg, #07040f 0%, #100718 52%, #07040f 100%);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.ticket-mobile-page::before {
  background-image:
    radial-gradient(circle, rgba(255, 203, 101, 0.34) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 122, 0, 0.22) 0 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-position: 16px 22px, 76px 94px, 0 0;
  background-size: 92px 130px, 136px 180px, 4.8rem 4.8rem;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
}

body.ticket-mobile-page.checkout-open {
  overflow: hidden;
}

.ticket-mobile-page button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.ticket-mobile-page button:focus-visible,
.ticket-mobile-page a:focus-visible,
.ticket-mobile-page input:focus-visible,
.ticket-mobile-page textarea:focus-visible {
  outline: 2px solid rgba(255, 203, 101, 0.95);
  outline-offset: 3px;
}

.ticket-mobile-page .ticket-page-shell {
  min-height: 100vh;
  display: grid;
  justify-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 8%, rgba(244, 182, 61, 0.16), transparent 17rem),
    radial-gradient(circle at 50% 54%, rgba(255, 122, 0, 0.1), transparent 20rem);
}

.ticket-mobile-page .ticket-widget {
  position: relative;
  width: min(100%, 430px);
  min-height: calc(100vh - 36px);
  padding: 22px 14px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 101, 0.58);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.16), transparent 11rem),
    radial-gradient(circle at 18% 22%, rgba(121, 37, 150, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(26, 9, 36, 0.96), rgba(7, 4, 15, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0 60px rgba(244, 182, 61, 0.18),
    0 36px 100px rgba(0, 0, 0, 0.72);
}

.ticket-mobile-page .ticket-widget::before,
.ticket-mobile-page .ticket-widget::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(244, 182, 61, 0.23);
  border-radius: 18px;
}

.ticket-mobile-page .ticket-widget::after {
  inset: auto -20% 0;
  height: 42%;
  border: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 122, 0, 0.2), transparent 58%),
    linear-gradient(180deg, transparent, rgba(7, 4, 15, 0.68));
}

.ticket-mobile-page .corner-ornaments {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1;
  fill: none;
  stroke: rgba(255, 203, 101, 0.64);
  stroke-width: 1.1;
  filter: drop-shadow(0 0 9px rgba(244, 182, 61, 0.36));
}

.ticket-mobile-page .ticket-topbar {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 2px 12px;
}

.ticket-mobile-page .ticket-topbar > span {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(244, 182, 61, 0.36);
}

.ticket-mobile-page .ticket-topbar button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 203, 101, 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 203, 101, 0.16), transparent 60%),
    rgba(16, 7, 24, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(244, 182, 61, 0.18);
  cursor: pointer;
}

.ticket-mobile-page .ticket-topbar button i {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 9px rgba(244, 182, 61, 0.46);
  transition: transform 160ms ease, opacity 160ms ease;
}

.ticket-mobile-page .ticket-topbar button.is-open i:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ticket-mobile-page .ticket-topbar button.is-open i:nth-child(2) {
  opacity: 0;
}

.ticket-mobile-page .ticket-topbar button.is-open i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ticket-mobile-page .ticket-menu {
  position: absolute;
  top: 48px;
  right: 0;
  z-index: 12;
  display: grid;
  min-width: 190px;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255, 203, 101, 0.5);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.17), transparent 65%),
    rgba(7, 4, 15, 0.96);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(244, 182, 61, 0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.ticket-mobile-page .ticket-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.ticket-mobile-page .ticket-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ticket-mobile-page .event-poster-card {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 203, 101, 0.54);
  border-radius: 24px;
  background: #100718;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 38px rgba(244, 182, 61, 0.2),
    0 22px 70px rgba(0, 0, 0, 0.46);
}

.ticket-mobile-page .event-poster-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 203, 101, 0.22);
  border-radius: 17px;
}

.ticket-mobile-page .event-poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 4, 15, 0) 62%, rgba(7, 4, 15, 0.42) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 203, 101, 0.12), transparent 52%);
}

.ticket-mobile-page .event-poster-card img {
  display: block;
  width: 100%;
  height: clamp(400px, 112vw, 480px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.03);
}

.ticket-mobile-page .ticket-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: initial;
}

.ticket-mobile-page .ticket-widget-head {
  position: relative;
  z-index: 2;
  padding: 18px 8px 18px;
  text-align: center;
}

.ticket-mobile-page .ticket-widget-head p {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(2.05rem, 9.4vw, 2.8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(244, 182, 61, 0.3);
}

.ticket-mobile-page .ticket-widget-head span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ticket-mobile-page .ticket-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.ticket-mobile-page .ticket-card {
  position: relative;
  display: block;
  min-height: 0;
  padding: 23px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(244, 182, 61, 0.48);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.2), transparent 42%),
    radial-gradient(circle at 15% 12%, rgba(144, 48, 166, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(26, 9, 36, 0.96), rgba(10, 4, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 203, 101, 0.2),
    inset 0 -24px 42px rgba(0, 0, 0, 0.36),
    0 18px 55px rgba(0, 0, 0, 0.5);
  backdrop-filter: none;
  transform: none;
}

.ticket-mobile-page .ticket-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 203, 101, 0.16);
  border-radius: 17px;
}

.ticket-mobile-page .ticket-card::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 18%;
  width: 64%;
  height: 90px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 203, 101, 0.28), transparent 68%);
  filter: blur(4px);
}

.ticket-mobile-page .ticket-card-featured {
  margin: 4px 0;
  padding-top: 26px;
  padding-bottom: 21px;
  border-color: rgba(255, 203, 101, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 203, 101, 0.42),
    inset 0 -28px 48px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(244, 182, 61, 0.3),
    0 0 86px rgba(255, 122, 0, 0.2),
    0 22px 70px rgba(0, 0, 0, 0.58);
  animation: ticketWeekendPulse 5.5s ease-in-out infinite;
}

.ticket-mobile-page .ticket-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 0 0 10px 10px;
  color: #2a1000;
  background: linear-gradient(180deg, #ffdf7b, #f4b63d 58%, #d98509);
  box-shadow: 0 0 22px rgba(244, 182, 61, 0.46);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-mobile-page .ornament-line {
  width: 46%;
  height: 1px;
  margin: 4px auto 10px;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 101, 0.72), transparent);
}

.ticket-mobile-page .lotus-mark {
  display: block;
  width: 86px;
  height: 52px;
  margin: 0 auto 8px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(244, 182, 61, 0.5));
}

.ticket-mobile-page .ticket-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 5.8vw, 1.72rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticket-mobile-page .ticket-price {
  margin: 13px 0 3px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 17vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 0 20px rgba(244, 182, 61, 0.2);
}

.ticket-mobile-page .ticket-card-featured .ticket-price {
  color: var(--gold-soft);
}

.ticket-mobile-page .ticket-subtitle {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 1000;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticket-mobile-page .ticket-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.ticket-mobile-page .ticket-card li {
  position: relative;
  min-height: 22px;
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.42;
}

.ticket-mobile-page .ticket-card li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  top: -1px;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 1000;
  text-shadow: 0 0 10px rgba(244, 182, 61, 0.65);
}

.ticket-mobile-page .ticket-button,
.ticket-mobile-page .gold-button {
  position: relative;
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(255, 229, 157, 0.72);
  border-radius: 999px;
  color: #261000;
  background: linear-gradient(180deg, #ffdf7d 0%, #f4b63d 48%, #d98509 100%);
  box-shadow:
    0 0 24px rgba(244, 182, 61, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.ticket-mobile-page .ticket-button:hover,
.ticket-mobile-page .ticket-button.is-selected,
.ticket-mobile-page .gold-button:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 34px rgba(244, 182, 61, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.ticket-mobile-page .ticket-button:active,
.ticket-mobile-page .gold-button:active {
  transform: scale(0.985);
}

.ticket-mobile-page .ticket-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 8px 2px;
  border-top: 1px solid rgba(255, 203, 101, 0.18);
  color: rgba(232, 212, 174, 0.78);
  text-align: center;
}

.ticket-mobile-page .ticket-footer span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.ticket-mobile-page .ticket-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}

.ticket-mobile-page .ticket-footer a {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.ticket-mobile-page .sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.ticket-mobile-page .sheet-backdrop.is-open,
.ticket-mobile-page.checkout-open .sheet-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ticket-mobile-page .ticket-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 70;
  display: block;
  width: min(100%, 430px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  margin: 0;
  padding: 12px 18px calc(18px + env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 203, 101, 0.66);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.22), transparent 13rem),
    radial-gradient(circle at 18% 38%, rgba(90, 26, 112, 0.28), transparent 12rem),
    linear-gradient(180deg, #1a0924, #07040f);
  box-shadow:
    0 -24px 80px rgba(0, 0, 0, 0.68),
    0 0 46px rgba(244, 182, 61, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 104%);
  transition: opacity 190ms ease, visibility 190ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ticket-mobile-page .ticket-sheet.is-open,
.ticket-mobile-page.checkout-open .ticket-sheet {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ticket-mobile-page .sheet-handle {
  width: 62px;
  height: 5px;
  margin: 0 auto 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  box-shadow: 0 0 18px rgba(244, 182, 61, 0.56);
}

.ticket-mobile-page .checkout-copy {
  position: static;
  top: auto;
  padding: 0 4px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.ticket-mobile-page .checkout-copy .section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.17em;
}

.ticket-mobile-page .checkout-copy h2 {
  margin: 6px 0 3px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-mobile-page .checkout-copy p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.ticket-mobile-page .checkout-note {
  display: none;
}

.ticket-mobile-page .checkout-stack {
  display: grid;
  gap: 0;
  width: 100%;
  min-width: 0;
}

.ticket-mobile-page .checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.ticket-mobile-page .checkout-steps li {
  display: grid;
  min-height: 38px;
  place-items: center;
  gap: 0;
  padding: 0 6px;
  border: 1px solid rgba(255, 203, 101, 0.18);
  border-radius: 999px;
  color: rgba(232, 212, 174, 0.74);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ticket-mobile-page .checkout-steps span {
  display: none;
}

.ticket-mobile-page .checkout-steps li.is-active {
  color: #241000;
  border-color: rgba(255, 229, 157, 0.8);
  background: linear-gradient(180deg, #ffdf7d, #f4b63d 58%, #d98509);
  box-shadow: 0 0 18px rgba(244, 182, 61, 0.26);
}

.ticket-mobile-page .checkout-steps li.is-complete {
  color: var(--gold-soft);
  border-color: rgba(255, 203, 101, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 203, 101, 0.14), rgba(255, 122, 0, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.ticket-mobile-page .ticket-form,
.ticket-mobile-page .step-card,
.ticket-mobile-page .payment-box {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ticket-mobile-page .ticket-form,
.ticket-mobile-page .step-card {
  padding: 0;
}

.ticket-mobile-page .step-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 8.4vw, 2.25rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.ticket-mobile-page .step-card > p:not(.section-kicker) {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.ticket-mobile-page .wizard-ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 1rem;
}

.ticket-mobile-page .wizard-ticket,
.ticket-mobile-page .selected-ticket-panel,
.ticket-mobile-page .quantity-row,
.ticket-mobile-page .slot-free-note,
.ticket-mobile-page .payment-option,
.ticket-mobile-page .form-total,
.ticket-mobile-page .consent,
.ticket-mobile-page .notice {
  border: 1px solid rgba(255, 203, 101, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.ticket-mobile-page .wizard-ticket {
  min-height: 74px;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.ticket-mobile-page .wizard-ticket strong,
.ticket-mobile-page .wizard-ticket span {
  display: block;
}

.ticket-mobile-page .wizard-ticket strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.14rem;
  text-transform: uppercase;
}

.ticket-mobile-page .wizard-ticket span {
  margin-top: 0.3rem;
  color: var(--gold-soft);
  font-weight: 950;
}

.ticket-mobile-page .wizard-ticket.is-selected,
.ticket-mobile-page .quantity-row.is-selected {
  border-color: rgba(255, 203, 101, 0.72);
  box-shadow: 0 0 22px rgba(244, 182, 61, 0.16);
}

.ticket-mobile-page .selected-ticket-panel {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  padding: 15px;
  border-color: rgba(255, 203, 101, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.16), transparent 70%),
    rgba(0, 0, 0, 0.22);
}

.ticket-mobile-page .selected-ticket-panel span,
.ticket-mobile-page .selected-ticket-panel small,
.ticket-mobile-page .quantity-head small {
  color: rgba(232, 212, 174, 0.82);
  font-weight: 800;
  line-height: 1.42;
}

.ticket-mobile-page .selected-ticket-panel strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-mobile-page .quantity-head {
  display: grid;
  gap: 5px;
  margin: 14px 0 9px;
}

.ticket-mobile-page .quantity-head span,
.ticket-mobile-page .field span,
.ticket-mobile-page .payment-choice legend,
.ticket-mobile-page .form-total span,
.ticket-mobile-page .slot-free-note span,
.ticket-mobile-page .payment-data span {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket-mobile-page .ticket-controls,
.ticket-mobile-page .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.ticket-mobile-page .quantity-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.ticket-mobile-page .quantity-row strong {
  display: block;
  color: #fff;
  font-weight: 950;
}

.ticket-mobile-page .quantity-row small {
  display: block;
  margin-top: 3px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.ticket-mobile-page input,
.ticket-mobile-page textarea {
  border: 1px solid rgba(255, 203, 101, 0.25);
  border-radius: 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font: inherit;
  font-weight: 750;
}

.ticket-mobile-page .quantity-row input {
  min-height: 45px;
  padding: 0 10px;
  text-align: center;
}

.ticket-mobile-page .slot-field {
  display: none;
}

.ticket-mobile-page .slot-field.is-relevant {
  display: grid;
  gap: 4px;
  margin-top: 11px;
  padding: 14px;
  border-color: rgba(255, 203, 101, 0.38);
  background: rgba(246, 189, 56, 0.06);
}

.ticket-mobile-page .slot-free-note strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.ticket-mobile-page .slot-free-note small {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.45;
}

.ticket-mobile-page .field {
  display: grid;
  gap: 7px;
  margin-top: 0;
}

.ticket-mobile-page .form-grid {
  margin-top: 18px;
}

.ticket-mobile-page .field input {
  min-height: 48px;
  padding: 0 13px;
}

.ticket-mobile-page .field textarea {
  min-height: 82px;
  padding: 12px 13px;
  resize: vertical;
}

.ticket-mobile-page .payment-choice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.ticket-mobile-page .payment-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
}

.ticket-mobile-page .payment-option:has(input:checked) {
  border-color: rgba(255, 203, 101, 0.72);
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 182, 61, 0.16), transparent 65%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 22px rgba(244, 182, 61, 0.16);
}

.ticket-mobile-page .payment-option input,
.ticket-mobile-page .consent input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.ticket-mobile-page .payment-option strong {
  color: #fff;
  font-weight: 1000;
}

.ticket-mobile-page .payment-option small {
  display: block;
  margin-top: 3px;
  color: rgba(232, 212, 174, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.ticket-mobile-page .form-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 14px 0;
  padding: 14px;
  border-color: rgba(255, 203, 101, 0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.16), transparent 70%),
    rgba(0, 0, 0, 0.22);
}

.ticket-mobile-page .form-total strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 2rem;
}

.ticket-mobile-page .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 14px;
  padding: 13px;
  color: rgba(255, 246, 222, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.ticket-mobile-page .consent a {
  color: var(--gold-soft);
}

.ticket-mobile-page .step-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.ticket-mobile-page .ghost-button {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-mobile-page .notice {
  padding: 14px;
  margin: 0 0 14px;
  color: rgba(255, 246, 222, 0.9);
  line-height: 1.5;
}

.ticket-mobile-page .notice.success {
  color: #102411;
  background: linear-gradient(180deg, #e3ffda, #a9efb4);
}

.ticket-mobile-page .notice.error {
  color: #ffd9d9;
  border-color: rgba(255, 94, 94, 0.45);
  background: rgba(120, 18, 18, 0.34);
}

.ticket-mobile-page .payment-instruction {
  display: grid;
  gap: 14px;
  padding: 0;
}

.ticket-mobile-page .payment-instruction::before {
  content: none;
}

.ticket-mobile-page .payment-box h3 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-mobile-page .payment-box p {
  margin: 0;
  color: rgba(255, 246, 222, 0.86);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.5;
}

.ticket-mobile-page .payment-data {
  display: grid;
  gap: 9px;
}

.ticket-mobile-page .payment-data div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.ticket-mobile-page .payment-data strong {
  color: #fff;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  font-weight: 950;
}

.ticket-mobile-page .payment-data button {
  min-height: 34px;
  border: 1px solid rgba(255, 203, 101, 0.48);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ticket-mobile-page .payment-reference {
  border-color: rgba(255, 203, 101, 0.52) !important;
  background: rgba(246, 189, 56, 0.08) !important;
}

.ticket-mobile-page .payment-reference strong {
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 6vw, 1.65rem);
  letter-spacing: 0.04em;
}

.ticket-mobile-page .payment-final-note {
  margin-top: 0 !important;
  padding: 0.9rem;
  border: 1px solid rgba(246, 189, 56, 0.35);
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.18);
  color: #ffe4ad !important;
  font-weight: 850;
}

.ticket-mobile-page .payment-finish-button {
  display: inline-flex;
  margin-top: 2px;
}

@keyframes ticketWeekendPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 203, 101, 0.42),
      inset 0 -28px 48px rgba(0, 0, 0, 0.38),
      0 0 34px rgba(244, 182, 61, 0.25),
      0 0 78px rgba(255, 122, 0, 0.16),
      0 22px 70px rgba(0, 0, 0, 0.58);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 203, 101, 0.58),
      inset 0 -28px 48px rgba(0, 0, 0, 0.38),
      0 0 48px rgba(244, 182, 61, 0.4),
      0 0 96px rgba(255, 122, 0, 0.24),
      0 22px 70px rgba(0, 0, 0, 0.58);
  }
}

@media (min-width: 780px) {
  .ticket-mobile-page .ticket-page-shell {
    align-items: start;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .ticket-mobile-page .ticket-widget,
  .ticket-mobile-page .ticket-sheet {
    width: min(100%, 460px);
  }
}

@media (max-width: 390px) {
  .ticket-mobile-page .ticket-page-shell {
    padding: 10px;
  }

  .ticket-mobile-page .ticket-widget {
    min-height: calc(100vh - 20px);
    padding: 18px 11px 22px;
    border-radius: 20px;
  }

  .ticket-mobile-page .event-poster-card img {
    height: clamp(360px, 108vw, 430px);
  }

  .ticket-mobile-page .ticket-card h2 {
    white-space: normal;
  }
}

/* Slot page aligned with the mobile landing-page poster system */
.ticket-mobile-page.slot-application-page .ticket-widget,
.ticket-mobile-page .slot-application-widget {
  width: min(100%, 430px);
}

.ticket-mobile-page.slot-application-page .slot-application-section,
.ticket-mobile-page .slot-application-widget .slot-application-section {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  padding: 0;
}

.ticket-mobile-page .slot-poster-card {
  margin-bottom: 16px;
}

.ticket-mobile-page .slot-wizard {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.ticket-mobile-page .slot-wizard-steps {
  width: 100%;
  margin: 0;
  padding: 5px;
  gap: 4px;
  border-color: rgba(255, 203, 101, 0.28);
  background: rgba(7, 4, 15, 0.72);
}

.ticket-mobile-page .slot-wizard-steps li {
  min-height: 36px;
  gap: 4px;
  font-size: 0.6rem;
  letter-spacing: 0.03em;
}

.ticket-mobile-page .slot-wizard-steps span {
  width: 20px;
  height: 20px;
  font-size: 0.64rem;
}

.ticket-mobile-page .slot-info-panel,
.ticket-mobile-page .slot-select-panel,
.ticket-mobile-page .slot-details-panel,
.ticket-mobile-page .slot-success-panel {
  grid-template-columns: 1fr;
  min-height: auto;
}

.ticket-mobile-page .slot-info-copy,
.ticket-mobile-page .slot-select-panel,
.ticket-mobile-page .slot-details-panel,
.ticket-mobile-page .slot-success-card {
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 182, 61, 0.16), transparent 12rem),
    radial-gradient(circle at 15% 15%, rgba(144, 48, 166, 0.13), transparent 12rem),
    linear-gradient(180deg, rgba(26, 9, 36, 0.94), rgba(10, 4, 18, 0.97));
  box-shadow:
    inset 0 0 0 1px rgba(255, 203, 101, 0.14),
    0 18px 55px rgba(0, 0, 0, 0.42);
}

.ticket-mobile-page .slot-info-copy h1,
.ticket-mobile-page .slot-section-head h2,
.ticket-mobile-page .slot-success-card h1 {
  max-width: 100%;
  font-size: clamp(1.8rem, 8vw, 2.2rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

.ticket-mobile-page .slot-info-copy .hero-lead,
.ticket-mobile-page .slot-section-head p,
.ticket-mobile-page .slot-success-card p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.ticket-mobile-page .slot-impact-grid {
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 18px 0;
}

.ticket-mobile-page .slot-impact-grid article {
  min-height: 0;
  padding: 14px;
  border-radius: 16px;
}

.ticket-mobile-page .slot-impact-grid strong {
  font-size: 1.75rem;
}

.ticket-mobile-page .slot-day-grid {
  grid-template-columns: 1fr;
}

.ticket-mobile-page .slot-picker,
.ticket-mobile-page .slot-form-panel,
.ticket-mobile-page .slot-selected-summary {
  padding: 14px;
  border-radius: 18px;
}

.ticket-mobile-page .slot-option {
  grid-template-columns: auto 1fr;
  min-height: 64px;
  border-radius: 15px;
}

.ticket-mobile-page .slot-option span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ticket-mobile-page .slot-option strong,
.ticket-mobile-page .slot-option small {
  display: block;
  line-height: 1.15;
}

.ticket-mobile-page .slot-option small {
  color: rgba(232, 212, 174, 0.82);
  font-size: 0.82rem;
}

.ticket-mobile-page .slot-option em {
  grid-column: 2;
  justify-self: start;
}

.ticket-mobile-page .slot-form-panel {
  gap: 14px;
}

.ticket-mobile-page .slot-form-panel .form-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.ticket-mobile-page .slot-form-panel textarea {
  min-height: 132px;
}

.ticket-mobile-page .slot-wizard-actions,
.ticket-mobile-page .slot-success-actions,
.ticket-mobile-page .slot-info-copy .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ticket-mobile-page .slot-wizard-actions .ghost-button,
.ticket-mobile-page .slot-wizard-actions .gold-button,
.ticket-mobile-page .slot-success-actions .ghost-button,
.ticket-mobile-page .slot-success-actions .gold-button,
.ticket-mobile-page .slot-info-copy .ghost-button,
.ticket-mobile-page .slot-info-copy .gold-button {
  width: 100%;
  min-width: 0;
}

.ticket-mobile-page .ticket-topbar > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 203, 101, 0.32);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(16, 7, 24, 0.62);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
