.ticket-map {
  grid-column: 1 / -1;
}

.form-section {
  display: grid;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.form-section h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.field--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: end;
  gap: 12px;
}

.field--inline input[readonly] {
  cursor: not-allowed;
  background: rgba(226, 232, 255, 0.65);
  border-color: rgba(37, 99, 235, 0.25);
  font-weight: 600;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.payment-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.payment-method:hover,
.payment-method:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -18px rgba(37, 99, 235, 0.6);
}

.payment-method--active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 32px -20px rgba(37, 99, 235, 0.8);
}

.payment-method__icon {
  font-size: 1.1rem;
}
.payment-panel {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.05);
}

.payment-panel[hidden] {
  display: none;
}

.form-feedback {
  min-height: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

.form-feedback--error {
  color: #dc2626;
}

.form-feedback--success {
  color: #16a34a;
}
:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-bg: #edf2ff;
  --color-bg-alt: #f8fbff;
  --color-card: #ffffff;
  --color-primary: #0059ff;
  --color-primary-dark: #0246c4;
  --color-primary-soft: rgba(0, 89, 255, 0.12);
  --color-accent: #0ea5e9;
  --color-text: #0f172a;
  --color-subtle: #55617a;
  --color-border: #d7deed;
  --radius-lg: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -24px rgba(7, 16, 35, 0.32);
  --step-progress: 0.33;
}

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

body {
  margin: 0;
  background:
    radial-gradient(120% 120% at 90% 0%, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0) 60%),
    radial-gradient(90% 120% at 10% 0%, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 58%),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.app-backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(2, 6, 23, 0.85) 0%, rgba(2, 6, 23, 0.6) 40%, rgba(14, 165, 233, 0.35) 100%);
  z-index: -2;
  opacity: 0.86;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 12;
  background: linear-gradient(100deg, #003cb5 0%, #0054f2 55%, #1a6fff 100%);
  box-shadow: 0 20px 44px -32px rgba(2, 6, 23, 0.65);
}

.site-header__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-header__logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__link,
.site-header__cta {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  color: #ffffff;
}

.site-header__cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

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

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  margin-bottom: clamp(32px, 5vw, 56px);
  background: #020617;
  line-height: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.25) 0%, rgba(2, 6, 23, 0.6) 100%);
  pointer-events: none;
}

.hero__background {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 12px 32px -18px rgba(0, 85, 255, 0.75);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

main {
  width: min(1200px, 94%);
  margin: 0 auto 96px;
  display: grid;
  gap: 64px;
  position: relative;
  z-index: 1;
}

section > h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  font-weight: 700;
}

.events__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.event-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -30px rgba(7, 16, 35, 0.6);
  border-color: rgba(0, 89, 255, 0.45);
}

.event-card__media {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.event-card__content {
  padding: 26px;
  display: grid;
  gap: 8px;
}

.event-card__city {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  color: var(--color-primary);
  font-weight: 600;
}

.event-card__date {
  font-size: 1.4rem;
  margin: 0;
}

.event-card__venue span {
  color: var(--color-subtle);
  font-size: 0.95rem;
}

.event-card__cta {
  margin-top: 16px;
  font-weight: 600;
  inline-size: fit-content;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card__cta:hover,
.event-card__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px -24px rgba(0, 89, 255, 0.75);
}

.event-card--active {
  border: 2px solid rgba(0, 89, 255, 0.85);
  box-shadow: 0 30px 48px -32px rgba(2, 6, 23, 0.55);
}

.event-card--active .event-card__cta {
  background: #ffffff;
  color: var(--color-primary);
}

.event-details {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6vw, 48px);
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.event-details[hidden] {
  display: none;
}

.event-details__header {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  align-items: flex-start;
  flex-wrap: wrap;
}

.event-details__city {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.75rem;
  margin: 0 0 6px;
}

.event-details__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.event-details__meta,
.event-details__address,
.event-details__classification {
  margin: 6px 0;
  color: var(--color-subtle);
}

.event-details__back {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.event-details__back:hover,
.event-details__back:focus-visible {
  background: rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

.tickets__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.tickets__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin: 0 0 12px;
}

.tickets__caption {
  max-width: 360px;
  color: var(--color-subtle);
  margin: 0;
}

.tickets__layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 620px) minmax(0, 360px);
  grid-template-areas:
    "map summary"
    "form summary";
  align-items: stretch;
  width: 100%;
  min-height: 640px;
}

