@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Space+Grotesk:wght@400;600;700&family=Work+Sans:wght@400;500;600&display=swap");

.expo-ticket-page {
  --bg: #050505;
  --panel: #0b0b0b;
  --text: #f3f4f6;
  --muted: #c5c7ce;
  --content-max: 1200px;
  --content-pad: clamp(24px, 6vw, 80px);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

.expo-ticket-page__bar {
  height: 85px;
  background: var(--brand, #db5c34);
}

.expo-ticket-page__logo {
  position: absolute;
  top: 10px;
  left: max(var(--content-pad), calc((100% - var(--content-max)) / 2 + var(--content-pad)));
  height: 170px;
  object-fit: contain;
  z-index: 2;
}

.expo-ticket-page__inner {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(320px, 1fr);
  gap: 48px;
  padding: 48px var(--content-pad);
  max-width: var(--content-max);
  margin: 0 auto;
}

.expo-ticket-page__info {
  padding-top: 110px;
}

.expo-ticket-page__info h1 {
  font-family: "Righteous", "Space Grotesk", sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 24px 0 12px;
}

.expo-ticket-page__event-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 8px;
}

.expo-ticket-page__date {
  color: var(--brand, #db5c34);
  font-weight: 600;
  margin-bottom: 36px;
  font-size: 17px;
}

.expo-ticket-page__section {
  margin-bottom: 32px;
}

.expo-ticket-page__section h2 {
  font-family: "Righteous", "Space Grotesk", sans-serif;
  font-size: 21px;
  margin-bottom: 10px;
}

.expo-ticket-page__section p {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 6px;
}

.expo-ticket-page__back {
  display: inline-block;
  margin-top: 24px;
  background: var(--brand, #db5c34);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  border-radius: 6px;
}

.expo-ticket-page__form {
  background: #ffffff;
  color: #111827;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-family: "Work Sans", sans-serif;
}

.expo-ticket-page__form label {
  color: #111827;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
}

.expo-ticket-page__form .expo-required {
  color: var(--brand, #db5c34);
  font-weight: 600;
}

.expo-ticket-page__form input,
.expo-ticket-page__form select,
.expo-ticket-page__form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #111827;
  font-family: "Work Sans", sans-serif;
}

.expo-ticket-page__form button {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 6px;
  background: #f05a22;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.expo-ticket-page__form .expo-registration__note {
  color: #6b7280;
  font-size: 12px;
  margin-top: 18px;
}

.expo-ticket-page__form .expo-registration__intro {
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}

.expo-ticket-page__form .expo-registration__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}

.expo-ticket-page__form .expo-registration__actions button {
  width: auto;
  flex: 0 0 auto;
  padding: 10px 28px;
  font-size: 14px;
  order: 2;
}

.expo-ticket-page__form .expo-registration__cancel {
  color: #6b7280;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  order: 1;
}

.expo-ticket-page__form .expo-registration__cancel:hover {
  color: #111827;
}

.expo-lang-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: flex-end;
}

.expo-lang {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
}

.expo-lang.is-active {
  color: #111827;
  border-color: #f05a22;
}

@media (max-width: 960px) {
  .expo-ticket-page__inner {
    grid-template-columns: 1fr;
  }
  .expo-ticket-page__form {
    order: 2;
  }
}
