: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;
  }
}

.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;
  }
}