.ticket-form {
  grid-area: form;
  background: var(--color-card);
  padding: clamp(24px, 5vw, 32px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.94) 100%),
    var(--color-bg-alt);
}

.ticket-type-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.ticket-type-toggle__btn {
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ticket-type-toggle__btn:hover,
.ticket-type-toggle__btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.18);
}

.ticket-type-toggle__btn--active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 24px -16px rgba(37, 99, 235, 0.8);
}

.ticket-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 16px;
}

.ticket-card {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  background: rgba(248, 250, 255, 0.72);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease, border 0.2s ease;
}

.ticket-card:hover,
.ticket-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(37, 99, 235, 0.45);
}

.ticket-card--active {
  border-color: rgba(37, 99, 235, 0.55);
  background: #ffffff;
  box-shadow: 0 26px 52px -32px rgba(37, 99, 235, 0.55);
}

.ticket-card__title {
  font-size: 1.05rem;
  font-weight: 600;
}

.ticket-card__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.ticket-card__meta {
  font-size: 0.85rem;
  color: var(--color-subtle);
}

.ticket-note {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--color-subtle);
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.ticket-quantity__control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ticket-quantity__control:hover,
.ticket-quantity__control:focus-visible {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.2);
}

.ticket-quantity__control:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.ticket-quantity__value {
  font-size: 1.3rem;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

.ticket-quantity__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-subtle);
}

.form-stepper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 16px 24px;
  position: relative;
  overflow: hidden;
}

.form-stepper::before {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 4px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
}

.form-stepper::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-primary);
  transform-origin: left center;
  transform: scaleX(var(--step-progress));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-stepper__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex: 1;
  justify-content: center;
}

