:root {
  --black: #0B0B0D;
  --paper: #F4F2EB;
  --blue: #3B6CFF;
  --lime: #C8FF3D;
  --purple: #8E5CFF;
  --coral: #FF5C5C;
  --steel: #A7ABB3;
  --ink: #111216;
  --muted: #686C74;
  --line: #24262B;
  --max: 1440px;
  --pad: clamp(18px, 4vw, 64px);
  --header: 76px;
  --font-head: 'Arial Narrow', 'Roboto Condensed', 'Inter Tight', Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
}


* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden
}

body.no-scroll {
  overflow: hidden
}

img {
  display: block;
  width: 100%;
  height: auto
}

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

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

button {
  cursor: pointer
}

ul {
  padding-left: 1.2rem
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 9999;
  background: var(--lime);
  color: #000;
  padding: 10px 14px;
  border: 2px solid #000
}

.skip-link:focus {
  top: 12px
}


h1,
h2,
h3,
.display {
  font-family: var(--font-head);
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .93;
  margin: 0
}

h1 {
  font-size: clamp(3rem, 8vw, 8.2rem)
}

h2 {
  font-size: clamp(2.2rem, 3.5vw, 5rem)
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem)
}

p {
  margin: 0 0 1rem
}

.eyebrow,
.block-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.eyebrow:before {
  content: '+';
  font-size: 1rem
}

.section-no {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: .7;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
  opacity: .16
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  max-width: 720px
}

.muted {
  color: var(--muted)
}


.container {
  width: min(var(--max), 100%);
  margin: auto;
  padding-left: var(--pad);
  padding-right: var(--pad)
}

section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0
}

.grid {
  display: grid;
  gap: 24px
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 64px)
}

.surface-dark {
  background: var(--black);
  color: var(--paper)
}

.surface-paper {
  background: var(--paper);
  color: var(--ink)
}

.surface-lime {
  background: var(--lime);
  color: #000
}

.hairline {
  border-top: 2px solid currentColor
}

.tag {
  display: inline-flex;
  border: 2px solid currentColor;
  padding: 6px 9px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.number-chip {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  font-weight: 900
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: transparent;
  color: inherit;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: .2s ease
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 currentColor
}

.btn-solid {
  background: var(--ink);
  color: var(--paper)
}

.btn-lime {
  background: var(--lime);
  color: #000;
  border-color: #000
}

.btn-light {
  border-color: var(--paper);
  color: var(--paper)
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.icon-btn {
  width: 48px;
  height: 48px;
  border: 2px solid currentColor;
  background: transparent;
  display: grid;
  place-items: center
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  background: rgba(11, 11, 13, .97);
  color: var(--paper);
  border-bottom: 2px solid #2B2D33
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px
}

.brand {
  font-weight: 950;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-size: 1.32rem;
  white-space: nowrap
}

.brand span {
  color: var(--lime)
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto
}

.desktop-nav a {
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  position: relative
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--lime);
  transition: .2s
}

.desktop-nav a:hover:after,
.desktop-nav a.is-active:after {
  right: 0
}

.header-cta {
  margin-left: 4px
}

.menu-toggle {
  display: none;
  margin-left: auto;
  color: var(--paper);
  border: 2px solid var(--paper);
  background: none;
  width: 48px;
  height: 48px
}


.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: var(--black);
  color: var(--paper);
  transform: translateY(-105%);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
  visibility: hidden
}

.mobile-panel.is-open {
  transform: none;
  visibility: visible
}

.mobile-panel-inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 26px
}

.mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #2d2f35;
  padding-bottom: 18px
}

.mobile-menu {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 24px 0
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 10vw, 4.4rem);
  line-height: 1.04;
  text-transform: uppercase;
  font-weight: 900;
  border-bottom: 2px solid #2B2D33;
  padding: 10px 0
}

.mobile-menu a span {
  font: 700 .8rem var(--font-body);
  color: var(--lime);
  margin-right: 14px
}

.mobile-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 2px solid #2B2D33;
  padding-top: 18px;
  font-weight: 850;
  text-transform: uppercase
}


.hero {
  padding: 0;
  background: var(--paper);
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: stretch
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  min-height: calc(100vh - var(--header))
}

.hero-copy {
  padding: clamp(50px, 7vw, 110px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--ink)
}

.hero-copy h1 {
  max-width: 900px
}

.hero-kicker {
  margin-bottom: 28px
}

.hero-desc {
  max-width: 660px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin: 30px 0
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px
}

