@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lobster&display=swap");

:root {
  --bg: #090909;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(18, 18, 18, 0.88);
  --serif: "Lobster", cursive;
  --mono: "Inter", "Segoe UI", sans-serif;
  --sans: "Inter", "Segoe UI", sans-serif;
  --brand-red: #d71920;
  --brand-red-deep: #8f0f14;
  --brand-black: #090909;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(215, 25, 32, 0.38), rgba(215, 25, 32, 0) 34%),
    linear-gradient(180deg, #260406 0%, #090909 42%, #120304 100%);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--fg);
  background:
    radial-gradient(circle at top, rgba(215, 25, 32, 0.38), rgba(215, 25, 32, 0) 34%),
    linear-gradient(180deg, #260406 0%, #090909 42%, #120304 100%);
  font-family: var(--sans);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.meta,
.meta2 {
  color: var(--muted);
}

.row {
  width: min(1060px, 92vw);
  margin: 0 auto;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
}

.footer-main {
  padding: 28px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer .brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer .brand a {
  display: inline-flex;
}

.right.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.right.legal a {
  text-decoration: none;
}

#consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(420px, calc(100vw - 24px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34, 8, 10, 0.97), rgba(12, 12, 12, 0.97));
  box-shadow: 0 18px 40px rgba(215, 25, 32, 0.2);
}

#consent-banner[hidden] {
  display: none;
}

.consent-text {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}

.consent-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.consent-actions button {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
}

.consent-actions button[data-consent-accept] {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

.tix-brand,
.tix-checkout-brand,
.footer .brand a {
  gap: 12px;
}

.tix-logo,
.footer .brand img {
  display: none !important;
}

.tix-brand::after,
.tix-checkout-brand::after,
.footer .brand a::after {
  content: "Fizz";
  display: inline-block;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: none;
}

.tix-brand::before,
.tix-checkout-brand::before,
.footer .brand a::before {
  content: none;
}

.tix-checkout-brand::after,
.footer .brand a::after {
  font-size: 28px;
}

.tix-hero-brand,
.tix-confirm-head h1,
.tix-confirm-copy h2,
.tix-staff-header h1,
.tix-staff-login-card h1,
.cashless-page h1,
.cashless-page h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.tix-brand-name,
.tix-hero-sub,
.tix-event-kicker,
.right.legal,
.tix-section-title p,
.meta,
.meta2,
.consent-text {
  font-family: var(--sans);
}

.footer a,
.consent-text a {
  color: #fff;
}

.right.legal a:hover,
.consent-text a:hover {
  color: #ffd5d7;
}

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

  .right.legal {
    justify-content: flex-start;
  }

  #consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}
