:root {
  --bg: #111214;
  --bg-soft: #17191c;
  --panel: #1d2024;
  --panel-2: #24272c;
  --text: #f4f0e8;
  --muted: #bcb6aa;
  --gold: #d6b36a;
  --gold-2: #f0d899;
  --burgundy: #6f2736;
  --border: rgba(240, 216, 153, 0.18);
  --white-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
  position: relative;
}
.section--compact {
  padding: 72px 0;
}
.section--surface {
  background: var(--bg-soft);
}
.section--light {
  background: #ece7dc;
  color: #1b1c1f;
}
.section--light .eyebrow {
  color: #765c28;
}
.section--light .muted {
  color: #666158;
}
.section--light .section-copy {
  color: #5c584f;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head > div:first-child {
  max-width: 760px;
}
.section-title,
.page-title,
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0;
}
.section-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
}
.page-title {
  font-size: clamp(2.65rem, 6vw, 5.4rem);
}
.section-copy,
.muted {
  color: var(--muted);
}
.section-copy {
  max-width: 720px;
  font-size: 1.04rem;
}
.small {
  font-size: 0.9rem;
}
.kicker {
  color: var(--gold-2);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1710;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-2), #f8e8b6);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}
.btn-dark {
  background: #17191c;
  color: #fff;
}
.btn-danger {
  background: transparent;
  color: #ffdfdf;
  border-color: rgba(255, 130, 130, 0.35);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-2);
  font-weight: 800;
}
.link-arrow i {
  transition: transform 0.2s ease;
}
.link-arrow:hover i {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled,
.site-header.header-solid {
  background: rgba(17, 18, 20, 0.94);
  backdrop-filter: blur(18px);
  border-color: var(--white-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  background: rgba(214, 179, 106, 0.08);
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.desktop-nav a {
  font-size: 0.9rem;
  color: #d9d3c8;
  transition: color 0.2s ease;
}
.desktop-nav a:hover {
  color: var(--gold-2);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.age-chip {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  font-size: 0.8rem;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 420px);
  z-index: 95;
  background: #15171a;
  padding: 92px 28px 36px;
  transform: translateX(105%);
  transition: transform 0.28s ease;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--white-border);
  font-size: 1.08rem;
}
.mobile-drawer .btn {
  margin-top: 24px;
}
.drawer-close {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--white-border);
  background: transparent;
  color: #fff;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  min-height: 93svh;
  display: flex;
  align-items: end;
  padding: calc(var(--header-h) + 90px) 0 80px;
  background:
    linear-gradient(
      90deg,
      rgba(9, 10, 12, 0.92) 0%,
      rgba(9, 10, 12, 0.62) 45%,
      rgba(9, 10, 12, 0.18) 75%
    ),
    linear-gradient(0deg, #111214 0%, rgba(17, 18, 20, 0) 35%),
    url("../images/hero.webp") center/cover no-repeat;
}
.hero-content {
  max-width: 820px;
}
.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  max-width: 850px;
}
.hero p {
  color: #d4cec3;
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 650px;
  margin: 24px 0 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #aaa398;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-note i {
  color: var(--gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.intro-copy p {
  color: var(--muted);
}
.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.mini-card,
.icon-card {
  padding: 22px;
  border: 1px solid var(--white-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}
.mini-card i,
.icon-card i {
  color: var(--gold-2);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.mini-card h3,
.icon-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.mini-card p,
.icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.locator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}
.map-panel,
.glass-card {
  border: 1px solid var(--white-border);
  border-radius: var(--radius-lg);
  background: #181a1e;
  box-shadow: var(--shadow);
}
.map-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}
.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  z-index: 2;
}
#venue-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.venue-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.venue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 22px 24px;
  border: 1px solid var(--white-border);
  border-radius: var(--radius-md);
  background: linear-gradient(
    145deg,
    rgba(29, 32, 36, 0.98),
    rgba(19, 21, 24, 0.98)
  );
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}
.venue-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.venue-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.3);
  background: linear-gradient(
    145deg,
    rgba(32, 35, 40, 0.99),
    rgba(20, 22, 25, 0.99)
  );
}
.venue-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
.venue-tag {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-2);
  font-weight: 800;
}
.venue-card h3 {
  margin: 5px 0 10px;
  font-size: 1.35rem;
}
.venue-meta {
  display: grid;
  gap: 7px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.venue-meta span {
  display: flex;
  gap: 10px;
  align-items: start;
}
.venue-meta i {
  color: var(--gold);
  width: 16px;
  margin-top: 5px;
}
.venue-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.venue-index {
  flex: 0 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(240, 216, 153, 0.32);
  letter-spacing: 0.02em;
}

.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.visual-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-border);
  isolation: isolate;
}
.visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  z-index: -2;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 8, 9, 0.95),
    rgba(7, 8, 9, 0.06) 70%
  );
  z-index: -1;
}
.visual-card:hover img {
  transform: scale(1.045);
}
.visual-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.visual-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 10px;
}
.amenity-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.amenity-inline span {
  font-size: 0.78rem;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.promo-feature,
.promo-stack article {
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-border);
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.promo-feature {
  min-height: 560px;
}
.promo-feature img,
.promo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.promo-feature::after,
.promo-stack article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(9, 10, 12, 0.96),
    rgba(9, 10, 12, 0.18)
  );
}
.promo-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}
.promo-content h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}
.promo-stack {
  display: grid;
  gap: 22px;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-border);
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.category-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.category-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--white-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}
.category-item i {
  color: var(--gold-2);
  width: 22px;
}
.category-item span {
  font-weight: 700;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.loyalty-card-visual {
  position: relative;
}
.loyalty-card-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 179, 106, 0.25);
  box-shadow: var(--shadow);
}
.step-list {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.step-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}
.step-item::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 179, 106, 0.12);
  border: 1px solid var(--border);
  color: var(--gold-2);
  font-weight: 800;
}
.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.benefit-tags span {
  border: 1px solid var(--white-border);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dcd5c9;
  font-size: 0.86rem;
}

