/**
 * /new — alap: exitgames.ro főoldal (stylesheet.css) — #212121, #EB5757,
 * Montserrat + Space Mono (kis feliratok). SEO-barát felépítés, egy H1, szekció H2-k.
 * Megmaradt funkciók: árkalkulátor, footer-ikonok, Google Maps, sticky rezervare.
 */

:root {
  --eg-bg: #212121;
  --eg-bg-elev: #1a1a1a;
  --eg-line: #2d2d2d;
  --eg-text: #f5f5f5;
  /* Világosabb szürkék — jobb WCAG kontraszt a #212121-en */
  --eg-muted: #bdbdbd;
  --eg-sub: #b0b0b0;
  --eg-brand: #eb5757;
  --eg-brand-hover: #ff6b6b;
  --eg-staxts-track: #c4c4c4;
  --eg-footer-ink: #9e9e9e;
  --eg-wrap: 1100px;
  --eg-header-h: 56px;
  --eg-sticky: 68px;
  --eg-radius: 0;
  --eg-font: "Montserrat", system-ui, sans-serif;
  --eg-mono: "Space Mono", ui-monospace, monospace;
  --eg-ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Főoldal .btn: border-radius 7px, Space Mono, uppercase (stylesheet.css) */
  --eg-btn-radius: 7px;
  /* Cupon scratch — fedél alatti háttér (scratch után látszik). WebP: állítsd pl.
     --eg-coupon-reveal-bg-image: url("/new/img/cupon-reveal.webp"); és opcionálisan egy sötét overlay-t cover felett. */
  --eg-coupon-reveal-bg: var(--eg-bg);
  --eg-coupon-reveal-bg-image: none;
  --eg-coupon-frame: rgba(212, 175, 105, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.eg-new, body.eg-now {
  margin: 0;
  font-family: var(--eg-font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--eg-text);
  background: var(--eg-bg);
  padding-bottom: calc(var(--eg-sticky) + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

body.eg-new a,
body.eg-now a {
  color: #efefef;
  text-decoration: none;
}
body.eg-new a:hover,
body.eg-now a:hover {
  color: var(--eg-brand);
}

body.eg-new a.eg-venue-dir__action,
body.eg-new a.eg-venue-dir__action:visited,
body.eg-now a.eg-venue-dir__action,
body.eg-now a.eg-venue-dir__action:visited {
  color: var(--eg-brand);
  text-decoration: none;
}

body.eg-new a.eg-venue-dir__action:hover,
body.eg-new a.eg-venue-dir__action:focus-visible,
body.eg-now a.eg-venue-dir__action:hover,
body.eg-now a.eg-venue-dir__action:focus-visible {
  color: var(--eg-brand-hover);
  text-decoration: none;
}

/* Szövegközti linkek: aláhúzás (globális body linkek vs szekció). */
body.eg-new .eg-section a:not(.eg-btn):not(.eg-room__media):not(.eg-hot-offers__btn):not(.eg-video__fallback):not(.eg-venue-dir__action),
body.eg-now .eg-section a:not(.eg-btn):not(.eg-room__media):not(.eg-hot-offers__btn):not(.eg-video__fallback):not(.eg-venue-dir__action) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: auto;
}
body.eg-new .eg-price-foot a,
body.eg-now .eg-price-foot a {
  color: var(--eg-text);
}

/* Képek, beágyazott tartalmak — nincs keret, nincs matrica-rácsvonal */
body.eg-new img,
body.eg-now img,
body.eg-new iframe,
body.eg-now iframe {
  border: 0;
  outline: 0;
  box-shadow: none;
}

/* Ne örököljön „globális” text-decoration a teljes lapra (régi cache / hibás vízzelintett selector esetén a body
   kaphatott underline-t → minden szöveg aláhúzva). A linkek .eg-section-ban külön kapnak underline-t. */
body.eg-new main,
body.eg-now main {
  text-decoration: none;
}
body.eg-new > header,
body.eg-new > header *,
body.eg-now > header,
body.eg-now > header * {
  text-decoration: none;
}
body.eg-new .eg-drawer,
body.eg-new .eg-drawer *,
body.eg-now .eg-drawer,
body.eg-now .eg-drawer * {
  text-decoration: none;
}
body.eg-new .eg-sticky-book,
body.eg-new .eg-sticky-book *,
body.eg-now .eg-sticky-book,
body.eg-now .eg-sticky-book * {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--eg-brand);
  outline-offset: 2px;
}

/* Scroll reveal — finom, crawlernek nem akadály */
.eg-animate {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.55s var(--eg-ease),
    transform 0.55s var(--eg-ease);
  transition-delay: var(--reveal-delay, 0s);
}
.eg-animate--in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .eg-animate {
    opacity: 1;
    transform: none;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.6rem 0.9rem;
  background: var(--eg-brand);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.eg-wrap {
  width: min(100% - 1.5rem, var(--eg-wrap));
  margin-inline: auto;
}

/* Fejléc — főoldal jelleg: lap háttér, vékony elválasztó */
.eg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--eg-header-h);
  padding: 0 0.75rem;
  background: var(--eg-bg);
  border-bottom: 1px solid var(--eg-line);
}

.eg-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.eg-header__brand img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.eg-header__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  margin-right: 0.25rem;
  flex-shrink: 0;
  z-index: 2;
  font-family: var(--eg-mono);
  font-size: 0.75rem;
  color: #fff;
}
.eg-header__lang a[aria-current="page"] {
  color: var(--eg-brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.eg-header__lang a {
  color: #fff;
  font-weight: 500;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.eg-header__lang a:hover {
  color: var(--eg-brand);
}
.eg-header__lang a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.eg-header__lang span[aria-hidden] {
  color: var(--eg-sub);
}

.eg-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.eg-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.eg-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.eg-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.eg-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.eg-drawer {
  position: fixed;
  inset: 0;
  top: var(--eg-header-h);
  z-index: 40;
  background: var(--eg-bg);
  /* Jobbra igazított menü — a szendvics gomb alá essen (PC + mobil), rövid egérút */
  padding: 1rem 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.28s var(--eg-ease),
    visibility 0.28s;
}
.eg-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.eg-drawer nav {
  width: max-content;
  max-width: min(22rem, calc(100vw - 1.5rem));
}
.eg-drawer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.eg-drawer nav li {
  border-bottom: 1px solid var(--eg-line);
}
.eg-drawer nav a {
  display: block;
  padding: 1rem 0 1rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
}
.eg-drawer nav a:hover {
  color: var(--eg-brand);
}

/* Screen reader only (accessible title — látható branding az első slide szövegdobozban) */
.eg-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;
}

/* Hero */
.eg-hero {
  padding: 1.25rem 0 0.5rem;
  overflow-x: hidden;
}

.eg-hero__title {
  font-weight: 900;
  font-size: clamp(1.5rem, 5.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-text);
  margin: 0 0 0.75rem;
  text-align: left;
  text-shadow: none;
}
.eg-hero__line {
  display: block;
}

.eg-hero__lead {
  margin: 0 0 1rem;
  color: var(--eg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 40em;
}

.eg-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 0;
}

.eg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  font-family: var(--eg-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--eg-btn-radius);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

/* .btn.btn-primary.btn-primary-red — piros szegély, átlátszó háttér */
.eg-btn--primary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--eg-brand);
  box-shadow: none;
}
.eg-btn--primary:hover {
  color: #fff;
  background: rgba(235, 87, 87, 0.12);
  border-color: var(--eg-brand-hover);
}