.form-stepper__item[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

.form-stepper__item:hover:not([disabled]),
.form-stepper__item:focus-visible:not([disabled]) {
  background: rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.form-stepper__item--active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 14px 32px -20px rgba(37, 99, 235, 0.75);
}

.form-stepper__item--completed {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
}

.form-stepper__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.form-stepper__label {
  white-space: nowrap;
}

.form-step__header {
  display: grid;
  gap: 4px;
}

.form-step__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.form-step__subtitle {
  margin: 0;
  color: var(--color-subtle);
  font-size: 0.95rem;
}

.form-step__feedback {
  min-height: 18px;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.form-step__feedback--error {
  color: #dc2626;
}

.form-step__feedback--success {
  color: #16a34a;
}

.form-steps {
  display: grid;
  gap: 22px;
  perspective: 1200px;
}

.form-step {
  display: none;
  gap: 18px;
  min-height: 440px;
  flex: 1;
  transform-origin: top center;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.form-step--active {
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.form-step__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.form-step__actions .btn {
  flex: 1;
}

.form-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.form-stack {
  display: grid;
  gap: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
}

select,
input[type="text"],
input[type="number"] {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #f3f6ff);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}

select:focus,
input:focus {
  outline: 3px solid var(--color-primary-soft);
  border-color: rgba(0, 89, 255, 0.45);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 89, 255, 0.35);
}

input[type="number"] {
  width: 120px;
}

.field__note {
  font-size: 0.85rem;
  color: var(--color-subtle);
  margin: 0;
}

.radio-group {
  display: flex;
  gap: 12px;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(207, 217, 236, 0.8);
  background: rgba(248, 250, 255, 0.8);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.radio input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: grid;
  place-items: center;
  position: relative;
}

.radio input::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.radio input:checked::after {
  opacity: 1;
}

.radio input:checked {
  border-color: var(--color-primary);
}

.radio input:focus-visible + span,
.radio:hover {
  border-color: var(--color-primary);
  background: rgba(0, 85, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 85, 255, 0.15);
}

.ticket-summary {
  grid-area: summary;
  background: var(--color-card);
  padding: clamp(24px, 5vw, 30px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  background:
    linear-gradient(150deg, rgba(248, 252, 255, 0.92) 0%, rgba(239, 246, 255, 0.88) 36%, rgba(219, 234, 254, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  position: sticky;
  top: 24px;
  overflow: hidden;
}

.ticket-summary::before {
  content: "";
  position: absolute;
  inset: -50% -20%;
  background: conic-gradient(from 120deg, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.3));
  opacity: 0.25;
  filter: blur(60px);
  z-index: 0;
}

.ticket-summary > * {
  position: relative;
  z-index: 1;
}

.ticket-summary__details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.ticket-summary__details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.ticket-summary__details dt {
  font-weight: 600;
  color: var(--color-subtle);
}

.ticket-summary__details dd {
  margin: 0;
  text-align: right;
}

.ticket-summary__total {
  font-size: 1.2rem;
  border-top: 1px solid rgba(37, 99, 235, 0.16);
  padding-top: 12px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 14px;
  padding: 14px 12px;
}

.ticket-summary__cta {
  text-align: center;
}

.ticket-summary__cta .btn {
  min-width: 220px;
}

.ticket-summary__disclaimer {
  margin: 0;
  color: var(--color-subtle);
  font-size: 0.9rem;
}

.ticket-summary__info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.ticket-summary__badge--ghost {
  background: rgba(15, 23, 42, 0.08);
  color: var(--color-text);
}

.ticket-summary__footnote {
  margin: -6px 0 0;
  font-size: 0.85rem;
  color: var(--color-subtle);
}

.ticket-map {
  grid-area: map;
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 26px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  display: grid;
  gap: 18px;
}

.ticket-map__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
  padding-right: clamp(72px, 12vw, 120px);
}

.ticket-map__controls {
  position: absolute;
  top: clamp(18px, 3vw, 26px);
  right: clamp(18px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 18px 38px -22px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 3;
}

.ticket-map__control {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.4);
}

.ticket-map__control:hover,
.ticket-map__control:focus-visible {
  background: rgba(37, 99, 235, 0.16);
  transform: translateY(-1px);
}

.ticket-map__control:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  background: rgba(15, 23, 42, 0.05);
  box-shadow: none;
}

.ticket-map__viewport {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(241, 245, 255, 0.92) 0%, rgba(219, 234, 254, 0.9) 100%);
  height: clamp(260px, 40vh, 430px);
}

.ticket-map__viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.ticket-map__legend {
  position: absolute;
  bottom: clamp(16px, 3vw, 26px);
  left: clamp(16px, 3vw, 26px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 16px 18px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 32px -26px rgba(15, 23, 42, 0.55);
  max-width: min(260px, 70%);
  z-index: 3;
}

.ticket-map__legend h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.ticket-map__legend ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.legend {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.15);
}

.legend--available {
  background: #0ea5e9;
}

.legend--selected {
  background: #7c3aed;
}

.legend--pcd {
  background: #10b981;
}

.ticket-map__note {
  font-size: 0.82rem;
  color: var(--color-subtle);
  margin: 0;
}

.price-tables {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price-table {
  background: var(--color-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table__note {
  font-size: 0.85rem;
  color: var(--color-subtle);
  margin: 0;
}

.event-section {
  background: var(--color-card);
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.section-caption {
  margin: 0;
  color: var(--color-subtle);
  max-width: 420px;
}

.event-section__content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.promo-card,
.info-card,
.release {
  background: var(--color-card);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 12px;
}

.info-card ul {
  margin: 0;
  padding-left: 20px;
}

.footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  padding: 28px 18px;
  display: grid;
  gap: 10px;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 720px) {
  .ticket-summary__details div {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-summary__details dd {
    text-align: left;
    font-weight: 600;
  }

  .ticket-summary {
    position: relative;
    top: 0;
  }

  .site-header__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    padding: 16px 0 20px;
  }

  .site-header__nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .site-header__brand {
    justify-content: center;
  }

  .site-header__link,
  .site-header__cta {
    text-align: center;
  }

  .form-stepper {
    grid-template-columns: 1fr;
  }

  .form-step__actions {
    flex-direction: column;
  }

  .form-step__actions .btn {
    width: 100%;
  }

  .event-details__header,
  .tickets__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .tickets__layout {
    grid-template-areas:
      "map"
      "form"
      "summary";
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ticket-summary {
    position: relative;
    top: 0;
  }

  .ticket-map {
    position: relative;
    padding: 20px;
  }

  .form-stepper {
    flex-direction: column;
  }

  .form-step__actions {
    flex-direction: column;
  }

  .form-step__actions .btn {
    width: 100%;
  }

  .ticket-map__controls {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    padding: 4px;
    margin-top: 12px;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.08);
  }

  .ticket-map__control {
    width: 40px;
    height: 40px;
  }

  .ticket-map__legend {
    position: static;
    max-width: none;
    box-shadow: none;
    margin-top: 12px;
  }
}

@media (max-width: 540px) {
  .radio-group {
    flex-direction: column;
  }

  input[type="number"] {
    width: 100%;
  }

  .site-header__nav {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .site-header__cta {
    width: 100%;
    text-align: center;
  }
}

