:root {
  color-scheme: dark;
  --bg: #000;
  --bg-raised: #080808;
  --surface: rgba(9, 9, 10, 0.88);
  --surface-strong: rgba(0, 0, 0, 0.94);
  --text: #f7f7f2;
  --muted: #aaa9a3;
  --line: rgba(247, 247, 242, 0.16);
  --magenta: #f0047f;
  --purple: #4a017d;
  --cyan: #efeee7;
  --yellow: #ffe610;
  --fire: #b9794a;
  --metal: #5f6064;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
  --radius: 8px;
  --header: 76px;
  --shell: calc(100vw - clamp(28px, 4vw, 72px));
  --font-display: "Bebas Neue", "Arial Black", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 242, 0, 0.16), transparent 34rem),
    radial-gradient(circle at 14% 28%, rgba(240, 18, 164, 0.12), transparent 31rem),
    linear-gradient(180deg, #000 0%, #050505 48%, #000 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 4px 4px, 96px 96px, 96px 96px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 80%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.ticket-card strong,
.show-plan strong {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  display: grid;
  gap: 10px;
  max-width: 9.5ch;
  font-size: clamp(3.8rem, 7.5vw, 7.4rem);
  line-height: 0.86;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

h1 span {
  display: block;
}

.title-world {
  width: fit-content;
  padding: 8px 14px;
  background: var(--text);
  color: #050505;
  font-size: clamp(0.8rem, 1.3vw, 1.15rem);
  line-height: 1;
  transform: skewX(-10deg);
}

.title-main,
.title-sub {
  position: relative;
  width: fit-content;
  padding: 8px 18px 10px;
  background: var(--yellow);
  color: #090909;
  transform: skewX(-10deg);
}

.title-main::after,
.title-sub::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 68%;
  height: 7px;
  background: var(--magenta);
  content: "";
}

.title-sub {
  background: var(--text);
  color: #090909;
  font-size: 0.55em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 0.96;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  background: var(--magenta);
  color: var(--text);
}

@media (max-width: 720px) {
  :root {
    --shell: min(calc(100vw - 28px), 1180px);
    --header: 68px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 11vw, 5rem);
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 28px);
  }
}