.amenity-image {
  margin-bottom: 24px;
}
.amenity-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.icon-card {
  min-height: 178px;
}

.responsible-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  overflow: hidden;
}
.responsible-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.responsible-copy {
  padding: 48px 48px 48px 14px;
  align-self: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: #d6d0c5;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold-2);
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--white-border);
}
.faq-item {
  border-bottom: 1px solid var(--white-border);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  padding: 24px 2px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-weight: 800;
}
.faq-question i {
  color: var(--gold-2);
  transition: transform 0.22s ease;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--muted);
  max-width: 800px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
}
.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: start;
}
.contact-detail i {
  color: var(--gold-2);
  margin-top: 5px;
  width: 18px;
}
.form-card {
  padding: 34px;
  border: 1px solid var(--white-border);
  border-radius: var(--radius-lg);
  background: #17191d;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field.full {
  grid-column: 1 / -1;
}
label {
  font-weight: 700;
  font-size: 0.9rem;
}
input,
select,
textarea {
  width: 100%;
  background: #111316;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.09);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.checkbox-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.form-status {
  margin-top: 16px;
  min-height: 24px;
  color: var(--gold-2);
}
.field-error {
  color: #ffb0b0;
  font-size: 0.78rem;
  min-height: 18px;
}

.site-footer {
  background: #0d0e10;
  border-top: 1px solid var(--white-border);
  padding: 74px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}