/* .btn.btn-primary — fehér szegély */
.eg-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: none;
}
.eg-btn--ghost:hover {
  color: #fff;
  border-color: var(--eg-brand);
  background: rgba(255, 255, 255, 0.06);
}

/* Vízszintes kártya sáv — képek keret nélkül, cím sáv a főoldalhoz hasonlóan */
.eg-scroller-block {
  margin-top: 0.35rem;
}
.eg-scroller-block .eg-hero__lead {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0 0.35rem;
  max-width: none;
}
.eg-scroller-wrap {
  margin-inline: -0.75rem;
}
.eg-scroller {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.75rem;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--eg-brand) var(--eg-line);
}
.eg-scroller::-webkit-scrollbar {
  height: 6px;
}
.eg-scroller::-webkit-scrollbar-thumb {
  background: var(--eg-brand);
}

.eg-slide {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  margin: 0;
  background: var(--eg-bg);
  border: 0;
  box-shadow: none;
  padding: 0 0.4rem;
}
@media (min-width: 480px) {
  .eg-slide {
    flex: 0 0 88%;
    max-width: 88%;
  }
}
@media (min-width: 700px) {
  .eg-slide {
    flex: 0 0 min(420px, 70%);
    max-width: min(420px, 70%);
  }
}

/*
 * Hero WebP-k: „fekvő” doboz (szélesebb, alacsonyabb) — PC-n is ugyanaz mint mobilon,
 * kisebb látható magasság, gyorsabb kompozit / kevesebb GPU-felület (fájlméret = srcset + sizes).
 */
.eg-slide img {
  width: 100%;
  aspect-ratio: 1.618 / 1;
  max-height: 230px;
  flex-shrink: 0;
  box-sizing: border-box;
  display: block;
  object-fit: cover;
}

/* Később töltött hero WebP: átlátszó placeholder → a slide háttérszíne látszik addig */
.eg-slide__hero-img--pending {
  opacity: 0;
}
.eg-slide__hero-img--pending.is-loaded {
  opacity: 1;
  transition: opacity 0.28s ease;
}

/*
 * Brand médiafelület: folyóban lévő „színező” réteg aspect-ratio-val — ugyanaz a mechanika mint egy <img>.
 * Üres doboz + padding-bottom / csak abszolút gyerekek néhol félméretűné tették a blokkot (szélesség %- bázis).
 */
.eg-slide--brand .eg-slide__brand-visual {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: var(--eg-bg);
}

/* Mint a hero kép: ugyanaz a képarány + max magasság */
.eg-slide--brand .eg-slide__brand-aspect {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
  aspect-ratio: 1.618 / 1;
  max-height: 230px;
}

/* Átlátszó háttér: nem látszik „világosabb téglalap” a felirat mögött */
.eg-slide--brand .eg-slide__brand-stack {
  container-type: inline-size;
  container-name: eg-brand-slide;
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  padding: clamp(0.35rem, 2.5vw, 1.1rem);
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eg-brand);
  font-size: clamp(0.62rem, 3.2cqw, 1.85rem);
}

.eg-slide--brand .eg-slide__brand-stack::before {
  content: "";
  grid-row: 1;
  grid-column: 1;
  min-height: 0;
}

.eg-slide--brand .eg-slide__brand-stack::after {
  content: "";
  grid-row: 4;
  grid-column: 1;
  min-height: 0;
}

@media (min-width: 700px) {
  .eg-slide--brand .eg-slide__brand-stack {
    padding: clamp(0.65rem, 1.8cqw, 1.35rem);
    letter-spacing: 0.07em;
    font-size: clamp(0.75rem, 4.8cqw, 2.35rem);
  }
}

.eg-slide--brand .eg-slide__brand-line--primary {
  grid-row: 2;
  grid-column: 1;
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: left;
}

.eg-slide--brand .eg-slide__brand-line--secondary {
  grid-row: 3;
  grid-column: 1;
  display: block;
  margin-top: 0.28em;
  width: max-content;
  max-width: 100%;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: inherit;
  font-size: 0.82em;
}

@supports not (container-type: inline-size) {
  .eg-slide--brand .eg-slide__brand-stack {
    font-size: clamp(0.62rem, 3.8vw, 1.75rem);
  }
  @media (min-width: 700px) {
    .eg-slide--brand .eg-slide__brand-stack {
      font-size: clamp(0.72rem, 5.2vw, 2.2rem);
    }
  }
}

.eg-slide__title--brand-spacer {
  visibility: hidden;
  min-height: 2.75rem;
}

.eg-slide__title {
  margin: 0;
  padding: 0.75rem 0.5rem 0.5rem;
  font-weight: 900;
  font-size: clamp(0.7rem, 2.4vw, 0.9rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--eg-bg);
  border: 0;
  border-top: 1px solid var(--eg-line);
}

.eg-hero-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.5rem 0.75rem 0.15rem;
  background: var(--eg-bg);
  border-top: 1px solid var(--eg-line);
}
.eg-hero-dot {
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease;
}
.eg-hero-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.eg-hero-dot.is-active::before,
.eg-hero-dot[aria-current="true"]::before {
  background: #fff;
  border-color: #fff;
}
.eg-hero-dot:focus-visible {
  outline: 2px solid var(--eg-brand);
  outline-offset: 2px;
}

