.ticket-confirm {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 5, 10, .78);
  backdrop-filter: blur(8px);
}

.ticket-confirm__card {
  position: relative;
  width: min(100%, 520px);
  padding: 48px 42px 38px;
  text-align: center;
  color: #17131a;
  border: 0;
  border-radius: 0;
  background: #f2eee6;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .58);
}

.ticket-confirm__card::before {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 112px;
  height: 28px;
  content: '';
  background: rgba(185, 177, 164, .82);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  transform: translateX(-50%) rotate(-2deg);
}

.ticket-confirm__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  place-items: center;
  color: #fff9ef;
  font-size: 30px;
  font-weight: 800;
  border-radius: 0;
  background: #c64e25;
  box-shadow: 4px 4px 0 rgba(23, 19, 26, .16);
}

.ticket-confirm__eyebrow {
  margin: 0 0 7px;
  color: #bd4e25;
  font: 700 12px/1 var(--ui);
  letter-spacing: .13em;
}

.ticket-confirm h2 { margin: 0 0 12px; color: #17131a; font-size: clamp(25px, 4vw, 34px); }
.ticket-confirm p:not(.ticket-confirm__eyebrow) { margin: 0; color: #514a45; line-height: 1.6; }
.ticket-confirm__actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.ticket-confirm__actions .btn-primary { color: #fff9ef; border-color: #c64e25; background: #c64e25; }
.ticket-confirm__actions .btn-ghost { color: #17131a; border-color: rgba(23, 19, 26, .35); }

@media (max-width: 520px) {
  .ticket-confirm__card { padding: 42px 20px 28px; }
  .ticket-confirm__actions .btn { width: 100%; }
}