.hero-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--black)
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05)
}

.hero-visual:after {
  content: 'PLAY / RELAX / ENJOY';
  position: absolute;
  left: 22px;
  top: 22px;
  background: var(--lime);
  color: #000;
  border: 2px solid #000;
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: .08em
}

.hero-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--paper)
}

.hero-info div {
  padding: 14px 18px;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase
}

.hero-info div+div {
  border-left: 2px solid var(--paper)
}


.intro-layout {
  grid-template-columns: .28fr .95fr .95fr 1.2fr;
  align-items: start
}

.intro-copy p {
  max-width: 48ch
}

.intro-image {
  border: 2px solid var(--ink);
  padding: 10px;
  background: #fff
}

.mini-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border: 2px solid var(--ink)
}

.mini-block {
  padding: 24px;
  min-height: 130px
}

.mini-block+.mini-block {
  border-left: 2px solid var(--ink)
}

.mini-block strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 10px
}


.location-grid {
  grid-template-columns: repeat(2, 1fr)
}

.location-card {
  border: 2px solid #33363d;
  background: #111216;
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 360px;
  overflow: hidden
}

.location-num {
  padding: 20px;
  border-right: 2px solid #33363d;
  font: 900 4.5rem var(--font-head);
  color: var(--lime)
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.08fr
}

.location-text {
  padding: 28px;
  display: flex;
  flex-direction: column
}

.location-text h3 {
  margin-bottom: 18px
}

.location-meta {
  font-size: .95rem;
  color: #c9cbd0
}

.facility-line {
  display: flex;
  gap: 10px;
  margin: 18px 0
}

.facility-line i {
  width: 32px;
  height: 32px;
  border: 1px solid #585b62;
  display: grid;
  place-items: center
}

.location-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.location-photo {
  height: 100%;
  min-height: 330px;
  object-fit: cover
}


.locator {
  background: #15161A;
  color: var(--paper)
}

.locator-grid {
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: 2px solid #36383f
}

.locator-list {
  background: var(--black);
  padding: 18px
}

.location-filter {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #32343a;
  background: transparent;
  color: var(--paper);
  padding: 18px 14px;
  font-weight: 900;
  text-transform: uppercase
}

.location-filter:hover,
.location-filter.is-active {
  background: var(--lime);
  color: #000
}

.map-wrap {
  min-height: 520px
}

.map-wrap #map {
  height: 520px;
  width: 100%;
  background: #1c1d21
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--paper);
  color: var(--ink);
  border-radius: 0
}

.leaflet-popup-content-wrapper {
  border: 2px solid #000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .35)
}


.game-grid {
  grid-template-columns: repeat(2, 1fr)
}

.game-card {
  position: relative;
  border: 2px solid var(--ink);
  min-height: 430px;
  overflow: hidden;
  background: #111;
  color: #fff
}

.game-card img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: .35s transform
}

.game-card:hover img {
  transform: scale(1.035)
}

.game-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(11, 11, 13, .93);
  padding: 24px;
  border-top: 2px solid #fff;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: start;
  gap: 16px
}

.game-overlay i {
  width: 52px;
  height: 52px;
  border: 2px solid var(--lime);
  display: grid;
  place-items: center;
  color: var(--lime);
  font-size: 1.3rem
}

.game-overlay .num {
  font: 900 2.3rem var(--font-head);
  color: var(--lime)
}


.marquee {
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 14px 0
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: marquee 24s linear infinite
}

.marquee-track span {
  font: 900 clamp(1.5rem, 3vw, 3rem) var(--font-head);
  letter-spacing: .02em;
  white-space: nowrap
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}


.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink)
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.feature-card:nth-child(3n) {
  border-right: 0
}

.feature-card:nth-child(n+4) {
  border-bottom: 0
}

.feature-card:nth-child(2) {
  background: var(--blue);
  color: #fff
}

.feature-card:nth-child(3) {
  background: var(--lime)
}

.feature-card:nth-child(5) {
  background: var(--purple);
  color: #fff
}

.feature-card .top {
  display: flex;
  justify-content: space-between;
  align-items: start
}

.feature-card i {
  font-size: 1.6rem
}

.feature-card .n {
  font: 900 2rem var(--font-head)
}


.poster-wall {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch
}

.poster {
  border: 2px solid var(--ink);
  padding: 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}

.poster:nth-child(1) {
  background: var(--coral)
}

.poster:nth-child(2) {
  background: var(--blue);
  color: #fff
}