/* Mobilon ne törjenek 2 sorba a hero-dotok */
@media (max-width: 767px) {
  .eg-hero-dots {
    gap: 0.25rem;
    padding: 0.4rem 0.5rem 0.1rem;
  }
  .eg-hero-dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* Szekciók — főoldal: nagy piros H2, UPPERCASE */
.eg-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--eg-line);
}
.eg-section--tight {
  padding: 1.75rem 0;
}
.eg-section h2 {
  font-weight: 900;
  font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-brand);
  margin: 0 0 1rem;
  text-align: left;
  text-shadow: none;
}
.eg-section h2::after {
  display: none;
}
.eg-section h3 {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}
.eg-section p {
  margin: 0 0 0.9rem;
  color: var(--eg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 50em;
}
.eg-intro-muted {
  color: var(--eg-sub);
  font-size: 0.9rem;
  margin: -0.5rem 0 1.1rem;
}

/* MOA-inspired venue directory — /new, Montserrat + Space Mono */
.eg-venue-dir {
  border-top-color: var(--eg-line);
  padding-bottom: 1.25rem;
}

.eg-venue-dir__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eg-venue-dir__fact {
  min-width: 0;
}

@media (max-width: 599px) {
  .eg-venue-dir__facts {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0;
    align-items: stretch;
  }

  .eg-venue-dir__fact {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0 0.55rem;
    border-top: none;
  }

  .eg-venue-dir__fact:nth-child(1),
  .eg-venue-dir__fact:nth-child(3) {
    padding-left: 0;
    padding-right: 0.55rem;
    text-align: left;
    align-items: flex-start;
  }

  .eg-venue-dir__fact:nth-child(2),
  .eg-venue-dir__fact:nth-child(4) {
    padding-right: 0;
    padding-left: 0.55rem;
    border-left: 1px solid var(--eg-line);
    text-align: right;
    align-items: flex-end;
  }

  .eg-venue-dir__fact:nth-child(3),
  .eg-venue-dir__fact:nth-child(4) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--eg-line);
  }

  .eg-venue-dir__fact:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .eg-venue-dir__fact:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .eg-venue-dir__fact:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .eg-venue-dir__fact:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .eg-venue-dir__label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .eg-venue-dir__hours {
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .eg-venue-dir__hours li {
    gap: 0.2rem 0.35rem;
  }

  .eg-venue-dir__value,
  .eg-venue-dir__sub {
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .eg-venue-dir__action,
  .eg-parking-info__trigger {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .eg-venue-dir__fact:nth-child(4) .eg-venue-dir__foot.eg-parking-info {
    align-self: stretch;
    align-items: flex-end;
    width: 100%;
  }

  .eg-venue-dir__fact:nth-child(4) .eg-parking-info__popover {
    left: auto;
    right: 0;
  }
}

@media (min-width: 600px) {
  .eg-venue-dir__facts {
    flex-direction: row;
    align-items: stretch;
  }

  .eg-venue-dir__fact {
    flex: 1 1 0;
    padding: 0 1.1rem;
    border-left: 1px solid var(--eg-line);
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .eg-venue-dir__fact:first-child {
    padding-left: 0;
    border-left: none;
  }

  .eg-venue-dir__fact:last-child {
    padding-right: 0;
  }

  .eg-venue-dir__body {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .eg-venue-dir__foot {
    flex-shrink: 0;
    margin: 0;
    padding-top: 0.45rem;
    width: 100%;
  }

  .eg-venue-dir__foot.eg-parking-info {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.eg-venue-dir__fact {
  text-align: left;
}

.eg-venue-dir__body {
  min-width: 0;
}

.eg-venue-dir__foot {
  margin: 0;
  padding-top: 0.45rem;
}

.eg-venue-dir__foot.eg-parking-info {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.eg-venue-dir__label {
  margin: 0 0 0.5rem;
  font-family: var(--eg-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-brand);
}

.eg-venue-dir__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--eg-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--eg-muted);
}

.eg-venue-dir__hours li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.2rem;
}

.eg-venue-dir__hours li span {
  min-width: 0;
  font-weight: 700;
  color: var(--eg-muted);
  white-space: nowrap;
}

.eg-venue-dir__hours li > span:first-child::after {
  content: ":";
  margin-left: 0.05em;
  font-weight: 400;
  color: var(--eg-sub);
}

.eg-venue-dir__hours + .eg-venue-dir__value {
  margin-top: 0.45rem;
}

.eg-venue-dir__value {
  margin: 0;
  font-family: var(--eg-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--eg-muted);
}

.eg-venue-dir__value + .eg-venue-dir__value {
  margin-top: 0.35rem;
}

.eg-venue-dir__value a:not(.eg-venue-dir__action) {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.eg-venue-dir__action,
.eg-parking-info__trigger {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--eg-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eg-brand) !important;
  text-decoration: none !important;
  cursor: pointer;
}

a.eg-venue-dir__action,
a.eg-venue-dir__action:visited {
  color: var(--eg-brand) !important;
  text-decoration: none !important;
}

a.eg-venue-dir__action:hover,
a.eg-venue-dir__action:focus-visible,
.eg-parking-info__trigger:hover,
.eg-parking-info__trigger:focus-visible {
  color: var(--eg-brand-hover) !important;
  text-decoration: none !important;
}

.eg-parking-info {
  position: relative;
  margin-top: 0.45rem;
}

/* Nyitott popover: a #cupon-promotional fölé (DOM sorrend miatt alapból alatta marad) */
#venue-info:has(.eg-parking-info__popover:not([hidden])) {
  position: relative;
  z-index: 200;
}

.eg-parking-info__trigger {
  display: inline;
}

.eg-venue-dir__hint {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--eg-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--eg-sub);
}

.eg-venue-dir__hint--inline {
  display: inline;
  margin-top: 0;
  margin-left: 0.25rem;
}

.eg-venue-dir__plain {
  color: var(--eg-muted);
}

.eg-venue-dir__sub {
  margin: 0.15rem 0 0;
  font-family: var(--eg-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--eg-muted);
}

.eg-venue-dir__value .eg-venue-dir__sub {
  margin: 0;
}

.eg-parking-info__popover {
  position: absolute;
  z-index: 210;
  top: calc(100% + 0.4rem);
  left: 0;
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.85rem 2rem 0.9rem 0.95rem;
  border: 1px solid var(--eg-line);
  border-radius: 4px;
  background: #18181d;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.eg-parking-info__popover[hidden] {
  display: none !important;
}

.eg-parking-info__close {
  position: absolute;
  top: 0.25rem;
  right: 0.35rem;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--eg-sub);
  cursor: pointer;
}

.eg-parking-info__close:hover,
.eg-parking-info__close:focus-visible {
  color: #fff;
}

.eg-parking-info__title {
  margin: 0 0 0.55rem;
  font-family: var(--eg-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eg-brand);
}

.eg-parking-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--eg-font);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--eg-muted);
  text-align: left;
}

.eg-parking-info__list li + li {
  margin-top: 0.35rem;
}

.eg-parking-info__list code {
  font-family: var(--eg-mono);
  font-size: 0.92em;
  color: #fff;
  white-space: nowrap;
}

.eg-parking-info__list strong {
  color: #fff;
  font-weight: 600;
}

.eg-venue-dir__map-link {
  display: inline-block;
}

.eg-venue-faq .eg-venue-dir__faq {
  margin: 0;
}

.eg-venue-dir__faq-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--eg-line);
}

.eg-venue-dir__faq-item:last-child {
  border-bottom: 0;
}