.footer-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-links {
  display: grid;
  gap: 9px;
  color: #c9c3b8;
}
.footer-links a:hover {
  color: var(--gold-2);
}
.footer-brand p {
  color: var(--muted);
  max-width: 330px;
}
.footer-contact {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  color: #c9c3b8;
}
.footer-notice {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--white-border);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  color: #918c83;
  font-size: 0.84rem;
}
.footer-notice strong {
  color: var(--gold-2);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(111, 39, 54, 0.35),
      transparent 36%
    ),
    rgba(7, 8, 9, 0.97);
}
.age-gate.show {
  display: grid;
}
.age-panel {
  width: min(100%, 560px);
  text-align: center;
  padding: 44px 36px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(150deg, #191b1f, #111316);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}
.age-mark {
  width: 96px;
  height: 96px;
  margin: 22px auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold-2);
  font-size: 2rem;
  font-weight: 800;
}
.age-panel h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  margin: 0;
}
.age-panel p {
  color: var(--muted);
}
.age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  display: none;
  max-width: 1160px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(19, 21, 24, 0.97);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
}
.cookie-banner.show {
  display: block;
}
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.cookie-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.89rem;
}
.cookie-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
}
.modal-backdrop.show {
  display: grid;
}
.cookie-modal {
  width: min(100%, 620px);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #17191d;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.55);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  padding: 26px 26px 18px;
  border-bottom: 1px solid var(--white-border);
}
.modal-head h3 {
  margin: 0;
  font-size: 1.45rem;
}
.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-border);
  background: transparent;
  color: #fff;
}
.modal-body {
  padding: 22px 26px 26px;
}
.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--white-border);
}
.cookie-category h4 {
  margin: 0 0 4px;
}
.cookie-category p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.switch {
  position: relative;
  width: 48px;
  height: 27px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  inset: 0;
  background: #3a3c40;
  border-radius: 999px;
  transition: 0.2s;
}
.slider::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s;
}
.switch input:checked + .slider {
  background: var(--gold);
}
.switch input:checked + .slider::before {
  transform: translateX(21px);
}
.switch input:disabled + .slider {
  opacity: 0.55;
}
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.form-success-backdrop {
  z-index: 180;
}
.success-modal {
  position: relative;
  width: min(100%, 480px);
  padding: 42px 36px 36px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(150deg, #1b1d21, #121417);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.58);
}
.success-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}
.success-modal-icon {
  width: 76px;
  height: 76px;
  margin: 2px auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a1710;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 1.8rem;
  box-shadow: 0 14px 34px rgba(214, 179, 106, 0.18);
}
.success-modal h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.35rem);
}
.success-modal p {
  margin: 0 auto 26px;
  max-width: 360px;
  color: var(--muted);
}
.success-modal .btn {
  min-width: 150px;
}

.header-inner > *,
.locator-grid > *,
.games-grid > *,
.loyalty-grid > *,
.responsible-card > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}
.contact-detail div,
.footer-contact,
.legal-content,
.section-copy {
  overflow-wrap: anywhere;
}

