:root {
  color-scheme: dark;
  --zv-black: #0b0000;
  --zv-red: #5b0700;
  --zv-red-soft: #250000;
  --zv-card: rgba(40, 0, 0, .78);
  --zv-gold: #ffd400;
  --zv-gold-soft: #ffe879;
  --zv-text: #fff7ed;
  --zv-muted: rgba(255, 247, 237, .72);
  --zv-line: rgba(255, 212, 0, .24);
  --zv-red-line: rgba(255, 42, 18, .42);
  --font-display: "Sora", "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--zv-text);
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 212, 0, .16), transparent 28%),
    radial-gradient(circle at 15% 20%, rgba(255, 50, 15, .18), transparent 34%),
    linear-gradient(180deg, #130000 0%, #3a0500 45%, #120000 100%);
  font: 500 16px/1.72 var(--font-body) !important;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background:
    linear-gradient(rgba(255, 212, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 12, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  right: -220px;
  top: -220px;
  width: min(780px, 92vw);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .2;
  background:
    repeating-conic-gradient(from 12deg, transparent 0 9deg, rgba(255, 212, 0, .22) 10deg 11deg, transparent 12deg 18deg),
    radial-gradient(circle, transparent 0 52%, rgba(255, 42, 18, .34) 53% 54%, transparent 55%);
  mask-image: radial-gradient(circle, black 0 70%, transparent 72%);
}

main {
  position: relative;
  z-index: 1;
  inline-size: min(980px, calc(100vw - 22px)) !important;
  width: min(980px, calc(100vw - 22px)) !important;
  max-width: calc(100vw - 22px) !important;
  margin: 0 auto !important;
  padding: clamp(26px, 5vw, 54px) 0 84px !important;
}

main,
main *,
.intro {
  max-width: 100%;
}

p,
li,
.intro,
h1,
h2 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  filter: drop-shadow(0 0 24px rgba(255, 44, 12, .55));
}

.back {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px !important;
  padding: 10px 14px;
  border: 1px solid var(--zv-line);
  border-radius: 999px;
  color: var(--zv-gold-soft) !important;
  background: rgba(255, 212, 0, .06);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
}

h1 {
  max-width: 12ch;
  margin: 0 !important;
  color: #fff;
  font-family: var(--font-display) !important;
  font-size: clamp(2.15rem, 7vw, 5.2rem) !important;
  line-height: .94 !important;
  letter-spacing: -.06em !important;
  text-transform: uppercase;
  text-shadow: 0 14px 44px rgba(0, 0, 0, .42);
}

h2 {
  margin: 44px 0 10px !important;
  color: var(--zv-gold) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.12rem, 2vw, 1.35rem) !important;
  line-height: 1.2;
  letter-spacing: -.025em;
}

p,
li {
  color: var(--zv-muted) !important;
}

a {
  color: var(--zv-gold-soft) !important;
}

a:focus-visible {
  outline: 3px solid var(--zv-gold) !important;
  outline-offset: 4px;
}

.updated {
  margin-top: 18px;
  color: rgba(255, 247, 237, .48) !important;
  font-size: .86rem !important;
}

.intro {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  margin: 28px 0 38px !important;
  padding: clamp(18px, 3vw, 26px) !important;
  border: 1px solid var(--zv-red-line) !important;
  border-radius: 18px !important;
  color: rgba(255, 247, 237, .88);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 212, 0, .12), transparent 34%),
    linear-gradient(145deg, rgba(76, 0, 0, .82), rgba(14, 0, 0, .9)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 28px 80px rgba(0, 0, 0, .28);
}

ul,
ol {
  padding-left: 1.25rem;
}

@media (max-width: 640px) {
  main {
    inline-size: min(368px, calc(100% - 22px)) !important;
    width: min(368px, calc(100% - 22px)) !important;
    max-width: min(368px, calc(100% - 22px)) !important;
    margin-left: 11px !important;
    margin-right: auto !important;
    padding-top: 22px !important;
  }

  .legal-brand {
    gap: 10px;
    margin-bottom: 24px;
    font-size: .86rem;
    letter-spacing: .1em;
  }

  .legal-brand img {
    width: 48px;
    height: 48px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 13vw, 3.15rem) !important;
  }

  h2 {
    margin-top: 34px !important;
  }
}
