:root {
  --navy: #071a33;
  --blue: #2563eb;
  --indigo: #4338ca;
  --violet: #7c3aed;
  --coral: #ff6b6b;
  --peach: #ffb4a2;
  --light: #f5f7ff;
  --white: #fff;
  --text: #111827;
  --muted: #667085;
  --line: #dde5f7;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
  --container: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  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,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
}
.narrow {
  max-width: 900px;
}
.section {
  padding: 112px 0;
  position: relative;
}
.section-light {
  background: var(--light);
}
.section-deep {
  background: var(--navy);
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 13px;
}
.eyebrow.light,
.inverse .eyebrow {
  color: #bfd0ff;
}
.section h2,
.legal-hero h1 {
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}
.section p {
  color: var(--muted);
}
.section-deep p,
.promo-section p,
.contact-section p {
  color: #c6d2ea;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 540px;
  margin: 0;
}
.section-heading.centered {
  justify-content: center;
  text-align: center;
}
.inverse h2 {
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 14px;
  padding: 13px 19px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn-large {
  padding: 16px 24px;
}
.btn-small {
  padding: 11px 16px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
}
.btn-secondary {
  color: var(--navy);
  background: #e7edff;
}
.btn-outline {
  background: transparent;
  border: 1px solid #c8d4ee;
  color: var(--navy);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-light {
  color: var(--navy);
  background: #fff;
}
.btn-ghost-dark {
  color: var(--navy);
  background: #eef2ff;
  border: 1px solid #d9e0f3;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 26, 51, 0.94);
  border-bottom: 1px solid rgba(37, 99, 235, 0.55);
  box-shadow: 0 1px 18px rgba(37, 99, 235, 0.14);
  transition: 0.25s;
}
.site-header.scrolled {
  background: rgba(7, 26, 51, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand img {
  width: 188px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: #dce7ff;
  white-space: nowrap;
}
.desktop-nav a:hover {
  color: #fff;
}
.header-cta {
  margin-left: 4px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #241423;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 12px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 13, 28, 0.66);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(390px, 92vw);
  background: var(--navy);
  padding: 20px 22px 24px;
  transform: translateX(105%);
  transition: 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu {
  transform: translateX(0);
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-top img {
  width: 180px;
}
.menu-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  color: #fff;
}
.mobile-menu nav {
  display: grid;
  gap: 4px;
  margin: 34px 0 24px;
}
.mobile-menu nav a {
  color: #e6edff;
  font-weight: 800;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu-cta {
  margin-top: auto;
}
.hero {
  min-height: 760px;
  padding: 150px 0 78px;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(124, 58, 237, 0.3),
      transparent 34%
    ),
    linear-gradient(135deg, #071a33, #0a2042 56%, #151b57);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 9px 13px;
  border-radius: 999px;
  color: #dce7ff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero h1 span {
  background: linear-gradient(90deg, #afc6ff, #e7c6ff, #ffb4a2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy > p {
  font-size: 1.08rem;
  max-width: 650px;
  color: #c9d7f2;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 42px;
  color: #afc0dd;
  font-size: 0.84rem;
}
.hero-mini b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.media-frame {
  position: relative;
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.6),
    rgba(124, 58, 237, 0.5),
    rgba(255, 107, 107, 0.4)
  );
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  transform: rotate(1.5deg);
}
.media-frame img {
  border-radius: 24px;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.image-tag {
  position: absolute;
  left: -20px;
  bottom: 34px;
  background: #fff;
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.84rem;
  box-shadow: var(--shadow);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.28;
}
.orb-a {
  width: 360px;
  height: 360px;
  background: var(--blue);
  right: -160px;
  top: 90px;
}
.orb-b {
  width: 260px;
  height: 260px;
  background: var(--coral);
  left: -130px;
  bottom: -80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 74px;
  align-items: center;
}
.about-visual {
  position: relative;
  padding-left: 52px;
}
.vertical-mark {
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #9aa8c7;
}
.image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-copy > p {
  font-size: 1.03rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.benefit-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.benefit-grid i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #edf2ff;
  color: var(--blue);
}
.benefit-grid h3 {
  margin: 12px 0 5px;
  font-size: 1rem;
}
.benefit-grid p {
  font-size: 0.88rem;
  margin: 0;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.location-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #0d2749;
  border-radius: 22px;
}
.location-img {
  position: relative;
}
.location-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.location-img span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 26, 51, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}
.location-body {
  padding: 21px;
}
.location-body h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.location-body p {
  display: flex;
  gap: 9px;
  margin: 7px 0;
  font-size: 0.87rem;
}
.location-body i {
  margin-top: 5px;
  color: #88aaff;
}
.location-body a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-weight: 800;
  margin-top: 11px;
}
.map-section {
  background: #fff;
}
.venue-map {
  height: 490px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.leaflet-popup-content-wrapper {
  border-radius: 16px;
}
.map-popup h3 {
  margin: 0 0 5px;
  color: var(--navy);
}
.map-popup p {
  margin: 3px 0;
  color: #667085;
  font-size: 0.85rem;
}
.nova-marker {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border: 3px solid #fff;
  box-shadow: 0 5px 14px rgba(37, 99, 235, 0.35);
  width: 22px !important;
  height: 22px !important;
  border-radius: 8px 8px 8px 2px;
  transform: rotate(-45deg);
}
.gaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gaming-card {
  display: grid;
  grid-template-columns: 45% 55%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}
.gaming-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gaming-card > div:last-child {
  padding: 26px;
}
.gaming-card > div:last-child > span {
  font-size: 0.78rem;
  color: var(--violet);
  font-weight: 900;
  letter-spacing: 0.16em;
}
.gaming-card h3 {
  font-size: 1.4rem;
  line-height: 1.1;
  margin: 9px 0 10px;
}
.gaming-card p {
  margin: 0;
}
.promo-section {
  background: linear-gradient(145deg, #071a33, #111e5c 65%, #311b62);
  color: #fff;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.promo-card {
  border-radius: 24px;
  padding: 26px;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.promo-card.blue {
  background: linear-gradient(145deg, #2563eb, #3451cf);
}
.promo-card.violet {
  background: linear-gradient(145deg, #7c3aed, #4a37be);
}
.promo-card.light {
  background: #fff;
  color: var(--navy);
}
.promo-card.coral {
  background: linear-gradient(145deg, #ff6b6b, #ff9c89);
  color: #2d1720;
}
.promo-card > i {
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.promo-badge {
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}
.promo-card h3 {
  font-size: 1.5rem;
  line-height: 1.05;
  margin: 10px 0;
}
.promo-card p {
  font-size: 0.9rem;
  margin: 0;
}
.promo-card.light p,
.promo-card.coral p {
  color: #566078;
}
.promo-card a {
  margin-top: auto;
  padding-top: 22px;
  font-weight: 900;
}
.rewards-section {
  background: #fff;
}
.rewards-shell {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 36px 80px rgba(67, 56, 202, 0.22);
}
.rewards-copy {
  padding: 58px;
}
.rewards-copy h2 {
  color: #fff;
}
.rewards-copy > p {
  color: #e6eaff;
}
.reward-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 26px 0;
}
.reward-benefits span {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}
.reward-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.reward-steps div {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 14px;
}
.reward-steps b {
  font-size: 0.78rem;
  color: #ffd1c8;
}
.reward-steps h3 {
  margin: 3px 0;
}
.reward-steps p {
  margin: 0;
  color: #e4e8ff;
  font-size: 0.84rem;
}
.rewards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid article {
  background: #fff;
  border: 1px solid #cad8f6;
  border-radius: 20px;
  padding: 26px;
  transition: 0.25s;
}
.feature-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.12);
  border-color: #87a8f7;
}
.feature-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf0ff, #f3ebff);
  color: var(--blue);
}
.feature-grid h3 {
  margin: 15px 0 6px;
}
.feature-grid p {
  margin: 0;
}
.experience-section {
  background: #fff;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.experience-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.experience-image img {
  aspect-ratio: 16/11;
  object-fit: cover;
}
.experience-list {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}
.experience-list > div {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.experience-list > div > span {
  font-weight: 900;
  color: var(--blue);
  font-size: 0.76rem;
}
.experience-list h3 {
  margin: 0 0 2px;
}
.experience-list p {
  margin: 0;
}
.responsible-section {
  background: linear-gradient(180deg, #f5f7ff, #eef2ff);
}
.responsible-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
}
.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.responsible-grid article {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f7f9ff;
  border: 1px solid #dfe7fa;
  padding: 15px;
  border-radius: 15px;
  font-weight: 800;
}
.responsible-grid i {
  color: var(--violet);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: #fff;
  padding: 20px 22px;
  text-align: left;
  font-weight: 850;
  color: var(--navy);
  cursor: pointer;
}
.faq-item button i {
  transition: 0.25s;
}
.faq-item.open button i {
  transform: rotate(180deg);
}
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s;
}
.faq-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
}
.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-panel p {
  padding-bottom: 20px;
}
.contact-section {
  background: linear-gradient(135deg, #071a33, #142354);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 68px;
}
.contact-copy h2 {
  color: #fff;
}
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-lines > a,
.contact-lines > div {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-lines i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #afc6ff;
}
.contact-lines small {
  display: block;
  color: #96a9cc;
}
.contact-form {
  background: #fff;
  color: var(--navy);
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.18);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cfd9ee;
  border-radius: 12px;
  padding: 12px 13px;
  background: #fbfcff;
  color: var(--navy);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.11);
}
.check-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.check-label input {
  width: auto;
}
.form-errors {
  color: #b42318;
  font-size: 0.86rem;
  margin-bottom: 12px;
}
.site-footer {
  background: #06162c;
  color: #d7e0f3;
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 0.85fr 0.8fr;
  gap: 48px;
}
.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}
.footer-grid p {
  color: #96a9c7;
  max-width: 420px;
}
.footer-grid h3 {
  color: #fff;
  margin: 0 0 14px;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid a,
.link-button {
  color: #a9b8d1;
  font-size: 0.92rem;
}
.footer-grid a:hover,
.link-button:hover {
  color: #fff;
}
.link-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.footer-contact {
  display: grid;
  gap: 7px;
}
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #7f93b3;
  font-size: 0.82rem;
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #06152d;
  display: none;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}
.age-gate.active {
  display: grid;
}
.age-card {
  position: relative;
  z-index: 2;
  width: min(580px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.age-card h2 {
  font-size: 1.7rem;
  line-height: 1.08;
  margin: 15px 0;
}
.age-card p {
  color: #5f6b7a;
}
.age-card .small {
  font-size: 0.87rem;
}
.age-badge {
  display: inline-block;
  background: #fff0ed;
  color: #9e3544;
  border: 1px solid #ffd0c8;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}
.age-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.age-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
}
.age-glow-a {
  width: 420px;
  height: 420px;
  background: #2563eb;
  left: -150px;
  top: -120px;
}
.age-glow-b {
  width: 360px;
  height: 360px;
  background: #7c3aed;
  right: -130px;
  bottom: -120px;
}
.cookie-banner {
  position: fixed;
  z-index: 3500;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #cfd9ee;
  box-shadow: 0 24px 80px rgba(7, 26, 51, 0.22);
  border-radius: 22px;
  padding: 22px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cookie-banner.active {
  display: flex;
}
.cookie-banner h2 {
  font-size: 1.1rem;
  margin: 0 0 5px;
}
.cookie-banner p {
  margin: 0 0 4px;
  color: #667085;
  max-width: 760px;
  font-size: 0.88rem;
}
.cookie-banner a {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.84rem;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal-shell.active {
  display: grid;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 34, 0.68);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}
.modal-card h2 {
  font-size: 1.5rem;
  line-height: 1.08;
  margin: 9px 0 12px;
}
.modal-card p {
  color: #667085;
}
.modal-x {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 39px;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}
.success-card {
  text-align: center;
  max-width: 520px;
}
.success-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8f0;
  color: #067647;
  margin: 0 auto 18px;
  font-size: 1.45rem;
}
.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cookie-row strong {
  display: block;
}
.cookie-row span:not(.switch) {
  display: block;
  color: #667085;
  font-size: 0.84rem;
}
.always-on {
  font-weight: 900 !important;
  color: #067647 !important;
}
.cookie-row input {
  position: absolute;
  opacity: 0;
}
.switch {
  width: 46px;
  height: 27px;
  border-radius: 999px;
  background: #cdd5df;
  position: relative;
  flex: 0 0 auto;
  transition: 0.2s;
}
.switch:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: #fff;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.cookie-row input:checked + .switch {
  background: var(--blue);
}
.cookie-row input:checked + .switch:after {
  transform: translateX(19px);
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.legal-hero {
  padding: 155px 0 76px;
  background: linear-gradient(135deg, #071a33, #1b255d);
  color: #fff;
}
.legal-hero h1 {
  color: #fff;
}
.legal-hero p {
  color: #c6d2ea;
  font-size: 1.05rem;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 100px;
}
.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  background: #f5f7ff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.legal-aside strong {
  color: var(--navy);
}
.legal-aside p {
  color: #667085;
  font-size: 0.88rem;
}
.legal-aside a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.88rem;
}
.legal-content {
  max-width: 820px;
}
.legal-section {
  margin-bottom: 42px;
}
.legal-section h2 {
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--navy);
}
.legal-section p {
  color: #4e5d72;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid #ffb4a2;
  outline-offset: 3px;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}
main,
section,
.container,
.hero-grid > *,
.about-grid > *,
.experience-grid > *,
.contact-grid > *,
.rewards-shell > * {
  min-width: 0;
}
img,
svg,
iframe {
  max-width: 100%;
}
.location-body p,
.contact-lines a,
.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
  word-break: normal;
}
.media-frame img,
.image-card img,
.experience-image img,
.gaming-image img,
.location-img img,
.rewards-image img {
  width: 100%;
}
.map-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.map-city-list {
  display: grid;
  gap: 10px;
  align-content: start;
}
.map-city-btn {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 15px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--navy);
  cursor: pointer;
  transition: 0.22s ease;
  box-shadow: 0 8px 22px rgba(7, 26, 51, 0.05);
}
.map-city-btn span {
  font-size: 1rem;
  font-weight: 850;
}
.map-city-btn small {
  font-size: 0.78rem;
  color: #667085;
}
.map-city-btn:hover {
  transform: translateY(-2px);
  border-color: #a7baf2;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}
.map-city-btn.active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 34px rgba(67, 56, 202, 0.22);
}
.map-city-btn.active small {
  color: #e7e9ff;
}
.map-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.venue-map {
  height: 490px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #eaf0ff;
}
.venue-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.map-kicker {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.map-details h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.35rem;
}
.map-detail-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(190px, 1fr) auto;
  gap: 12px 20px;
  align-items: center;
}
.map-detail-grid p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #5f6b7a;
  font-size: 0.84rem;
  min-width: 0;
}
.map-detail-grid i {
  margin-top: 4px;
  color: var(--blue);
  flex: 0 0 auto;
}
.map-detail-grid a {
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