.eg-venue-dir__faq dt {
  margin: 0 0 0.3rem;
  font-family: var(--eg-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.eg-venue-dir__faq dd {
  margin: 0;
  font-family: var(--eg-font);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--eg-muted);
  max-width: 42em;
}

/* Prețuri + kalkulátor */
.eg-section--preturi {
  background: var(--eg-bg);
}
.eg-price-foot {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--eg-sub);
  line-height: 1.5;
}

/* Cupon promo — Cod promo + Camera zilei (mobil: egymás alá, desktop: egymás mellett) */
.eg-section--cupon .eg-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eg-coupon-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  width: 100%;
  max-width: min(100%, 56rem);
}

@media (min-width: 768px) {
  .eg-coupon-promo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }
}

.eg-coupon-promo-block {
  width: 100%;
  min-width: 0;
}

.eg-coupon-promo__label {
  font-family: var(--eg-font);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eg-brand);
  margin: 0 0 0.65rem;
  text-align: center;
}

.eg-coupon-scratch {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.eg-coupon-scratch--scratching {
  touch-action: none;
}

.eg-coupon-scratch__inner {
  position: relative;
  width: 100%;
  min-height: 118px;
  aspect-ratio: 3 / 2;
  border-radius: var(--eg-btn-radius);
  overflow: hidden;
  border: 1px solid var(--eg-coupon-frame);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Kaparás előtt: pixel-art borítókép felül (mint a mockup) */
.eg-coupon-scratch__cover-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: var(--eg-btn-radius);
  transition: opacity 0.35s ease;
}

.eg-coupon-scratch--scratching .eg-coupon-scratch__cover-img,
.eg-coupon-scratch--done .eg-coupon-scratch__cover-img,
.eg-coupon-scratch--reduced .eg-coupon-scratch__cover-img {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.eg-coupon-scratch__reveal {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.eg-coupon-scratch--done .eg-coupon-scratch__reveal,
.eg-coupon-scratch--reduced .eg-coupon-scratch__reveal {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

.eg-coupon-scratch__reveal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(1.15);
  transform: scale(1.06);
}

.eg-coupon-scratch__reveal-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(8, 8, 12, 0.55) 0%, rgba(8, 8, 12, 0.82) 55%, rgba(8, 8, 12, 0.92) 100%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(235, 87, 87, 0.12) 0%, transparent 55%);
}

.eg-coupon-scratch__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 17.5rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 10px;
  background: rgba(12, 12, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.eg-coupon-scratch__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1208;
  background: linear-gradient(135deg, #f0d78c 0%, #c9a84a 100%);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}

.eg-coupon-scratch__badge--room {
  background: linear-gradient(135deg, #ff8a80 0%, var(--eg-brand) 100%);
  color: #fff;
}

.eg-coupon-scratch__room-name {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8c872;
  letter-spacing: 0.02em;
}

.eg-coupon-scratch__room-name[hidden] {
  display: none;
}

.eg-coupon-scratch__benefit {
  margin: 0 0 0.5rem;
  font-size: clamp(0.85rem, 2.8vw, 0.95rem);
  line-height: 1.45;
  color: var(--eg-text);
}

.eg-coupon-scratch__benefit strong {
  color: #e8c878;
  font-weight: 800;
}

.eg-coupon-scratch__benefit .eg-coupon-scratch__valid-until,
.eg-coupon-scratch__meta {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--eg-muted);
}

.eg-coupon-scratch__meta--today {
  color: #8fd4a8;
  font-weight: 600;
}

.eg-coupon-scratch__code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.eg-coupon-scratch__code {
  margin: 0;
  font-family: var(--eg-mono);
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.eg-coupon-scratch__copy {
  font-family: var(--eg-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--eg-text);
  cursor: pointer;
}

.eg-coupon-scratch__copy:active {
  transform: scale(0.97);
}

.eg-coupon-scratch__book {
  display: none;
  margin: 0.65rem auto 0;
  width: 100%;
  max-width: 18rem;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--eg-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(143, 212, 168, 0.55);
  background: rgba(143, 212, 168, 0.14);
  color: #d8f5e4;
  transition: background 0.2s ease, transform 0.15s ease;
}

.eg-coupon-scratch__book:hover,
.eg-coupon-scratch__book:focus-visible {
  background: rgba(143, 212, 168, 0.24);
  color: #fff;
  text-decoration: none;
}

.eg-coupon-scratch__book:active {
  transform: scale(0.98);
}

.eg-coupon-scratch--done .eg-coupon-scratch__book--ready,
.eg-coupon-scratch--reduced .eg-coupon-scratch__book--ready {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.eg-coupon-scratch__hint {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--eg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  margin: 0;
  transition: opacity 0.3s;
}

.eg-coupon-scratch--done .eg-coupon-scratch__hint {
  opacity: 0;
}

.eg-coupon-scratch__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: var(--eg-btn-radius);
  cursor: grab;
  touch-action: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.eg-coupon-scratch--scratching.eg-coupon-scratch--canvas-ready .eg-coupon-scratch__canvas {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.eg-coupon-scratch__canvas:active {
  cursor: grabbing;
}

.eg-coupon-scratch--done .eg-coupon-scratch__canvas {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.eg-coupon-scratch__instruction {
  margin: 0.85rem 0 0;
  font-family: var(--eg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eg-sub);
  text-align: center;
}

@media (min-width: 520px) {
  .eg-coupon-scratch__panel {
    max-width: 19rem;
    padding: 1.15rem 1.25rem;
  }
}

/* Réduction motion: nincs karcolás, kód azonnal látható */
@media (prefers-reduced-motion: reduce) {
  .eg-coupon-scratch--reduced .eg-coupon-scratch__canvas {
    display: none !important;
  }
  .eg-coupon-scratch--reduced .eg-coupon-scratch__reveal {
    outline: 1px solid var(--eg-coupon-frame);
    outline-offset: -1px;
  }
}

.eg-calc {
  margin-top: 0.5rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--eg-line);
}
.eg-calc__label {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--eg-text);
  font-weight: 600;
}
.eg-calc__label label {
  cursor: pointer;
}
.eg-calc__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.eg-calc__stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--eg-line);
  background: var(--eg-bg-elev);
  border-radius: var(--eg-btn-radius);
  overflow: hidden;
}
.eg-calc__btn {
  min-width: 48px;
  min-height: 44px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: var(--eg-bg);
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.eg-calc__btn:hover {
  background: #2a2a2a;
}
.eg-calc__input {
  width: 3.2rem;
  text-align: center;
  font-family: var(--eg-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--eg-line);
  border-right: 1px solid var(--eg-line);
  -moz-appearance: textfield;
  appearance: textfield;
}
.eg-calc__input::-webkit-outer-spin-button,
.eg-calc__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.eg-calc__results {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
@media (min-width: 520px) {
  .eg-calc__results {
    grid-template-columns: 1fr 1fr;
  }
}
.eg-calc__result {
  margin: 0;
  padding: 0.9rem 0.75rem;
  background: var(--eg-bg-elev);
  border: 0;
  border-top: 2px solid var(--eg-brand);
}
.eg-calc__result h3 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-sub);
  margin: 0 0 0.35rem;
}
.eg-calc__per {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
}
.eg-calc__total {
  font-family: var(--eg-mono);
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}
.eg-calc__sum {
  color: var(--eg-brand);
  font-weight: 700;
  font-size: 1.1rem;
}
.eg-calc__sublabel {
  margin: 0;
  font-size: 0.7rem;
  color: var(--eg-sub);
  line-height: 1.4;
}

/* Stat sávok (ugyanaz a logika) */
.eg-stats {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.5rem 0 0.35rem;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.eg-stats__row {
  display: grid;
  grid-template-columns: minmax(4.75rem, auto) minmax(0, 1fr);
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}
.eg-stats__label {
  font-family: var(--eg-mono);
  font-size: calc(0.6rem + 2px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eg-sub);
}
/* Dificultate / logică / abilități: kitöltött = rózsaszín, hátralévő sáv = #c4c4c4 */
.eg-stats__row:not(.eg-stats__row--clima) .eg-stats__track {
  height: 4px;
  background: var(--eg-stats-track);
  border-radius: 0;
  overflow: hidden;
}
.eg-stats__row:not(.eg-stats__row--clima) .eg-stats__fill {
  height: 100%;
  width: 0;
  background: var(--eg-brand);
  border-radius: 0;
  transition: width 0.5s var(--eg-ease) 0.1s;
}
.eg-room.eg-animate--in .eg-stats__row:not(.eg-stats__row--clima) .eg-stats__fill {
  width: calc(var(--p) * 1%);
}
@media (prefers-reduced-motion: reduce) {
  .eg-room .eg-stats__row:not(.eg-stats__row--clima) .eg-stats__fill {
    width: calc(var(--p) * 1%);
    transition: none;
  }
}

/* Clima — aceeași grilă / tipografie ca dificultate, logică, abilități */
.eg-stats__label--clima-da {
  color: var(--eg-brand);
}
.eg-stats__label--clima-nu {
  color: var(--eg-sub);
}
.eg-stats__track--clima {
  height: 4px;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.eg-stats__track--clima-da {
  background: var(--eg-brand);
}
.eg-stats__track--clima-nu {
  background: #707070;
}

/* PC: töltőcsík max. ~fél szélesség; mobil alább marad teljes */
@media (min-width: 768px) {
  .eg-stats__row:not(.eg-stats__row--clima) .eg-stats__track,
  .eg-stats__row--clima .eg-stats__track--clima {
    width: 50%;
    max-width: 50%;
  }

  /* Szobanév a kép alatt (mobilon marad a kép felett — DOM sorrend) */
  .eg-room {
    display: flex;
    flex-direction: column;
  }
  .eg-room__media {
    order: 1;
  }
  .eg-room__head {
    order: 2;
    padding: 0.65rem 0.75rem 0.35rem;
  }
  .eg-room__body {
    order: 3;
  }
}

/* Camere — nincs kártya-keret, full-bleed kép a sávon */
.eg-rooms {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  margin-inline: -0.75rem;
  width: calc(100% + 1.5rem);
}
.eg-room {
  border: 0;
  box-shadow: none;
  background: var(--eg-bg);
  border-radius: 0;
  overflow: visible;
  border-bottom: 1px solid var(--eg-line);
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
}
.eg-room:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.eg-room__media {
  display: block;
  overflow: hidden;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  background: #1a1a1a;
}
.eg-room__photo-layer {
  --photo-y: 0px;
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.eg-room__photo-layer picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 520px) and (orientation: portrait) {
  .eg-room__body {
    padding-top: 0.8rem;
  }
  .eg-room__body .eg-btn-row {
    margin-top: 0.6rem;
  }
  .eg-room__head h3 {
    font-size: clamp(1.42rem, 6.2vw, 1.9rem);
    line-height: 1.04;
    margin-bottom: 0;
  }
}
.eg-room__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translate3d(0, var(--photo-y, 0px), 0);
  will-change: transform;
}

/* Telefon: teljes kép látszik (nincs cover-vágás), natív magasság + ~20px */
@media (max-width: 767px) {
  .eg-room__media {
    overflow: visible;
    background: var(--eg-bg);
  }
  .eg-room__photo-layer {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    --photo-y: 0px;
    padding-bottom: 20px;
    line-height: 0;
  }
  .eg-room__photo-layer picture {
    height: auto;
  }
  .eg-room__photo {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    transform: none;
    will-change: auto;
  }
  .eg-room[data-room-id="7"] .eg-room__photo {
    object-fit: contain;
  }
}

.eg-room[data-room-id="7"] .eg-room__photo {
  object-fit: contain;
  transform: none;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .eg-room__photo {
    transform: none;
  }
  .eg-room__photo-layer {
    --photo-y: 0px;
  }
}

.eg-room__head {
  padding: 0.75rem 0.75rem 0.4rem;
  text-align: center;
}
.eg-room__head h3 {
  font-size: clamp(1.32rem, 4.8vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.eg-room__body {
  padding: 1rem 0.75rem 0;
}
.eg-room__body p {
  font-size: 0.9rem;
  color: var(--eg-muted);
  margin: 0 0 0.4rem;
  line-height: 1.55;
  max-width: none;
}
.eg-room__body .eg-btn-row {
  margin-top: 0.75rem;
}
.eg-hot-offers {
  margin-top: 1.05rem;
  padding-top: 0.9rem;
  padding-bottom: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: none;
}
.eg-hot-offers[hidden] {
  display: none !important;
}
/* Astăzi \ LUNI \  + dátum \ szoba — soronként 20px magas sor */
.eg-hot-offers__context {
  margin: 0 0 0.7rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--eg-font);
  font-size: 19px;
  line-height: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  max-width: 18rem;
}
.eg-hot-offers__context-head {
  display: block;
  min-height: 20px;
  line-height: 20px;
  font-weight: 900;
  font-size: 19px;
  color: #fff;
}
.eg-hot-offers__context-detail {
  display: block;
  min-height: 20px;
  line-height: 20px;
  margin-top: 0;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #fff;
}
.eg-hot-offers__context[hidden] {
  display: none !important;
}
.eg-hot-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.55rem;
  row-gap: calc(0.55rem / 2);
  align-items: start;
  justify-items: stretch;
}
.eg-hot-offers__item {
  display: grid;
  gap: 0.32rem;
  grid-template-rows: 1.05rem minmax(40px, auto);
  min-width: 0;
}
.eg-hot-offers__item-label {
  margin: 0;
  font-family: var(--eg-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  align-self: end;
}
.eg-hot-offers__item-label.is-hot {
  color: #ff6767;
  align-self: end;
  animation: eg-hot-title-blink 1s ease-in-out infinite;
}
/* HOT/PROMO felirat: az egész slot-rács egy sorban lejjebb (minden cella azonos címke-magasság) */
.eg-hot-offers:has(.eg-hot-offers__item-label.is-hot) .eg-hot-offers__item {
  grid-template-rows: calc(1.05rem + 12px) minmax(40px, auto);
  gap: 0.4rem;
}
.eg-hot-offers:has(.eg-hot-offers__item-label.is-hot) .eg-hot-offers__grid {
  align-items: end;
}
.eg-hot-offers__item-label.is-empty {
  visibility: hidden;
}
@keyframes eg-hot-title-blink {
  0%,
  100% {
    color: #ff5f5f;
    opacity: 1;
  }
  50% {
    color: #fff;
    opacity: 0.95;
  }
}
.eg-hot-offers__btn {
  width: 100%;
  max-width: none;
  height: 85px;
  min-height: 85px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #e0e0e0;
  background: #353535;
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.006em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
@media (min-width: 768px) {
  .eg-hot-offers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 9px;
  }
  .eg-hot-offers__btn {
    width: 100%;
    max-width: none;
    height: 85px;
    min-height: 85px;
    border-radius: 12px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .eg-hot-offers__grid {
    row-gap: 3px;
  }
}
.eg-hot-offers__btn:hover {
  background: #3b3b3b;
  color: #f2f2f2;
  text-decoration: none !important;
}
.eg-hot-offers__btn:visited,
.eg-hot-offers__btn:focus {
  text-decoration: none !important;
}
.eg-hot-offers__btn.is-hot {
  background: linear-gradient(135deg, #eb5757 0%, #c63f3f 100%);
  border-color: #ff9d9d;
  box-shadow: 0 8px 18px rgba(235, 87, 87, 0.35);
  animation: eg-hot-pulse 1.15s ease-in-out infinite;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.eg-hot-offers__btn.is-hot:visited {
  color: #ffffff;
}
.eg-hot-offers__btn.is-hot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 285deg,
    rgba(255, 255, 255, 0.96) 330deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 2px;
  animation: eg-hot-border-run 1.3s linear infinite;
  pointer-events: none;
}
@keyframes eg-hot-border-run {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.eg-hot-offers__btn.is-hot:hover {
  background: linear-gradient(135deg, #ff6868 0%, #d74f4f 100%);
  border-color: #ffd0d0;
  box-shadow: 0 10px 22px rgba(235, 87, 87, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.eg-hot-offers__btn.is-hot:focus-visible {
  outline: 2px solid #ffd6d6;
  outline-offset: 2px;
  color: #ffffff;
}
@keyframes eg-hot-pulse {
  0%,
  100% {
    box-shadow:
      0 8px 18px rgba(235, 87, 87, 0.35),
      0 0 0 0 rgba(235, 87, 87, 0.3);
    filter: saturate(1);
  }
  50% {
    box-shadow:
      0 12px 24px rgba(235, 87, 87, 0.48),
      0 0 0 8px rgba(235, 87, 87, 0);
    filter: saturate(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .eg-hot-offers__btn.is-hot {
    animation: none;
  }
  .eg-hot-offers__btn.is-hot::before {
    animation: none;
  }
  .eg-hot-offers__item-label.is-hot {
    animation: none;
  }
}
.eg-hot-offers__status {
  margin: 16px 0 0;
  padding-top: 0.25rem;
  font-family: var(--eg-mono);
  font-size: 0.68rem;
  color: #ff4b4b;
}
.eg-hot-offers__status--empty {
  margin: 0.35rem 0 0;
  padding-top: 0;
  font-family: var(--eg-mono);
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
  max-width: none;
}
.eg-hot-offers__status--empty[hidden] {
  display: none !important;
}
@media (max-width: 640px) {
  /* Max 6 slot: 2 sor × 3 oszlop (mint PC-n); kevesebb slotnál a rács automatikusan „szűkül” */
  .eg-hot-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 4px;
    align-items: start;
  }
  .eg-hot-offers__item {
    grid-template-rows: 0.85rem minmax(44px, auto);
    gap: 0.24rem;
    min-width: 0;
    max-width: none;
  }
  .eg-hot-offers:has(.eg-hot-offers__item-label.is-hot) .eg-hot-offers__item {
    grid-template-rows: calc(0.85rem + 12px) minmax(44px, auto);
    gap: 0.35rem;
  }
  .eg-hot-offers__item-label {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .eg-hot-offers__btn {
    width: 100%;
    max-width: none;
    min-height: 44px;
    height: auto;
    padding: 0.55rem 0.5rem;
    border-radius: 12px;
    font-family: var(--eg-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.075;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #e0e0e0;
    align-self: stretch;
    justify-content: center;
  }
}
.eg-room__meta {
  font-family: var(--eg-mono);
  font-size: 0.65rem;
  color: var(--eg-sub);
  margin: 0 0 0.2rem;
  letter-spacing: 0.04em;
}

/* Publikum */
.eg-audience {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .eg-audience {
    grid-template-columns: repeat(2, 1fr);
  }
}
.eg-audience article {
  padding: 0.9rem 0 0;
  border: 0;
  border-top: 1px solid var(--eg-line);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.eg-audience article h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--eg-brand);
  margin: 0.5rem 0 0.4rem;
}
.eg-audience p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--eg-muted);
  line-height: 1.55;
}

/* Voucher */
.eg-section--voucher .eg-voucher-panel__title {
  color: var(--eg-brand);
  font-weight: 900;
  font-size: clamp(1.2rem, 4.2vw, 1.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.eg-voucher-panel__lede {
  font-size: 0.9rem;
  color: var(--eg-muted);
  line-height: 1.6;
  max-width: 40em;
  margin: 0 0 1rem;
}
.eg-voucher-panel__grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 640px) {
  .eg-voucher-panel__grid {
    grid-template-columns: minmax(0, 1fr) 1fr;
    gap: 1.5rem;
  }
}
.eg-voucher-panel__img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  object-fit: cover;
  max-height: 280px;
  object-position: center;
}
.eg-voucher-panel__copy p {
  margin: 0 0 1rem;
  color: var(--eg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.eg-voucher-panel__cta {
  max-width: 280px;
}

/* Video */
.eg-video-cap {
  font-family: var(--eg-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-sub);
  margin: 0 0 0.4rem;
}
.eg-video-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 700px) {
  .eg-video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* YouTube: nem eg-animate (fekete doboz) — kattintásra tölt beágyazás */
#video.eg-section--embeds {
  opacity: 1;
  transform: none;
}
.eg-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.eg-video__fallback {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 0;
}
.eg-video__fallback:hover .eg-video__play,
.eg-video__fallback:focus-visible .eg-video__play {
  background: var(--eg-brand-hover);
  transform: scale(1.05);
}
.eg-video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.eg-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 4.25rem;
  height: 3rem;
  margin: -1.5rem 0 0 -2.125rem;
  border-radius: 0.65rem;
  background: var(--eg-brand);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.eg-video__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.45rem 0 0 -0.28rem;
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.72rem;
  border-color: transparent transparent transparent #fff;
}
.eg-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact + térkép */
.eg-contact-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .eg-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.eg-contact-grid h3 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--eg-sub);
  margin: 0 0 0.3rem;
  font-family: var(--eg-mono);
}
.eg-contact-grid p {
  margin: 0;
  color: var(--eg-text);
  font-size: 0.9rem;
  line-height: 1.5;
}
.eg-contact-parking {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--eg-sub);
}
.eg-contact-parking__hint {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: var(--eg-sub);
  opacity: 0.92;
}
body.eg-new .eg-contact-grid a,
body.eg-now .eg-contact-grid a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.eg-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.eg-contact-social a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--eg-bg-elev);
  border: 0;
  box-shadow: none;
  border-radius: 0;
  transition: background 0.2s ease;
}
.eg-contact-social a:hover {
  background: #2a2a2a;
}
body.eg-new .eg-contact-grid .eg-contact-social a,
body.eg-now .eg-contact-grid .eg-contact-social a {
  text-decoration: none;
}
.eg-contact-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.eg-map-wrap {
  margin-top: 1.5rem;
}

#harta {
  scroll-margin-top: calc(var(--eg-header-h) + 0.75rem);
}
.eg-map-title {
  font-family: var(--eg-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eg-sub);
  margin: 0 0 0.4rem;
}
.eg-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  overflow: hidden;
  background: var(--eg-line);
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.eg-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.eg-map-link {
  text-align: center;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}
body.eg-new .eg-map-link a,
body.eg-now .eg-map-link a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Lábléc — meghagyott blokk */
.eg-footer {
  padding: 1.1rem 0.75rem 1.4rem;
  padding-bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  background: #1a1a1a;
  border-top: 1px solid var(--eg-line);
}
.eg-footer__inner {
  max-width: 420px;
  margin-inline: auto;
  text-align: center;
}
.eg-footer__guides {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.85rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--eg-line);
}
.eg-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin: 0 0 0.75rem;
}
body.eg-new .eg-footer__privacy,
body.eg-now .eg-footer__privacy {
  font-family: var(--eg-mono);
  font-size: 0.6rem;
  color: #b0b0b0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
body.eg-new .eg-footer__privacy:hover,
body.eg-now .eg-footer__privacy:hover {
  color: #dcdcdc;
}
.eg-footer__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  opacity: 0.85;
}
.eg-footer__icon-link:hover {
  opacity: 1;
}
.eg-footer__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: none;
}
.eg-footer__copy {
  font-family: var(--eg-mono);
  font-size: 0.6rem;
  color: var(--eg-footer-ink);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.eg-footer__legal {
  font-family: var(--eg-mono);
  font-size: 0.55rem;
  color: #8a8a8a;
  margin: 0;
  line-height: 1.4;
}

.eg-sticky-book {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: var(--eg-bg);
  border-top: 1px solid var(--eg-line);
  box-shadow: none;
}
.eg-sticky-book .eg-btn {
  flex: 1;
  max-width: 400px;
  min-height: 50px;
  font-size: 0.75rem;
}

/* Cookie banner (jquery.ihavecookies) */
#gdpr-cookie-message {
  position: fixed !important;
  z-index: 100000 !important;
  left: 12px;
  right: auto;
  bottom: 12px;
  max-width: min(400px, calc(100vw - 24px));
  margin: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  background: #ffffff !important;
  color: #212121 !important;
  padding: 16px 18px !important;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
}
#gdpr-cookie-message a {
  color: #0b57d0 !important;
}
#gdpr-cookie-message button {
  color: #212121 !important;
  background: #f0f0f0 !important;
  border: 1px solid #b8b8b8 !important;
  border-radius: 6px;
  padding: 8px 14px !important;
  font-weight: 600;
}
#gdpr-cookie-message button:hover {
  background: #e4e4e4 !important;
  border-color: #999 !important;
}
@media screen and (max-width: 576px) {
  #gdpr-cookie-message {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    max-width: none;
  }
}