.poster:nth-child(3) {
  background: var(--lime)
}

.poster:nth-child(4) {
  background: var(--purple);
  color: #fff
}

.poster .symbol {
  font: 900 6rem var(--font-head);
  opacity: .24;
  position: absolute;
  right: 12px;
  top: 4px
}

.poster p {
  max-width: 28ch
}


.roompass {
  background: var(--black);
  color: var(--paper)
}

.membership-card {
  aspect-ratio: 1.58/1;
  max-width: 620px;
  border: 2px solid var(--lime);
  padding: 36px;
  background: linear-gradient(135deg, #111 0 62%, #151620 62%);
  position: relative;
  box-shadow: 14px 14px 0 var(--blue)
}

.membership-card:after {
  content: '+';
  position: absolute;
  right: 28px;
  bottom: 22px;
  font: 900 6rem var(--font-head);
  color: var(--lime)
}

.membership-card .rp {
  font: 900 clamp(2.8rem, 6vw, 5.8rem) var(--font-head);
  color: var(--lime)
}

.membership-card .brandline {
  margin-top: auto;
  position: absolute;
  bottom: 28px;
  left: 36px;
  font-weight: 900;
  letter-spacing: .12em
}

.roompass-list {
  display: grid;
  gap: 12px;
  margin: 28px 0
}

.roompass-list div {
  border-top: 1px solid #393b43;
  padding: 14px 0;
  display: flex;
  gap: 12px
}

.roompass-list div:before {
  content: '+';
  color: var(--lime);
  font-weight: 900
}


.facility-grid {
  grid-template-columns: repeat(4, 1fr)
}

.facility-item {
  border: 2px solid var(--ink);
  padding: 24px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between
}

.facility-item i {
  font-size: 1.5rem
}

.facility-item strong {
  text-transform: uppercase;
  font-family: var(--font-head);
  font-size: 1.2rem
}


.responsible-grid {
  grid-template-columns: 260px 1fr 1fr;
  align-items: start
}

.big18 {
  font: 900 clamp(6rem, 13vw, 12rem) var(--font-head);
  line-height: .76
}

.responsible-rules {
  display: grid;
  gap: 0;
  border-top: 2px solid #000
}

.responsible-rules div {
  padding: 16px 0;
  border-bottom: 2px solid #000;
  font-weight: 800;
  display: flex;
  gap: 12px
}

.responsible-rules div:before {
  content: '+'
}


.faq-list {
  max-width: 1000px;
  margin-left: auto
}

.faq-item {
  border-top: 2px solid var(--ink)
}

.faq-item:last-child {
  border-bottom: 2px solid var(--ink)
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  text-transform: uppercase
}

.faq-question:after {
  content: '+';
  font-size: 1.6rem
}

.faq-question[aria-expanded='true']:after {
  content: '−'
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease
}

.faq-answer>div {
  overflow: hidden
}

.faq-answer p {
  padding: 0 0 22px;
  max-width: 780px
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr
}


.contact-terminal {
  border: 2px solid var(--ink);
  display: grid;
  grid-template-columns: .8fr 1.2fr
}

.contact-info {
  background: var(--black);
  color: var(--paper);
  padding: clamp(28px, 5vw, 60px)
}

.contact-info a {
  color: var(--lime)
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 10px
}

.contact-form {
  padding: clamp(28px, 5vw, 60px);
  display: grid;
  gap: 16px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: grid;
  gap: 7px
}

.field label {
  font-weight: 800
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 2px solid var(--ink);
  background: #fff;
  padding: 13px 14px;
  border-radius: 0
}

.field textarea {
  min-height: 140px;
  resize: vertical
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: #b40000
}

.error-text {
  min-height: 1.1em;
  color: #9c0000;
  font-size: .84rem
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.form-status {
  font-weight: 800;
  min-height: 1.2em
}


.site-footer {
  background: var(--black);
  color: var(--paper);
  padding: 44px 0 0;
  border-top: 2px solid #333
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(4, 1fr);
  padding: 24px 0 40px
}

.footer-col h3 {
  font-size: .9rem;
  color: var(--lime);
  letter-spacing: .1em;
  margin-bottom: 16px
}

.footer-col a,
.footer-col span {
  display: block;
  padding: 5px 0;
  color: #ddd
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 900
}

.footer-bottom {
  border-top: 2px solid #2F3137;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: .83rem;
  font-weight: 700;
  text-transform: uppercase
}


.legal-hero {
  background: var(--black);
  color: var(--paper);
  padding: 90px 0 60px
}

.legal-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 820px);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding-top: 70px;
  padding-bottom: 100px
}

