:root {
  --bg: #050817;
  --bg-2: #080d24;
  --panel: rgba(255,255,255,.065);
  --panel-strong: rgba(255,255,255,.1);
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --ice: #65e8ff;
  --ice-2: #00a8ff;
  --violet: #8d5cff;
  --magenta: #ff4fd8;
  --green: #80ffcc;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(255,79,216,.17), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(101,232,255,.18), transparent 30rem),
    linear-gradient(180deg, #030511 0%, var(--bg) 45%, #02030a 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.container-narrow { width: min(850px, calc(100% - 40px)); }
.section { padding: 104px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 5, 17, .72);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(20px);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  visibility: hidden;
  pointer-events: none;
}
.brand img {
  width: 172px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0,168,255,.35));
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
}
.site-header.is-logo-visible .brand {
  visibility: visible;
  pointer-events: auto;
}
.site-header.is-logo-visible .brand img {
  opacity: 1;
  transform: translateY(0);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 15px;
  transition: color .25s ease, text-shadow .25s ease;
}
.nav-links a:hover { color: var(--ice); text-shadow: 0 0 18px rgba(101,232,255,.55); }
.nav-cta { margin-left: 4px; }

.social-links, .mobile-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(101,232,255,.34);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 18px rgba(101,232,255,.08), 0 0 18px rgba(0,168,255,.12);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.social-link svg {
  width: 21px;
  height: 21px;
  fill: #fff;
  filter: drop-shadow(0 0 8px rgba(101,232,255,.45));
  transition: fill .25s ease, transform .25s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(101,232,255,.9);
  background: rgba(101,232,255,.12);
  box-shadow: inset 0 0 22px rgba(101,232,255,.12), 0 0 28px rgba(101,232,255,.32);
}
.social-link:hover svg { fill: var(--ice); transform: scale(1.06); }
.language-toggle {
  appearance: none;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(101,232,255,.38);
  background: rgba(255,255,255,.07);
  color: inherit;
  box-shadow: inset 0 0 18px rgba(101,232,255,.08), 0 0 18px rgba(0,168,255,.12);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(101,232,255,.9);
  background: rgba(101,232,255,.12);
  box-shadow: inset 0 0 22px rgba(101,232,255,.12), 0 0 28px rgba(101,232,255,.32);
}
.language-toggle--mobile { display: none; }
.language-toggle--desktop {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  transform: translateY(-50%);
}
.language-toggle--desktop:hover,
.language-toggle--desktop:focus-visible {
  transform: translateY(calc(-50% - 2px));
}
.flag-icon {
  position: relative;
  width: 26px;
  height: 18px;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.32), 0 0 10px rgba(101,232,255,.38);
}
.flag-icon--uk {
  background:
    linear-gradient(90deg, transparent 0 43%, #c8102e 43% 57%, transparent 57% 100%),
    linear-gradient(180deg, transparent 0 38%, #c8102e 38% 62%, transparent 62% 100%),
    linear-gradient(90deg, transparent 0 36%, #fff 36% 64%, transparent 64% 100%),
    linear-gradient(180deg, transparent 0 30%, #fff 30% 70%, transparent 70% 100%),
    linear-gradient(32deg, transparent 0 40%, #fff 40% 46%, #c8102e 46% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(148deg, transparent 0 40%, #fff 40% 46%, #c8102e 46% 54%, #fff 54% 60%, transparent 60%),
    #012169;
}
.flag-icon--poland {
  background: linear-gradient(180deg, #fff 0 50%, #dc143c 50% 100%);
}
.mobile-social-links {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  justify-content: center;
}
.mobile-social-links .social-link {
  width: 60px;
  height: 60px;
  background: rgba(3,10,29,.78);
  border-color: rgba(101,232,255,.62);
}
.mobile-social-links .social-link svg { width: 28px; height: 28px; }


.btn, .nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn::after, .nav-cta::after {
  content: "";
  position: absolute;
  inset: -60% -35%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.45) 48%, transparent 61%);
  transform: translateX(-72%) rotate(8deg);
  transition: transform .55s ease;
  pointer-events: none;
}
.btn:hover, .btn:focus-visible, .nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-2px); }
.btn:hover::after, .btn:focus-visible::after, .nav-cta:hover::after, .nav-cta:focus-visible::after {
  transform: translateX(72%) rotate(8deg);
}
.btn-primary, .nav-cta {
  color: #020614;
  background: linear-gradient(135deg, var(--ice), var(--green));
  box-shadow: 0 0 26px rgba(101,232,255,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-primary:hover, .nav-cta:hover { box-shadow: 0 0 42px rgba(101,232,255,.52), 0 14px 40px rgba(0,0,0,.3); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover { border-color: rgba(101,232,255,.6); background: rgba(101,232,255,.09); box-shadow: 0 0 28px rgba(101,232,255,.2); }

.hamburger, .close-menu {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.hamburger {
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 10px rgba(101,232,255,.7);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,79,216,.26), transparent 28rem),
    radial-gradient(circle at 82% 78%, rgba(101,232,255,.28), transparent 30rem),
    linear-gradient(145deg, rgba(2,6,24,.98), rgba(4,15,46,.98) 48%, rgba(3,5,17,.98));
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  z-index: 100;
  overflow: hidden;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(101,232,255,.78);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(101,232,255,.08), transparent 34%, rgba(255,79,216,.075)),
    rgba(255,255,255,.018);
  box-shadow:
    0 0 24px rgba(101,232,255,.48),
    0 0 80px rgba(0,168,255,.28),
    inset 0 0 30px rgba(101,232,255,.18);
  pointer-events: none;
}
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(101,232,255,.18) 50%, transparent 52% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(255,79,216,.12) 50%, transparent 52% 100%);
  opacity: .65;
  pointer-events: none;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.close-menu {
  display: block;
  position: absolute;
  top: 42px;
  right: 42px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  font-size: 42px;
  line-height: 1;
  border: 1px solid rgba(101,232,255,.72);
  background: rgba(3,10,29,.78);
  box-shadow: 0 0 26px rgba(101,232,255,.35), inset 0 0 18px rgba(101,232,255,.14);
  z-index: 2;
}
.close-menu:hover {
  color: var(--ice);
  transform: scale(1.04);
  box-shadow: 0 0 36px rgba(101,232,255,.52), inset 0 0 18px rgba(101,232,255,.2);
}
.mobile-menu__links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  width: min(520px, calc(100vw - 88px));
  text-align: center;
}
.mobile-menu__links a {
  display: block;
  padding: 16px 24px;
  border: 1px solid rgba(101,232,255,.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(101,232,255,.035));
  box-shadow: inset 0 0 22px rgba(101,232,255,.08), 0 0 20px rgba(0,168,255,.12);
  font-size: clamp(30px, 9vw, 58px);
  font-weight: 800;
  letter-spacing: -.055em;
  text-shadow: 0 0 28px rgba(101,232,255,.35);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease, color .24s ease;
}
.mobile-menu__links a:hover {
  color: var(--ice);
  transform: translateY(-2px);
  border-color: rgba(101,232,255,.9);
  background: linear-gradient(135deg, rgba(101,232,255,.16), rgba(255,79,216,.1));
  box-shadow: inset 0 0 26px rgba(101,232,255,.14), 0 0 34px rgba(101,232,255,.32);
}

.hero {
  --hero-glow-x: 50%;
  --hero-glow-y: 42%;
  --hero-glow-alt-x: 50%;
  --hero-glow-alt-y: 54%;
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 1;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(101,232,255,.2), transparent 30rem),
    radial-gradient(circle at var(--hero-glow-alt-x) var(--hero-glow-alt-y), rgba(255,79,216,.13), transparent 28rem);
  opacity: .78;
  transition: opacity .25s ease;
  pointer-events: none;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: url("assets/hero.jpeg") center / cover no-repeat;
  transform: scale(1.02);
  transform-origin: center center;
  animation: hero-photo-zoom-out 12s cubic-bezier(.16, 1, .3, 1) both;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,5,17,.88) 0%, rgba(3,5,17,.46) 50%, rgba(3,5,17,.74) 100%),
    linear-gradient(180deg, rgba(3,5,17,.2) 0%, rgba(3,5,17,.82) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 40px));
  text-align: center;
  padding: 72px 18px;
}
.hero__logo-wrap {
  position: relative;
  width: min(760px, 88vw);
  margin: 0 auto 28px;
  padding: clamp(3px, .7vw, 6px);
  border: 1px solid rgba(101,232,255,.72);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(101,232,255,.72), rgba(255,255,255,.2) 34%, rgba(255,79,216,.54) 66%, rgba(101,232,255,.78));
  box-shadow:
    0 0 12px rgba(101,232,255,.68),
    0 0 28px rgba(0,168,255,.34),
    inset 0 0 14px rgba(255,255,255,.16);
  isolation: isolate;
}
.hero__logo-wrap::before,
.hero__logo-wrap::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.hero__logo-wrap::before {
  inset: -8px;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(101,232,255,.88), rgba(255,79,216,.46) 58%, rgba(128,255,204,.6));
  filter: blur(10px);
  opacity: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.hero__logo-wrap::after {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(101,232,255,.28), transparent 18% 82%, rgba(255,79,216,.2)),
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 24% 76%, rgba(101,232,255,.16));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.22),
    inset 0 0 22px rgba(101,232,255,.18);
  opacity: .95;
}
.hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  filter: none;
}
@keyframes hero-photo-zoom-out {
  from { transform: scale(1.14); }
  to { transform: scale(1.02); }
}
.hero__eyebrow {
  margin-bottom: 10px;
  letter-spacing: .2em;
}
.hero__address {
  margin-bottom: 34px;
  color: rgba(101,232,255,.86);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0,0,0,.55);
}
.eyebrow, .section-kicker {
  margin: 0 0 15px;
  color: var(--ice);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(101,232,255,.62);
}
.hero__eyebrow {
  font-size: clamp(18px, 2.7vw, 24px);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(56px, 8.4vw, 112px);
  line-height: .92;
  letter-spacing: -.075em;
  text-wrap: balance;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
  text-wrap: balance;
}
h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.hero__content p:not(.eyebrow, .hero__address), .section-heading p, .intro p, .pricing-card p, .contact p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.hero__content p:not(.eyebrow) { width: min(690px, 100%); margin: 0 auto 34px; }
.hero__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.intro { text-align: center; background: linear-gradient(180deg, rgba(8,13,36,.5), rgba(5,8,23,.14)); }
.intro h2 {
  background: linear-gradient(135deg, #fff 20%, var(--ice), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading { max-width: 840px; margin-bottom: 46px; }
.section-heading p { max-width: 790px; }
.offer-lead {
  width: min(850px, 100%);
  margin: 0 0 38px;
  color: rgba(255,255,255,.86);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 0 26px rgba(101,232,255,.18);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.feature-card, .event-card, .pricing-card, .contact-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.feature-card::before, .event-card::before, .pricing-card::after, .contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(101,232,255,.18), transparent 38%, rgba(255,79,216,.14));
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.feature-card {
  overflow: hidden;
  border-radius: var(--radius);
}
.feature-card:hover, .feature-card:focus-within, .event-card:hover, .event-card:focus-within, .contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(101,232,255,.5);
  box-shadow: var(--shadow), 0 0 36px rgba(101,232,255,.16);
}
.feature-card:hover::before, .feature-card:focus-within::before, .event-card:hover::before, .event-card:focus-within::before, .pricing-card:hover::after, .contact-card:hover::before {
  opacity: 1;
}
.feature-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform .55s ease, filter .35s ease;
}
.feature-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.feature-card div { padding: 26px; }
.feature-card p, .event-card p { color: var(--muted); margin-bottom: 0; }