@media (min-width: 900px) {
  body.eg-new, body.eg-now {
    padding-bottom: 0;
  }
  .eg-sticky-book {
    display: none;
  }
}

/* ==========================================================================
   MOBILE TYPO V2 (Figma mobil) — csak max-width: 767px
   Bekapcsolás: body.eg-typo-mobile-v2  |  Visszaállítás: new/TYPO_MOBILE_V2_ROLLBACK.md
   ========================================================================== */
@media (max-width: 767px) {
  body.eg-new.eg-typo-mobile-v2 .eg-section h2,
  body.eg-new.eg-typo-mobile-v2 .eg-section--voucher .eg-voucher-panel__title,
  body.eg-now.eg-typo-mobile-v2 .eg-section h2,
  body.eg-now.eg-typo-mobile-v2 .eg-section--voucher .eg-voucher-panel__title {
    font-family: var(--eg-font);
    font-weight: 900;
    font-size: clamp(2.25rem, 12.8vw, 3rem);
    line-height: 0.75;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #e5e5e5;
    text-align: left;
    text-shadow: none;
    margin: 0 0 0.85rem;
    max-width: none;
    width: 100%;
    text-wrap: balance;
  }

  body.eg-new.eg-typo-mobile-v2 #despre-joc .eg-wrap > p,
  body.eg-now.eg-typo-mobile-v2 #despre-joc .eg-wrap > p,
  body.eg-new.eg-typo-mobile-v2 .eg-room__body > p:not(.eg-room__meta),
  body.eg-now.eg-typo-mobile-v2 .eg-room__body > p:not(.eg-room__meta) {
    font-family: var(--eg-mono);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    max-width: none;
    width: 100%;
    margin: 0 0 0.75rem;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-room__head h3,
  body.eg-now.eg-typo-mobile-v2 .eg-room__head h3 {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: var(--eg-font);
    font-weight: 900;
    font-size: clamp(1.5rem, 7.25vw, 2rem);
    line-height: 0.82;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    text-align: center;
    color: #e5e5e5;
    margin: 0 0 0.65rem;
    padding: 0 0.2rem;
    text-wrap: balance;
    hyphens: none;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-hero__lead,
  body.eg-now.eg-typo-mobile-v2 .eg-hero__lead,
  body.eg-new.eg-typo-mobile-v2 .eg-price-foot,
  body.eg-now.eg-typo-mobile-v2 .eg-price-foot,
  body.eg-new.eg-typo-mobile-v2 .eg-voucher-panel__lede,
  body.eg-now.eg-typo-mobile-v2 .eg-voucher-panel__lede,
  body.eg-new.eg-typo-mobile-v2 .eg-voucher-panel__copy p,
  body.eg-now.eg-typo-mobile-v2 .eg-voucher-panel__copy p {
    font-family: var(--eg-mono);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    max-width: none;
    width: 100%;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-price-foot,
  body.eg-now.eg-typo-mobile-v2 .eg-price-foot {
    color: #fff;
  }

  body.eg-new.eg-typo-mobile-v2 #pentru-cine .eg-audience p,
  body.eg-now.eg-typo-mobile-v2 #pentru-cine .eg-audience p {
    font-family: var(--eg-mono);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    max-width: none;
    width: 100%;
  }

  /* Kétsoros cím (HTML: .eg-room-title--stack) — mobilon két sor, desktopon egy */
  body.eg-new.eg-typo-mobile-v2 .eg-room__head h3.eg-room-title--stack,
  body.eg-now.eg-typo-mobile-v2 .eg-room__head h3.eg-room-title--stack {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
    line-height: 0.8;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-room__head h3.eg-room-title--stack .eg-room-title__line,
  body.eg-now.eg-typo-mobile-v2 .eg-room__head h3.eg-room-title--stack .eg-room-title__line {
    display: block;
  }
}

/* Desktop / tablet: stack cím egy sorban (szóköz a span-ek között) */
.eg-room__head h3.eg-room-title--stack .eg-room-title__line {
  display: inline;
}
.eg-room__head h3.eg-room-title--stack .eg-room-title__line + .eg-room-title__line::before {
  content: " ";
}

@media (max-width: 520px) and (orientation: portrait) {
  body.eg-new.eg-typo-mobile-v2 .eg-room__head h3:not(.eg-room-title--stack),
  body.eg-now.eg-typo-mobile-v2 .eg-room__head h3:not(.eg-room-title--stack) {
    font-size: clamp(1.45rem, 6.9vw, 1.85rem);
    line-height: 0.82;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-room__head h3.eg-room-title--stack,
  body.eg-now.eg-typo-mobile-v2 .eg-room__head h3.eg-room-title--stack {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 0.8;
  }
}

/* Slotok → gombok: nincs vonal a slotok alatt; gombok teljes szélesség, alatta vastag fehér záróvonal */
@media (max-width: 767px) {
  .eg-room {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .eg-room__body .eg-stats {
    margin: 0.5rem -0.75rem 0.35rem;
    width: calc(100% + 1.5rem);
    padding: 0 0.75rem;
    max-width: none;
  }

  .eg-room__body .eg-stats__row {
    grid-template-columns: minmax(4.5rem, 5.5rem) minmax(0, 1fr);
    gap: 0.5rem;
  }

  .eg-room__body .eg-stats__track {
    width: 100%;
    min-width: 0;
  }

  .eg-room__body .eg-hot-offers {
    margin-top: 0.85rem;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .eg-room__body .eg-btn-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    /* 10px behúzás oldalanként — ne fedje a görgetősáv a Detalii / Rezervă gombokat */
    margin: 0 calc(-0.75rem + 10px) 1.35rem;
    width: calc(100% + 1.5rem - 20px);
    padding: 0 0 1rem;
    border-top: none;
    border-bottom: 3px solid #fff;
    box-sizing: border-box;
  }

  .eg-room__body .eg-btn-row .eg-btn {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    border-radius: var(--eg-btn-radius);
  }
}

/* Szabad slot gombok — Figma book button + 14:00 felirat (mobil, flow layout) */
@media (max-width: 767px) {
  body.eg-new.eg-typo-mobile-v2 .eg-hot-offers__grid,
  body.eg-now.eg-typo-mobile-v2 .eg-hot-offers__grid {
    column-gap: 0.65rem;
    row-gap: 0.35rem;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-hot-offers__btn,
  body.eg-now.eg-typo-mobile-v2 .eg-hot-offers__btn {
    width: 100%;
    min-height: 44px;
    padding: 0.5rem 0.45rem;
    border-radius: 12px;
    background: #353535;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--eg-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.075;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #e0e0e0;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.eg-new.eg-typo-mobile-v2 .eg-hot-offers__btn.is-hot,
  body.eg-now.eg-typo-mobile-v2 .eg-hot-offers__btn.is-hot {
    font-size: 13px;
    line-height: 1.15;
    padding: 0.45rem 0.35rem;
  }
}

/* Cinematic hero — slider helyett (Won J You: nagy felirat + sejtelmes fotó) */
body.eg-new .eg-hero.eg-cine {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #050505;
  min-height: calc(100svh - var(--eg-header-h));
}

body.eg-new .eg-cine__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body.eg-new .eg-cine__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

body.eg-new .eg-cine__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 42%;
  transform: scale(1.06);
}

body.eg-new .eg-cine__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.82) 0%,
      rgba(5, 5, 5, 0.45) 36%,
      rgba(5, 5, 5, 0.12) 64%,
      rgba(5, 5, 5, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.35) 0%,
      transparent 36%,
      rgba(5, 5, 5, 0.42) 100%
    );
}

body.eg-new .eg-cine__grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.eg-new .eg-cine__copy {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--eg-header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1rem, 5vw, 3.5rem) calc(var(--eg-sticky) + 1.25rem);
}

body.eg-new .eg-cine__kicker,
body.eg-new .eg-cine__sub {
  font-family: var(--eg-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  color: #fff;
}

body.eg-new .eg-cine__kicker {
  margin: 0 0 1.1rem;
}

body.eg-new .eg-cine__title {
  margin: 0;
  font-family: var(--eg-font);
  font-weight: 900;
  font-size: clamp(2.55rem, 13.2vw, 9.4rem);
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--eg-brand);
  text-wrap: balance;
}

body.eg-new .eg-cine__title span {
  display: block;
}

body.eg-new .eg-cine__sub {
  margin: 1.35rem 0 0;
}

@keyframes eg-cine-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-2.2%, 1.1%, 0);
  }
}

@media (max-width: 640px) {
  body.eg-new .eg-cine__media img {
    object-position: 68% 28%;
  }
  body.eg-new .eg-cine__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.4) 0%,
        rgba(5, 5, 5, 0.18) 30%,
        rgba(5, 5, 5, 0.62) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.55) 0%,
        rgba(5, 5, 5, 0.12) 100%
      );
  }
  body.eg-new .eg-cine__copy {
    justify-content: flex-end;
  }
  body.eg-new .eg-cine__title {
    font-size: clamp(2.4rem, 16.5vw, 4.4rem);
  }
}

@media (min-width: 801px) {
  body.eg-new .eg-cine__media img {
    animation: eg-cine-drift 32s ease-in-out infinite alternate;
  }
  /* PC: felirat kicsit lejjebb a Sherlock-mellen; telefon flex-end marad */
  body.eg-new .eg-cine__copy {
    padding-top: clamp(5.5rem, 18vh, 11rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.eg-new .eg-cine__media img {
    animation: none;
    transform: scale(1.06);
  }
}
