/* Brand tokens and responsive tiers follow the original Quiz, please! landing. */
@font-face {
  font-family: Gilroy;
  src: url('/assets/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Gilroy;
  src: url('/assets/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Gilroy;
  src: url('/assets/Gilroy-Semibold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Gilroy;
  src: url('/assets/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
:root {
  --purple: #33004c;
  --purple-card: #521470;
  --purple-footer: #450366;
  --pink: #fe0054;
  --pink-dark: #e60045;
  --lavender: #e5b2ff;
  --ink: #29272a;
  --muted: #78717b;
  --light: #f5f4f5;
  --radius: 32px;
  --page-radius: 56px;
  --font-hero: 66px;
  --font-section: 48px;
  --font-body: 18px;
  --font-small: 16px;
  --section-padding: 80px;
  --section-gap: 96px;
  --heading-gap: 32px;
  --grid-gap: 24px;
  --card-padding: 32px;
  --page-gutter: 40px;
  --timeline-column-gap: 32px;
  --timeline-row-gap: 40px;
}
*,*::before,*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--purple);
  color: #fff;
  font-family: Gilroy,system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size: var(--font-body);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
button,a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1,h2,h3,p {
  margin: 0;
}
h1,h2,h3 {
  line-height: 1.2;
  text-wrap: balance;
}
h1 {
  font-size: var(--font-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
h2 {
  font-size: var(--font-section);
  font-weight: 600;
  letter-spacing: -.8px;
}
h3 {
  font-size: 24px;
  font-weight: 600;
}
ul,ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
button:focus-visible,a:focus-visible,summary:focus-visible,video:focus-visible {
  outline: 3px solid #ff8fb4;
  outline-offset: 5px;
}
::selection {
  background: var(--pink);
  color: #fff;
}
[hidden] {
  display: none!important;
}
.container {
  width: calc(100% - 2 * var(--page-gutter));
  max-width: 1160px;
  margin-inline: auto;
}
.section {
  padding-block: calc(var(--section-gap) / 2);
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  background: #fff;
  color: var(--purple);
  padding: 12px 20px;
  border-radius: 12px;
  clip-path: inset(50%);
}
.skip-link:focus {
  transform: translateY(0);
  clip-path: none;
}
.button {
  min-height: 60px;
  padding: 18px 30px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: var(--pink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  transition: background .2s,transform .2s;
}
.button:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}
.button .icon {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}
.button-white {
  background: #fff;
  color: var(--purple);
}
.button-white:hover {
  background: #f4e5fc;
}
.hero-wrap {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  padding-bottom: 84px;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.hero-wrap:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,rgba(0,0,0,.22),transparent 28%,rgba(0,0,0,.1));
}
.site-header {
  height: 98px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 5;
}
.brand img {
  width: 68px;
  height: 48px;
}
.city {
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border-radius: 30px;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 600;
}
.city .icon {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}
.header-nav {
  margin-left: auto;
  display: flex;
  gap: 38px;
  font-size: 16px;
  font-weight: 500;
}
.header-nav a {
  padding: 12px 0;
  transition: opacity .2s;
}
.header-nav a:hover {
  opacity: .7;
}
.menu-toggle,.mobile-menu {
  display: none;
}
.hero {
  padding-top: 42px;
}
.hero-card {
  width: 610px;
  padding: 40px;
  background: #fff;
  color: var(--purple);
  border-radius: var(--radius);
  max-width: 100%;
}
.hero-description {
  margin-top: 20px;
  max-width: 420px;
  font-size: var(--font-body);
  line-height: 1.4;
}
.hero-description-ending {
  white-space: nowrap;
}
.hero-list-label {
  font-size: 16px;
  margin-top: 23px;
  margin-bottom: 12px;
  color: var(--muted);
}
.hero-perks {
  display: grid;
  gap: 10px;
  font-size: var(--font-body);
  line-height: 1.35;
}
.hero-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.perk-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #f5edf8;
  border-radius: 50%;
  color: var(--purple);
  flex-shrink: 0;
}
.perk-icon .icon {
  width: 18px;
  height: 18px;
}
.hero-card .button {
  margin-top: 26px;
  min-width: 248px;
}
.light-panel {
  background: #fff;
  color: var(--purple);
  border-radius: var(--page-radius);
}
.intro {
  position: relative;
  margin-top: -28px;
  padding-block: var(--section-padding);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  color: var(--pink);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 24px;
}
.intro h2 {
  font-size: var(--font-section);
  line-height: 1.2;
}
.intro-copy>p:not(.eyebrow) {
  font-size: var(--font-body);
  line-height: 1.5;
  color: #524c54;
  margin-top: 25px;
}
.stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.stats span {
  background: var(--light);
  padding: 10px 15px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 18px;
  white-space: nowrap;
}
.suitable {
  margin-top: 25px;
}
.suitable h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.check-list {
  display: grid;
  gap: 7px;
  font-size: var(--font-body);
  color: #524c54;
}
.check-list li {
  position: relative;
  padding-left: 25px;
}
.check-list li:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: rotate(-45deg);
}
.intro-photo {
  position: relative;
}
.intro-photo>img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  height: auto;
}
.photo-note {
  position: absolute;
  bottom: 26px;
  left: -35px;
  display: grid;
  gap: 2px;
  padding: 16px 28px 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 30px #33004c12;
}
.photo-note strong {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 600;
}
.photo-note span {
  font-size: 14px;
  color: var(--muted);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: var(--heading-gap);
}
.section-aside {
  color: #d6bfdf;
  font-size: 17px;
  padding-bottom: 6px;
}
.atmosphere {
  padding-top: var(--section-padding);
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: var(--grid-gap);
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
  position: relative;
  align-self: stretch;
}
.photo-pair img {
  height: 100%;
  width: calc((100% - 16px) / 2);
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #1a0623;
  aspect-ratio: 16/10;
}
.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(transparent 20%,#17052099);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.play-circle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--pink);
  transition: transform .2s,background .2s;
}
.play-circle svg {
  width: 33px;
  height: 33px;
}
.video-play:hover .play-circle {
  transform: scale(1.08);
  background: var(--pink-dark);
}
.video-play>span:last-child {
  position: absolute;
  bottom: 25px;
  left: 28px;
}
.benefits {
  padding-bottom: var(--section-padding);
}
.benefits h2 {
  margin-bottom: var(--heading-gap);
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}
.benefit-card {
  border-radius: var(--radius);
  background: #fff;
  color: var(--purple);
  padding: var(--card-padding);
  overflow: hidden;
  position: relative;
  min-height: 230px;
}
.benefit-card h3 {
  font-size: 24px;
  max-width: 380px;
  margin: 0 0 12px;
}
.benefit-card p {
  color: #78717b;
  max-width: 425px;
  font-size: var(--font-body);
  line-height: 1.45;
}
.benefit-icon {
  color: var(--pink);
  display: block;
  margin-bottom: 22px;
}
.benefit-icon .icon {
  width: 32px;
  height: 32px;
}
.benefit-discount {
  min-height: 288px;
}
.discount-number {
  font-size: 72px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: -3px;
  line-height: 1;
  margin: 0 0 15px;
}
.benefit-discount p {
  max-width: 290px;
  position: relative;
  z-index: 1;
}
.benefit-discount img {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 210px;
  height: auto;
  pointer-events: none;
}
.benefit-discount h3 {
  font-size: 25px;
}
.theme-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 23px;
}
.theme-chips span {
  font-size: 14px;
  border-radius: 25px;
  background: #f5f0f7;
  padding: 5px 12px;
  font-weight: 500;
}
.benefit-grid>article:nth-child(3),.benefit-grid>article:nth-child(4) {
  min-height: 246px;
}
.games {
  padding-block: var(--section-padding);
}
.games .section-heading {
  margin-bottom: var(--heading-gap);
}
.location-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 8px;
}
.location-label .icon {
  width: 20px;
  height: 20px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: var(--grid-gap);
}
.game-card {
  border: 1px solid #e9e7ea;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: box-shadow .2s,transform .2s;
}
.game-card:hover {
  box-shadow: 0 12px 30px #33004c0d;
  transform: translateY(-3px);
}
.game-cover {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #521470;
}
.game-cover>svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.game-tags {
  position: absolute;
  bottom: 13px;
  left: 13px;
  right: 13px;
  display: flex;
  gap: 7px;
  overflow: hidden;
}
.game-tags span {
  color: white;
  font-size: 12px;
  line-height: 1.2;
  background: #0006;
  backdrop-filter: blur(4px);
  padding: 7px 10px;
  border-radius: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-tags span:first-child {
  flex-shrink: 0;
}
.game-tags b {
  margin-right: 5px;
  letter-spacing: -2px;
}
.game-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.game-body h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  min-height: 2.5em;
  text-wrap: wrap;
}
.game-description {
  font-size: 17px;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 4.2em;
}
.game-detail {
  display: flex;
  gap: 11px;
  margin-bottom: 17px;
  font-size: 16px;
  line-height: 1.4;
}
.game-detail>.icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: #a69fa9;
}
.game-detail strong {
  font-weight: 600;
  display: block;
}
.game-detail span {
  color: #948f99;
  display: block;
}
.game-price {
  border-top: 1px solid #e9e7ea;
  padding-top: 16px;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.4;
}
.game-price strong,.game-price span {
  display: block;
}
.game-price strong {
  font-weight: 600;
}
.game-price span {
  color: #948f99;
}
.game-body .button {
  margin-top: 18px;
  min-height: 54px;
  padding: 15px;
  font-size: 17px;
  display: flex;
  background: #e60045;
}
.game-body .button:hover {
  background: #c4003b;
}
.schedule-action {
  text-align: center;
  margin-top: 38px;
}
.schedule-action .button {
  min-width: 370px;
}
.games-empty {
  grid-column: 1/-1;
  background: var(--light);
  padding: 35px;
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}
.games-empty a {
  color: var(--pink);
  text-decoration: underline;
}
.how-it-works {
  padding-top: var(--section-padding);
}
.how-it-works>h2 {
  margin-bottom: var(--heading-gap);
}
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
.how-copy>p {
  max-width: 450px;
  color: #dfcce7;
  font-size: var(--font-body);
  line-height: 1.45;
}
.how-copy h3 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 22px;
}
.steps {
  display: grid;
  gap: 22px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 385px;
  font-size: var(--font-body);
}
.steps .step-number {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple-card);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
}
.timeline-card {
  padding: var(--card-padding);
  background: #450366;
  border-radius: 32px;
}
.timeline-label {
  color: #e5b2ff;
  font-size: 15px;
  font-weight: 500;
}
.timeline {
  isolation: isolate;
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--timeline-column-gap);
  row-gap: var(--timeline-row-gap);
  position: relative;
}
.timeline li {
  position: relative;
  padding-top: 40px;
  z-index: auto;
}
.timeline li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border: 4px solid #e5b2ff;
  border-radius: 50%;
  background: #450366;
  z-index: 1;
}
.timeline li:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
}
.timeline li:nth-child(4) {
  grid-row: 2;
  grid-column: 1;
}
.timeline time {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
  display: block;
  margin-bottom: 6px;
}
.timeline h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.timeline li p {
  font-size: 15px;
  color: #d1acdf;
  line-height: 1.4;
  max-width: 200px;
}
.after-party {
  border-top: 1px solid #723192;
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: #dfcce7;
}
.after-party>.icon {
  width: 21px;
  height: 21px;
  color: var(--lavender);
}
.formats>h2 {
  margin-bottom: var(--heading-gap);
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}
.format-card {
  padding: var(--card-padding);
  border-radius: 32px;
  background: white;
  color: var(--purple);
  display: flex;
  flex-direction: column;
}
.format-label {
  color: var(--pink);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
}
.format-card h3 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.4px;
  margin-bottom: 22px;
}
.format-card p {
  font-size: var(--font-body);
  color: #78717b;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 455px;
}
.format-card .button {
  margin-top: auto;
  align-self: flex-start;
}
.format-private {
  background: #521470;
  color: #fff;
}
.format-private .format-label {
  color: #e5b2ff;
}
.format-private p {
  color: #e0cbe9;
}
.faq {
  padding-bottom: var(--section-padding);
}
.faq>h2 {
  margin-bottom: var(--heading-gap);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq details {
  background: #521470;
  border-radius: 24px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 25px 30px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  background: #5b197b;
}
.faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #33004c;
}
.faq-plus:before,.faq-plus:after {
  content: '';
  position: absolute;
  background: currentColor;
  width: 16px;
  height: 1.5px;
  top: 18px;
  left: 11px;
  transition: transform .2s;
}
.faq-plus:after {
  transform: rotate(90deg);
}
details[open] .faq-plus:after {
  transform: rotate(0deg);
}
.faq-answer {
  padding: 0 30px 28px;
  max-width: 960px;
  color: #e7d5ee;
  font-size: var(--font-body);
  line-height: 1.5;
}
.faq-answer p+p {
  margin-top: 14px;
}
.faq-answer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  padding: 36px 40px 48px;
  background: #450366;
  border-radius: 32px;
  margin-bottom: 32px;
  font-size: 16px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  margin-bottom: 42px;
}
.footer-top nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.site-footer nav a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.site-footer a:hover {
  color: #e5b2ff;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  flex-shrink: 0;
}
.social-links img {
  width: 36px;
  height: 36px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 170px 260px 1fr;
  gap: 32px;
}
.footer-logo img {
  width: 170px;
  height: 170px;
}
address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
address p {
  margin-bottom: 19px;
}
.legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.4;
}
.promo {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 340px;
  border-radius: 24px;
  padding: 25px;
  background: #fff;
  color: #33004c;
  box-shadow: 0 8px 48px #18002340;
  border: 1px solid #eee5f3;
  animation: promo-in .35s ease-out;
}
.promo h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  max-width: 250px;
  margin-bottom: 12px;
}
.promo p {
  font-size: 15px;
  line-height: 1.4;
  color: #78717b;
  margin-bottom: 14px;
}
.promo-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 50%;
  color: #78717b;
}
.promo-close:hover {
  background: #f5f4f5;
}
.promo-close .icon {
  width: 18px;
  height: 18px;
}
.promo-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1px dashed #c1a3d0;
  border-radius: 12px;
  background: #f7f0fa;
  padding: 13px 12px;
  color: #33004c;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .3px;
}
.promo-code .icon {
  width: 19px;
  height: 19px;
}
.promo-code:hover {
  background: #f0e1f7;
}
.promo small {
  font-size: 12px;
  line-height: 1.4;
  color: #78717b;
  display: block;
  margin-top: 10px;
}
.copy-status {
  font-size: 12px;
  color: #622478;
  display: block;
}
.copy-status:not(:empty) {
  margin-top: 8px;
}
@keyframes promo-in {
  from {
    opacity: 0;
    transform: translateX(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.photo-pair img:first-child {
  left: 0;
}
.photo-pair img:last-child {
  right: 0;
}
.game-venue {
  min-height: 4.2em;
}
.game-detail>div {
  min-width: 0;
}
.hero-perks li>.perk-icon {
  margin-top: -3px;
}
.timeline li:nth-child(1):after,.timeline li:nth-child(4):after {
  content: '';
  position: absolute;
  left: 7px;
  top: 18px;
  width: calc(100% + var(--timeline-column-gap));
  height: 2px;
  background: #83439e;
  z-index: -1;
}
.timeline li:nth-child(2):after {
  content: '';
  position: absolute;
  left: 7px;
  top: 18px;
  width: calc(100% + 5px);
  height: calc(100% + var(--timeline-row-gap) + 2px);
  border: 2px solid #83439e;
  border-left: 0;
  border-radius: 0 32px 32px 0;
  z-index: -1;
}
.timeline li:nth-child(2),.timeline li:nth-child(3) {
  padding-right: 12px;
}
@media(min-width:1600px) {
  .hero-background {
    object-position: center 48%;
  }
}
@media(max-width:1199px) {
  .intro-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
  .stats {
    gap: 7px;
  }
  .stats span {
    font-size: 15px;
    padding: 9px 12px;
  }
  .benefit-discount p {
    max-width: 230px;
  }
  .benefit-discount img {
    width: 190px;
  }
  .game-body h3 {
    font-size: 20px;
  }
  .game-detail,.game-price {
    font-size: 15px;
  }
  .game-description {
    font-size: 16px;
  }
  .how-grid {
    gap: 35px;
  }
  .footer-bottom {
    grid-template-columns: 140px 220px 1fr;
    gap: 25px;
  }
  .footer-logo img {
    width: 140px;
    height: 140px;
  }
  .site-footer {
    font-size: 14px;
  }
  .footer-top nav {
    gap: 18px;
  }
  :root {
    --page-gutter: 32px;
  }
}
@media(max-width:959px) {
  .hero-wrap {
    min-height: 760px;
  }
  .hero-background {
    object-position: 57% center;
  }
  .intro-grid {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
  }
  .intro h2 br {
    display: initial;
  }
  .eyebrow {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .stats span {
    font-size: 14px;
  }
  .photo-note {
    left: -18px;
    padding: 15px 20px;
  }
  .photo-note strong {
    font-size: 30px;
  }
  .section-aside {
    display: none;
  }
  .benefit-card h3 {
    font-size: 22px;
  }
  .benefit-discount p {
    max-width: 175px;
  }
  .benefit-discount img {
    width: 155px;
  }
  .benefit-discount {
    min-height: 280px;
  }
  .game-body {
    padding: 20px;
  }
  .game-body h3 {
    font-size: 18px;
  }
  .game-description {
    font-size: 15px;
  }
  .game-tags {
    left: 8px;
    bottom: 8px;
    gap: 5px;
  }
  .game-tags span {
    font-size: 10px;
    padding: 5px 7px;
  }
  .game-detail,.game-price {
    font-size: 14px;
  }
  .game-body .button {
    font-size: 15px;
  }
  .location-label {
    max-width: 150px;
    font-size: 14px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
  }
  .how-copy h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 20px;
  }
  .how-copy>p {
    grid-row: 1/3;
  }
  .steps {
    grid-column: 2;
    gap: 16px;
  }
  .format-card h3 {
    font-size: 30px;
  }
  .format-card .button {
    font-size: 15px;
    padding: 17px 20px;
    gap: 12px;
  }
  .footer-bottom {
    grid-template-columns: 130px 1fr;
    gap: 30px;
  }
  .legal-links {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
  }
  .footer-top {
    align-items: flex-start;
  }
  .footer-top nav {
    gap: 14px 20px;
  }
  .faq summary {
    font-size: 20px;
  }
  :root {
    --page-gutter: 24px;
    --section-padding: 64px;
    --section-gap: 80px;
    --card-padding: 28px;
    --grid-gap: 20px;
  }
  .intro-photo {
    max-width: 460px;
    justify-self: center;
    width: 100%;
  }
}
@media(max-width:639px) {
  :root {
    --page-radius: 32px;
    --radius: 26px;
    --font-hero: 40px;
    --font-section: 30px;
    --font-body: 16px;
    --font-small: 14px;
    --page-gutter: 20px;
    --section-padding: 48px;
    --section-gap: 64px;
    --heading-gap: 24px;
    --grid-gap: 16px;
    --card-padding: 24px;
    --timeline-column-gap: 24px;
    --timeline-row-gap: 32px;
  }
  body {
    font-size: 16px;
  }
  h1 {
    line-height: 1.08;
    letter-spacing: -.65px;
  }
  h2 {
    letter-spacing: -.4px;
    line-height: 1.15;
  }
  h3 {
    font-size: 22px;
  }
  .button {
    min-height: 55px;
    font-size: 16px;
    padding: 16px 23px;
  }
  .site-header {
    height: 84px;
    gap: 14px;
  }
  .brand img {
    width: 58px;
    height: 42px;
  }
  .city {
    font-size: 14px;
    padding: 8px 12px;
  }
  .city .icon {
    width: 15px;
    height: 15px;
  }
  .header-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    align-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #ffffff1a;
    margin-left: auto;
    padding: 11px;
  }
  .menu-toggle span {
    height: 2px;
    width: 22px;
    background: white;
    transition: transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-menu {
    display: grid;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    border-radius: 22px;
    background: white;
    color: #33004c;
    padding: 16px 22px;
    box-shadow: 0 15px 35px #0003;
    font-size: 18px;
  }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
  }
  .hero-wrap {
    min-height: 0;
    padding-bottom: 56px;
  }
  .hero-background {
    height: 420px;
    object-position: right top;
  }
  .hero-wrap:after {
    height: 420px;
    background: linear-gradient(#0003,transparent);
  }
  .hero {
    padding-top: clamp(196px, 55vw, 276px);
  }
  .hero-card {
    padding: var(--card-padding);
    border-radius: 26px;
  }
  .hero-description {
    max-width: 350px;
    margin-top: 18px;
  }
  .hero-list-label {
    margin-top: 20px;
    font-size: 14px;
    margin-bottom: 12px;
  }
  .hero-perks {
    gap: 11px;
  }
  .hero-perks li {
    gap: 10px;
  }
  .perk-icon {
    width: 27px;
    height: 27px;
  }
  .perk-icon .icon {
    width: 16px;
    height: 16px;
  }
  .hero-card .button {
    margin-top: 23px;
    min-width: 0;
    width: 100%;
    justify-content: space-between;
  }
  .intro {
    margin-top: -28px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro h2 br {
    display: none;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 17px;
  }
  .stats {
    gap: 7px;
    margin-top: 23px;
  }
  .stats span {
    font-size: 13px;
    padding: 9px 11px;
    border-radius: 14px;
  }
  .intro-copy>p:not(.eyebrow) {
    margin-top: 22px;
    line-height: 1.5;
  }
  .suitable {
    margin-top: 22px;
  }
  .suitable h3 {
    font-size: 17px;
  }
  .check-list {
    gap: 7px;
  }
  .intro-photo {
    margin-left: 0;
    width: calc(100% - 20px);
    justify-self: end;
    max-width: none;
  }
  .intro-photo>img {
    aspect-ratio: 1.23;
    object-position: center 45%;
  }
  .photo-note {
    left: -20px;
    bottom: 20px;
    padding: 13px 22px;
    border-radius: 18px;
  }
  .photo-note strong {
    font-size: 30px;
  }
  .photo-note span {
    font-size: 12px;
  }
  .section-heading {
    gap: 20px;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .photo-pair {
    gap: 14px;
    aspect-ratio: 2 / 1;
  }
  .photo-pair img {
    height: 100%;
    border-radius: 22px;
    object-position: center 35%;
    width: calc((100% - 16px) / 2);
  }
  .video-card {
    aspect-ratio: 16/10;
    border-radius: 22px;
  }
  .play-circle {
    width: 65px;
    height: 65px;
  }
  .video-play>span:last-child {
    bottom: 20px;
    left: 22px;
    font-size: 16px;
  }
  .benefits h2 br {
    display: none;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    min-height: 0;
    border-radius: 26px;
  }
  .benefit-card h3 {
    font-size: 23px;
    max-width: 280px;
  }
  .benefit-card p {
    max-width: 100%;
  }
  .benefit-discount {
    min-height: 260px;
    padding-top: var(--card-padding);
  }
  .discount-number {
    font-size: 65px;
    margin-bottom: 10px;
  }
  .benefit-discount p {
    max-width: calc(100% - 120px);
    padding-right: 0;
  }
  .benefit-discount img {
    width: 150px;
  }
  .benefit-icon {
    margin-bottom: 16px;
  }
  .benefit-grid>article:nth-child(3),.benefit-grid>article:nth-child(4) {
    min-height: 0;
  }
  .theme-chips {
    margin-top: 20px;
  }
  .games .section-heading {
    display: block;
  }
  .location-label {
    max-width: none;
    margin-top: 16px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .game-card {
    border-radius: 26px;
  }
  .game-body {
    padding: var(--card-padding);
  }
  .game-body h3 {
    font-size: 23px;
    min-height: 0;
  }
  .game-description {
    font-size: 17px;
    -webkit-line-clamp: 3;
    min-height: 0;
  }
  .game-detail,.game-price {
    font-size: 16px;
  }
  .game-tags {
    left: 15px;
    bottom: 15px;
    gap: 7px;
  }
  .game-tags span {
    font-size: 12px;
    padding: 7px 10px;
  }
  .game-body .button {
    font-size: 17px;
    min-height: 55px;
  }
  .schedule-action {
    margin-top: 26px;
  }
  .schedule-action .button {
    min-width: 0;
    width: 100%;
    font-size: 15px;
    gap: 12px;
    padding: 17px 18px;
  }
  .how-grid {
    gap: 32px;
  }
  .how-copy {
    display: block;
  }
  .how-copy h3 {
    font-size: 20px;
    margin: 26px 0 20px;
  }
  .steps {
    gap: 18px;
  }
  .steps li {
    max-width: 310px;
    gap: 15px;
  }
  .steps .step-number {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .timeline-card {
    border-radius: 26px;
  }
  .timeline-label {
    font-size: 14px;
  }
  .timeline time {
    font-size: 26px;
  }
  .timeline h3 {
    font-size: 16px;
  }
  .timeline li p {
    font-size: 14px;
  }
  .after-party {
    font-size: 14px;
    padding-top: 19px;
    margin-top: 24px;
  }
  .format-grid {
    grid-template-columns: 1fr;
  }
  .format-card {
    border-radius: 26px;
  }
  .format-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  .format-label {
    margin-bottom: 19px;
    font-size: 14px;
  }
  .format-card p {
    margin-bottom: 26px;
  }
  .format-card .button {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }
  .faq details {
    border-radius: 20px;
  }
  .faq summary {
    font-size: 18px;
    padding: 21px 20px;
    gap: 15px;
  }
  .faq-plus {
    width: 32px;
    height: 32px;
  }
  .faq-plus:before,.faq-plus:after {
    left: 9px;
    top: 15px;
    width: 14px;
  }
  .faq-answer {
    padding: 0 20px 24px;
  }
  .site-footer {
    padding: 28px 24px 30px;
    margin-bottom: 20px;
    border-radius: 26px;
  }
  .footer-top {
    margin-bottom: 32px;
    flex-direction: column;
    gap: 25px;
  }
  .footer-top nav {
    font-size: 15px;
    gap: 12px 20px;
  }
  .footer-bottom {
    grid-template-columns: 90px 1fr;
    gap: 28px 20px;
  }
  .footer-logo img {
    width: 90px;
    height: 90px;
  }
  address {
    font-size: 14px;
    gap: 7px;
  }
  address p {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .legal-links {
    display: flex;
    gap: 12px;
    font-size: 13px;
  }
  .promo {
    right: 12px;
    bottom: 12px;
    width: min(320px,calc(100% - 24px));
    padding: 20px;
    border-radius: 20px;
  }
  .promo h2 {
    font-size: 18px;
    max-width: 230px;
    margin-bottom: 8px;
  }
  .promo p {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .promo-code {
    padding: 10px 12px;
    font-size: 16px;
  }
  .promo small {
    font-size: 11px;
    margin-top: 8px;
  }
  .game-venue {
    min-height: 0;
  }
  .promo-close {
    width: 40px;
    height: 40px;
    top: 3px;
    right: 3px;
  }
  h2 br {
    display: none;
  }
}
@media(max-width:479px) {
  :root {
    --font-hero: 34px;
    --font-section: 26px;
    --font-body: 14px;
  }
}
@media(max-width:374px) {
  .stats {
    gap: 5px;
  }
  .stats span {
    font-size: 12px;
    padding: 8px 9px;
  }
  .benefit-discount img {
    width: 140px;
  }
  .timeline h3 {
    font-size: 15px;
  }
  .timeline li p {
    font-size: 13px;
  }
  .schedule-action .button {
    font-size: 14px;
    padding-inline: 14px;
  }
  .format-card .button {
    font-size: 14px;
    padding-inline: 16px;
  }
  .footer-bottom {
    grid-template-columns: 70px 1fr;
    gap: 25px 16px;
  }
  .footer-logo img {
    width: 70px;
    height: 70px;
  }
  .site-footer {
    padding: 26px 20px;
  }
  :root {
    --page-gutter: 16px;
    --card-padding: 20px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none!important;
    transition: none!important;
  }
}