.pricing {
  padding-top: 50px;
  padding-bottom: 34px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -90px -90px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101,232,255,.32), transparent 65%);
}
.pricing-card > * { position: relative; z-index: 1; }
.pricing-card span {
  color: #65e8ff;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
}
.pricing-card strong {
  color: var(--text);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(128,255,204,.42);
  box-shadow: var(--shadow), 0 0 38px rgba(128,255,204,.14);
}

.opening-hours { padding: 0 0 42px; }
.opening-hours__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(128,255,204,.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(101,232,255,.12), rgba(128,255,204,.07) 48%, rgba(255,79,216,.1));
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
}
.opening-hours__bar .section-kicker {
  margin: 0;
}
.opening-hours__schedule {
  display: grid;
  gap: 8px;
  margin: 0 0 0 auto;
  text-align: right;
}
.opening-hours__schedule p {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 800;
}
.opening-hours__schedule span {
  color: var(--green);
  margin-left: 18px;
  white-space: nowrap;
}

.booking {
  padding-top: 76px;
  background:
    radial-gradient(circle at 10% 20%, rgba(128,255,204,.12), transparent 24rem),
    radial-gradient(circle at 90% 40%, rgba(255,79,216,.13), transparent 25rem),
    linear-gradient(180deg, rgba(8,13,36,.18), rgba(255,255,255,.02));
}