.legal-toc {
  position: sticky;
  top: 100px;
  border: 2px solid var(--ink);
  padding: 18px
}

.legal-toc h2 {
  font-size: 1rem;
  margin-bottom: 12px
}

.legal-toc a {
  display: block;
  padding: 6px 0;
  font-size: .9rem
}

.legal-article h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin: 2.5rem 0 .8rem
}

.legal-article h3 {
  font-size: 1.25rem;
  margin: 1.7rem 0 .6rem
}

.legal-article p,
.legal-article li {
  color: #383a40
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .9rem
}

.legal-table th,
.legal-table td {
  border: 2px solid var(--ink);
  padding: 12px;
  text-align: left;
  vertical-align: top
}

.legal-table th {
  background: #e7e4da
}

.callout {
  border: 2px solid var(--ink);
  padding: 22px;
  margin: 28px 0;
  background: var(--lime);
  color: #000
}

.rg-hero {
  background: var(--black);
  color: var(--paper)
}

.rg-grid {
  grid-template-columns: repeat(2, 1fr)
}

.rg-card {
  border: 2px solid var(--ink);
  padding: 28px;
  min-height: 220px
}

.signals {
  columns: 2;
  column-gap: 40px
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}


.age-gate {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--black);
  display: none;
  place-items: center;
  padding: 20px
}

.age-gate.is-visible {
  display: grid
}

.age-card {
  width: min(760px, 100%);
  background: var(--lime);
  color: #000;
  border: 3px solid #000;
  padding: clamp(30px, 6vw, 72px);
  box-shadow: 18px 18px 0 var(--blue)
}

.age-card .age-number {
  font: 900 clamp(7rem, 20vw, 14rem) var(--font-head);
  line-height: .75
}

.age-card h2 {
  margin: 24px 0 18px
}

.age-denied {
  display: none;
  border-top: 2px solid #000;
  margin-top: 24px;
  padding-top: 18px;
  font-weight: 900
}

.age-denied.is-visible {
  display: block
}


.cookie-banner {
  position: fixed;
  z-index: 2200;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid #000;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .28);
  padding: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center
}

.cookie-banner.is-visible {
  display: grid
}

.cookie-copy strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 6px
}

.cookie-copy p {
  margin: 0;
  font-size: .92rem
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end
}


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, .74);
  display: none;
  place-items: center;
  padding: 18px
}

.cookie-modal.is-visible {
  display: grid
}

.cookie-card {
  width: min(680px, 100%);
  background: var(--paper);
  border: 2px solid #000;
  max-height: 90vh;
  overflow: auto
}

.cookie-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 2px solid #000
}

.cookie-card-body {
  padding: 18px
}

.consent-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #bbb;
  padding: 16px 0
}

.switch {
  position: relative;
  width: 50px;
  height: 28px
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0
}

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border: 2px solid #000
}

.slider:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #000;
  transition: .2s
}

.switch input:checked+.slider {
  background: var(--lime)
}

.switch input:checked+.slider:before {
  transform: translateX(22px)
}

.cookie-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}


.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .6s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}


@media (max-width:1200px) {
  .desktop-nav {
    gap: 14px
  }

  .desktop-nav a {
    font-size: .72rem
  }

  .header-cta {
    display: none
  }

  .location-card {
    grid-template-columns: 110px 1fr
  }

  .location-num {
    font-size: 3.5rem
  }

  .poster-wall {
    grid-template-columns: repeat(2, 1fr)
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr)
  }

  .footer-col:nth-child(n+4) {
    margin-top: 16px
  }
}