.page-hero {
  padding: calc(var(--header-h) + 105px) 0 76px;
  background:
    radial-gradient(circle at 80% 0%, rgba(111, 39, 54, 0.32), transparent 38%),
    linear-gradient(135deg, #181a1e, #0f1012);
  border-bottom: 1px solid var(--white-border);
}
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 64px;
}
.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 7px;
}
.legal-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 0;
}
.legal-nav a:hover {
  color: var(--gold-2);
}
.legal-content {
  max-width: 860px;
}
.legal-content section {
  padding: 0 0 42px;
  scroll-margin-top: 120px;
}
.legal-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 14px;
}
.legal-content h3 {
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content li {
  color: #c7c1b6;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-callout {
  padding: 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(214, 179, 106, 0.08);
  margin: 24px 0;
}
.resource-box {
  border: 1px dashed rgba(240, 216, 153, 0.45);
  padding: 22px;
  border-radius: 16px;
  background: rgba(214, 179, 106, 0.05);
}
.resource-box code {
  color: var(--gold-2);
  word-break: break-word;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

#venue-map {
  background: #222;
}
.maplibregl-map {
  font-family: "Inter", sans-serif;
}
.maplibregl-popup-content {
  background: #1a1c1f;
  color: #f5f0e7;
  border: 1px solid rgba(214, 179, 106, 0.25);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.maplibregl-popup-tip {
  border-top-color: #1a1c1f !important;
}
.maplibregl-popup-close-button {
  color: #f5f0e7;
  font-size: 18px;
  padding: 4px 8px;
}
.maplibregl-ctrl-group {
  overflow: hidden;
  border-radius: 10px !important;
}
.maplibregl-ctrl-attrib {
  background: rgba(255, 255, 255, 0.82) !important;
  color: #222;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .locator-grid,
  .games-grid,
  .loyalty-grid,
  .responsible-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .visual-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .visual-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    border-bottom: 1px solid var(--white-border);
    padding-bottom: 22px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 76px 0;
  }
  .header-inner {
    gap: 14px;
  }
  .header-actions {
    gap: 8px;
  }
  .brand {
    max-width: calc(100vw - 112px);
  }
  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .section-title {
    font-size: clamp(2.05rem, 9vw, 3.4rem);
  }
  .page-title {
    font-size: clamp(2.5rem, 11vw, 4.25rem);
  }
  .section-head {
    display: block;
  }
  .section-head .btn {
    margin-top: 20px;
  }
  .hero {
    min-height: 88svh;
    padding: calc(var(--header-h) + 70px) 0 54px;
    background-position: 62% center;
  }
  .hero h1 {
    max-width: 700px;
  }
  .hero p {
    max-width: 620px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-mini-grid {
    grid-template-columns: 1fr;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-feature {
    min-height: 430px;
  }
  .games-grid,
  .loyalty-grid,
  .responsible-card,
  .contact-grid {
    gap: 34px;
  }
  .promo-stack {
    grid-template-columns: 1fr 1fr;
  }
  .visual-card-grid {
    grid-template-columns: 1fr;
  }
  .visual-card,
  .visual-card:last-child {
    grid-column: auto;
    min-height: 440px;
  }
  .responsible-card img {
    min-height: 0;
    height: 390px;
  }
  .responsible-copy {
    padding: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .cookie-inner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
  .map-panel {
    min-height: 470px;
  }
  .maplibregl-ctrl-attrib {
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .section {
    padding: 62px 0;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }
  .brand {
    font-size: 0.98rem;
    gap: 8px;
  }
  .brand-mark {
    width: 30px;
  }
  .age-chip {
    display: none;
  }
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 52px) 0 42px;
    background-position: 67% center;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.85rem);
    line-height: 1.02;
  }
  .hero p {
    margin: 18px 0 24px;
    font-size: 0.98rem;
  }
  .hero-note {
    align-items: flex-start;
    font-size: 0.82rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .locator-grid {
    gap: 18px;
  }
  .map-panel {
    min-height: 360px;
  }
  .venue-card {
    padding: 20px;
  }
  .venue-card-top {
    display: block;
  }
  .venue-index {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.45rem;
  }
  .venue-actions .btn,
  .venue-actions .link-arrow {
    width: 100%;
    justify-content: center;
  }
  .visual-card,
  .visual-card:last-child {
    min-height: 380px;
  }
  .promo-feature {
    min-height: 390px;
  }
  .promo-stack {
    grid-template-columns: 1fr;
  }
  .promo-stack article {
    min-height: 300px;
  }
  .promo-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .image-frame img {
    height: 340px;
  }
  .amenity-image img {
    height: 240px;
  }
  .responsible-card img {
    height: 320px;
  }
  .responsible-copy {
    padding: 26px 20px 28px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: auto;
  }
  .form-card {
    padding: 20px;
    border-radius: 20px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  textarea {
    min-height: 130px;
  }
  .form-card .btn[type="submit"] {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-notice {
    display: block;
  }
  .footer-notice p + p {
    margin-top: 16px;
  }
  .age-panel {
    padding: 32px 20px;
    border-radius: 22px;
  }
  .age-panel h2 {
    font-size: 1.9rem;
  }
  .age-actions .btn {
    width: 100%;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-actions .btn {
    flex: 1 1 100%;
  }
  .modal-backdrop {
    padding: 12px;
  }
  .cookie-modal {
    border-radius: 18px;
  }
  .modal-head {
    padding: 20px 18px 14px;
  }
  .modal-body {
    padding: 18px;
  }
  .modal-actions .btn {
    width: 100%;
  }
  .success-modal {
    padding: 38px 20px 24px;
    border-radius: 20px;
  }
  .success-modal-close {
    top: 12px;
    right: 12px;
  }
  .success-modal-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
  }
  #venue-map {
    height: 340px;
    border-radius: 20px;
  }
  .map-panel {
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }
  .header-inner {
    gap: 9px;
  }
  .brand {
    font-size: 0.9rem;
    max-width: calc(100vw - 90px);
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3rem);
  }
  .section-title {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }
  .venue-card,
  .mini-card,
  .icon-card {
    padding: 18px;
  }
  .form-card {
    padding: 16px;
  }
}

.venue-card[data-location-index] {
  cursor: pointer;
}
.venue-card[data-location-index]:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}
.venue-card[data-location-index].active {
  border-color: rgba(214, 179, 106, 0.7);
  background: linear-gradient(
    145deg,
    rgba(41, 39, 32, 0.99),
    rgba(22, 23, 24, 0.99)
  );
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}
.venue-card[data-location-index].active::before {
  opacity: 1;
  width: 3px;
}