.booking-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
  gap: 34px;
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.booking-summary {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(128,255,204,.3);
  border-radius: 22px;
  color: #06101d;
  background: linear-gradient(135deg, rgba(101,232,255,.92), rgba(128,255,204,.9));
  box-shadow: 0 16px 48px rgba(0,0,0,.28), 0 0 30px rgba(101,232,255,.18);
  font-weight: 800;
  line-height: 1.35;
}

.booking-form {
  border: 1px solid rgba(101,232,255,.24);
  border-radius: 34px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: var(--shadow), inset 0 0 28px rgba(101,232,255,.06);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field span {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 0 16px;
  color: #fff;
  background: rgba(2,6,20,.72);
  box-shadow: inset 0 0 18px rgba(101,232,255,.05);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ice) 50%),
    linear-gradient(135deg, var(--ice) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 23px,
    calc(100% - 16px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field input:focus,
.field select:focus {
  border-color: rgba(101,232,255,.86);
  background-color: rgba(4,14,39,.88);
  box-shadow: 0 0 0 4px rgba(101,232,255,.12), inset 0 0 18px rgba(101,232,255,.08);
}

.field input::placeholder { color: rgba(255,255,255,.42); }
.field select option { color: #06101d; background: #fff; }

.field input[type="date"] {
  display: block;
  -webkit-appearance: none;
  appearance: none;
  height: 52px;
  text-align: left;
  line-height: normal;
}

.field input[type="date"]::-webkit-date-and-time-value {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  text-align: left;
}

.field input[type="date"]::-webkit-datetime-edit {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.booking-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.booking-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.booking-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ice);
}

.booking-consent a {
  color: rgba(101,232,255,.92);
  text-decoration: none;
}

.booking-consent a:hover { color: #fff; }

.booking-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.booking-message {
  min-height: 24px;
  margin-top: 16px;
  color: var(--ice);
  font-weight: 800;
}

.booking-message.is-error { color: #ff8fc7; }
.booking-message.is-success { color: var(--green); }

.events {
  padding-bottom: 56px;
  background: radial-gradient(circle at 85% 15%, rgba(255,79,216,.14), transparent 28rem);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.event-card {
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(101,232,255,.5); background: linear-gradient(180deg, rgba(101,232,255,.11), rgba(255,255,255,.045)); }
.event-card h3 {
  background: linear-gradient(135deg, var(--ice), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.event-card p {
  color: #fff;
}
.event-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
}

.contact {
  padding-top: 56px;
  padding-bottom: 116px;
}
.contact .section-kicker {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 0 24px rgba(101,232,255,.22);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 34px;
}
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.contact-card {
  display: grid;
  gap: 18px;
  margin: 0;
  border-radius: 34px;
  padding: 34px;
  font-style: normal;
}
.contact-card a, .contact-card p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -.03em;
}
.contact-card a { color: var(--ice); }
.contact-card p { color: #fff; }

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.32);
  padding: 26px 0;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer img { width: 126px; height: 34px; object-fit: contain; }
.footer p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.footer__legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.footer__legal a {
  color: rgba(101,232,255,.86);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.footer__legal a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links, .nav-cta, .social-links, .language-toggle--desktop { display: none; }
  .hamburger { display: block; }
  .brand img { width: 150px; height: 40px; }
  .navbar { height: 70px; }
  .language-toggle--mobile {
    position: absolute;
    top: 42px;
    left: 42px;
    z-index: 2;
    display: inline-grid;
    width: 58px;
    height: 58px;
    background: rgba(3,10,29,.78);
    border-color: rgba(101,232,255,.72);
    box-shadow: 0 0 26px rgba(101,232,255,.35), inset 0 0 18px rgba(101,232,255,.14);
  }
  .language-toggle--mobile .flag-icon {
    width: 30px;
    height: 21px;
  }
  .hero { min-height: calc(100vh - 70px); }
  .hero__overlay { background: linear-gradient(180deg, rgba(3,5,17,.44), rgba(3,5,17,.9)); }
  .hero__logo-wrap { width: min(680px, 90vw); }
  .section { padding: 76px 0; }
  .events { padding-bottom: 42px; }
  .contact { padding-top: 42px; }
  .booking { padding-top: 64px; }
  .opening-hours { padding-bottom: 34px; }
  .feature-grid, .event-grid, .contact-grid, .booking-grid { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .opening-hours__bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .opening-hours__schedule { width: 100%; }
  .feature-card img { height: 260px; }
  .footer__inner, .footer__legal { flex-direction: column; text-align: center; justify-content: center; }
}

@media (max-width: 560px) {
  .container, .container-narrow { width: min(100% - 28px, 1140px); }
  .navbar { width: min(100% - 24px, 1180px); }
  .brand img { width: 132px; height: 36px; }
  .hero__media { background-position: 42% center; }
  .hero__logo-wrap { width: min(440px, 92vw); margin-bottom: 22px; }
  .hero__logo-wrap::before {
    inset: -6px;
    filter: blur(8px);
  }
  .hero__eyebrow { margin-bottom: 28px; letter-spacing: .16em; }
  h1 { font-size: clamp(48px, 15vw, 74px); line-height: .96; }
  .hero__content { padding: 56px 0; }
  .hero__actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .section-heading { margin-bottom: 30px; }
  .pricing-grid { gap: 12px; }
  .pricing-card {
    min-height: 132px;
    padding: 18px 12px;
  }
  .pricing-card span { font-size: 18px; }
  .pricing-card strong { font-size: clamp(24px, 7vw, 32px); }
  .form-grid { grid-template-columns: 1fr; }
  .feature-card img { height: 230px; }
  .feature-card div, .event-card, .contact-card { padding: 24px; }
  .booking-form { border-radius: 26px; }
  .mobile-menu__links { gap: 24px; }
}

@media (max-width: 560px) {
  .mobile-menu { padding: 18px; }
  .mobile-menu::before { inset: 14px; border-radius: 26px; }
  .mobile-menu::after { inset: 28px; border-radius: 20px; }
  .language-toggle--mobile { top: 28px; left: 28px; width: 52px; height: 52px; }
  .language-toggle--mobile .flag-icon { width: 27px; height: 19px; }
  .close-menu { top: 28px; right: 28px; width: 52px; height: 52px; font-size: 38px; }
  .mobile-menu__links { width: min(420px, calc(100vw - 58px)); gap: 20px; }
  .mobile-menu__links a { padding: 14px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media { inset: 0; transform: scale(1.02) !important; }
  .hero__logo, .game-slide img { transform: none !important; }
}

/* === FIX: mobile menu full-screen overlay === */
@media (max-width: 900px) {
  .site-header { z-index: 9990; }

  .mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    padding: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .mobile-menu.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu__links {
    position: relative;
    z-index: 3;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 20px !important;
    width: min(520px, calc(100vw - 72px)) !important;
    margin: 0 auto !important;
  }

  .mobile-menu__links a {
    width: 100%;
    font-size: clamp(28px, 9vw, 50px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.04em !important;
    text-align: center !important;
  }

  .mobile-social-links {
    position: relative;
    z-index: 3;
    margin-top: 28px !important;
  }

  .close-menu {
    z-index: 4 !important;
  }
}

@media (max-width: 380px) {
  .mobile-menu__links {
    gap: 14px !important;
    width: min(340px, calc(100vw - 54px)) !important;
  }
  .mobile-menu__links a {
    padding: 12px 14px !important;
    font-size: clamp(24px, 8vw, 36px) !important;
  }
  .mobile-social-links .social-link {
    width: 52px;
    height: 52px;
  }
}

/* === Games slideshow in Oferta === */
.games-showcase {
  margin-top: 56px;
  border: 1px solid rgba(101,232,255,.2);
  border-radius: 36px;
  padding: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 15% 10%, rgba(101,232,255,.16), transparent 22rem),
    radial-gradient(circle at 90% 80%, rgba(255,79,216,.12), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow), inset 0 0 30px rgba(101,232,255,.06);
  overflow: hidden;
}

.games-showcase__intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.games-showcase__intro h3 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 12px;
}

.games-showcase__intro p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.game-slider {
  position: relative;
}

.game-slider__viewport {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.38), 0 0 34px rgba(101,232,255,.12);
  background: rgba(0,0,0,.22);
}

.game-slider__track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}

.game-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.game-slide img {
  width: 100%;
  height: clamp(300px, 55vw, 620px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform .7s ease, filter .35s ease;
}

.game-slide.is-active img {
  transform: scale(1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101,232,255,.6);
  border-radius: 999px;
  color: #fff;
  background: rgba(3,10,29,.72);
  box-shadow: 0 0 24px rgba(101,232,255,.28), inset 0 0 18px rgba(101,232,255,.12);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(101,232,255,.95);
  background: rgba(8,24,58,.88);
  box-shadow: 0 0 34px rgba(101,232,255,.42), inset 0 0 22px rgba(101,232,255,.18);
}

.slider-btn--prev { left: 18px; }
.slider-btn--next { right: 18px; }

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(101,232,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.slider-dots button.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--ice), var(--magenta));
  border-color: rgba(255,255,255,.56);
  box-shadow: 0 0 18px rgba(101,232,255,.46);
}

@media (max-width: 700px) {
  .games-showcase { margin-top: 34px; border-radius: 28px; }
  .game-slider__viewport { border-radius: 22px; }
  .game-slide img { height: 360px; }
  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }
  .slider-btn--prev { left: 10px; }
  .slider-btn--next { right: 10px; }
}

@media (max-width: 430px) {
  .game-slide img { height: 300px; }
}