@media (max-width:992px) {
  :root {
    --header: 68px
  }

  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    min-height: 620px
  }

  .hero-visual {
    min-height: 540px
  }

  .intro-layout {
    grid-template-columns: 100px 1fr 1fr
  }

  .intro-image {
    grid-column: 2/4
  }

  .mini-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mini-block:nth-child(3) {
    border-left: 0;
    border-top: 2px solid var(--ink)
  }

  .mini-block:nth-child(4) {
    border-top: 2px solid var(--ink)
  }

  .location-grid {
    grid-template-columns: 1fr
  }

  .locator-grid {
    grid-template-columns: 1fr
  }

  .locator-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0
  }

  .location-filter {
    border-right: 1px solid #32343a;
    border-bottom: 0;
    padding: 14px 10px;
    text-align: center;
    font-size: .8rem
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature-card:nth-child(3n) {
    border-right: 2px solid var(--ink)
  }

  .feature-card:nth-child(2n) {
    border-right: 0
  }

  .feature-card:nth-child(n+4) {
    border-bottom: 2px solid var(--ink)
  }

  .feature-card:nth-last-child(-n+2) {
    border-bottom: 0
  }

  .responsible-grid {
    grid-template-columns: 220px 1fr
  }

  .responsible-rules {
    grid-column: 1/-1
  }

  .legal-shell {
    grid-template-columns: 1fr
  }

  .legal-toc {
    position: relative;
    top: auto
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media (max-width:768px) {
  section {
    padding: 64px 0
  }

  .split {
    grid-template-columns: 1fr
  }

  .hero-copy {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 62px
  }

  .hero-visual {
    min-height: 430px
  }

  .hero-info {
    grid-template-columns: 1fr
  }

  .hero-info div+div {
    border-left: 0;
    border-top: 2px solid var(--paper)
  }

  .intro-layout {
    grid-template-columns: 1fr
  }

  .intro-layout>.section-no,
  .intro-copy,
  .intro-image {
    grid-column: auto
  }

  .mini-grid {
    grid-template-columns: 1fr
  }

  .mini-block+.mini-block {
    border-left: 0;
    border-top: 2px solid var(--ink)
  }

  .location-card {
    grid-template-columns: 1fr
  }

  .location-num {
    border-right: 0;
    border-bottom: 2px solid #33363d;
    padding: 12px 20px
  }

  .location-content {
    grid-template-columns: 1fr
  }

  .location-photo {
    order: -1;
    min-height: 260px
  }

  .locator-list {
    grid-template-columns: repeat(2, 1fr)
  }

  .location-filter:nth-child(-n+2) {
    border-bottom: 1px solid #32343a
  }

  .map-wrap,
  .map-wrap #map {
    min-height: 380px;
    height: 380px
  }

  .game-grid {
    grid-template-columns: 1fr
  }

  .game-overlay {
    grid-template-columns: 52px 1fr
  }

  .game-overlay .num {
    grid-column: 1/-1;
    grid-row: 1
  }

  .poster-wall {
    grid-template-columns: 1fr
  }

  .feature-grid {
    grid-template-columns: 1fr
  }

  .feature-card,
  .feature-card:nth-child(2n),
  .feature-card:nth-child(3n),
  .feature-card:nth-child(n+4) {
    border-right: 0;
    border-bottom: 2px solid var(--ink)
  }

  .feature-card:last-child {
    border-bottom: 0
  }

  .facility-grid {
    grid-template-columns: 1fr
  }

  .responsible-grid {
    grid-template-columns: 1fr
  }

  .contact-terminal {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column
  }

  .cookie-banner {
    grid-template-columns: 1fr
  }

  .cookie-actions {
    justify-content: flex-start
  }

  .rg-grid {
    grid-template-columns: 1fr
  }

  .signals {
    columns: 1
  }

  .legal-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap
  }
}

@media (max-width:480px) {
  :root {
    --pad: 16px
  }

  .brand {
    font-size: 1.05rem
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 18vw, 5rem)
  }

  .hero-visual {
    min-height: 360px
  }

  .game-card,
  .game-card img {
    min-height: 380px
  }

  .game-overlay {
    padding: 18px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .membership-card {
    padding: 24px;
    box-shadow: 8px 8px 0 var(--blue)
  }

  .membership-card .brandline {
    left: 24px;
    bottom: 20px
  }

  .age-card {
    box-shadow: 8px 8px 0 var(--blue)
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px
  }

  .btn {
    width: 100%
  }

  .btns {
    display: grid
  }

  .location-actions {
    display: grid
  }

  .location-actions .btn {
    width: 100%
  }

  .mobile-meta {
    font-size: .78rem
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .marquee-track {
    animation: none
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

.mt-18 {
  margin-top: 18px
}

.mt-24 {
  margin-top: 24px
}

.mt-28 {
  margin-top: 28px
}

.roompass-media {
  display: grid;
  gap: 26px
}

.roompass-photo {
  max-width: 620px;
  max-height: 220px;
  object-fit: cover;
  border: 2px solid #36383f
}


.site-footer .footer-wordmark,
.site-footer .footer-mega,
.site-footer .footer-display,
.site-footer [data-footer-wordmark] {
  display: none !important
}