/* Homepage hero, atmosphere divider, quick links, visitor information and home panels. */
.gtg-sticker {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: .42rem .75rem;
  border: var(--gtg-border);
  border-radius: 999px;
  box-shadow: var(--gtg-shadow-sm);
  font-family: Bungee, Impact, sans-serif;
  font-size: .8rem;
}
.gtg-sticker--yellow { background: var(--gtg-yellow); }

.gtg-hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.8rem, 6vw, 5.2rem);
}

.gtg-hero--image-banner {
  --gtg-hero-parallax: 0px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 74vh, 760px);
  padding: clamp(3.75rem, 8vw, 7rem) 0 clamp(5.5rem, 9vw, 8rem);
  overflow: hidden;
  background: #242a30;
  color: var(--gtg-checkout-paper, var(--gtg-paper));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(2.6rem, 5vw, 5.25rem)), 0 100%);
}

.gtg-hero--image-banner::before {
  content: "";
  position: absolute;
  inset: -7% 0;
  z-index: -2;
  background-image: var(--gtg-hero-image);
  background-size: cover;
  background-position: 55% 42%;
  filter: saturate(.96) contrast(.98);
  transform: translate3d(0, var(--gtg-hero-parallax), 0) scale(1.08);
  will-change: transform;
}

.gtg-hero--image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(37,43,50,.78) 0%, rgba(37,43,50,.58) 35%, rgba(37,43,50,.30) 65%, rgba(37,43,50,.10) 100%),
    linear-gradient(180deg, rgba(37,43,50,.10), rgba(37,43,50,.42));
}

.gtg-hero__panel {
  max-width: min(720px, 100%);
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  color: var(--gtg-checkout-paper, var(--gtg-paper));
  text-shadow: 0 2px 10px rgba(0,0,0,.44), 0 1px 2px rgba(0,0,0,.55);
}
.gtg-hero__panel .gtg-sticker {
  border-color: currentColor;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.gtg-hero__panel h1,
.gtg-hero__copy h1 {
  max-width: 760px;
  margin: 0 0 1.35rem;
  font-size: clamp(1.72rem, 4.15vw, 3.72rem);
  line-height: 1.18;
  color: inherit;
}
.gtg-hero__title span {
  display: block;
  white-space: nowrap;
}
.gtg-hero__lead {
  max-width: 580px;
  margin: 0 0 2rem;
  font-size: clamp(1.08rem, 1.3vw, 1.23rem);
  font-weight: 750;
  color: inherit;
}
.gtg-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gtg-quick-links {
  padding: clamp(2.6rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--gtg-paper);
}
.gtg-card-grid {
  display: grid;
  gap: 1.3rem;
}
.gtg-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gtg-action-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.35rem;
  border: var(--gtg-border);
  border-radius: var(--gtg-radius);
  box-shadow: var(--gtg-shadow-sm);
  color: var(--gtg-ink);
  text-decoration: none;
  transform: translate(-2px, -2px);
  transition: transform .16s ease, box-shadow .16s ease;
}
.gtg-action-card:hover {
  box-shadow: 2px 2px 0 var(--gtg-ink);
  transform: none;
}
.gtg-action-card--orange {
  background: var(--gtg-orange);
  color: var(--gtg-paper);
}
.gtg-action-card--mustard { background: var(--gtg-yellow); }
.gtg-action-card--peach { background: var(--gtg-peach); }
.gtg-action-card--paper { background: var(--gtg-paper); }
.gtg-action-card h2 {
  margin: .65rem 0 .8rem;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  color: inherit;
}
.gtg-action-card p {
  max-width: 230px;
  margin: 0;
  font-size: .96rem;
  font-weight: 650;
}
.gtg-action-card__tag {
  width: fit-content;
  padding: .25rem .55rem;
  background: rgba(255,250,243,.72);
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--gtg-ink);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.gtg-action-card--orange .gtg-action-card__tag { background: var(--gtg-paper); }
.gtg-action-card__arrow {
  margin-top: auto;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.gtg-home-new-games {
  position: relative;
  isolation: isolate;
  padding: clamp(2.8rem, 5.6vw, 4.8rem) 0 clamp(3.2rem, 6vw, 5.2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(245,193,69,.32), transparent 26rem),
    radial-gradient(circle at 88% 15%, rgba(244,91,32,.22), transparent 28rem),
    var(--gtg-paper);
}
.gtg-home-new-games::before {
  content: "NEW · PLAY · BUY · TRY · ";
  position: absolute;
  left: -2rem;
  right: -2rem;
  top: .7rem;
  z-index: -1;
  color: rgba(32,36,42,.055);
  font-family: Bungee, Impact, sans-serif;
  font-size: clamp(2.7rem, 8vw, 8rem);
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  transform: rotate(-2deg);
}
.gtg-home-new-games__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.15rem;
}
.gtg-home-new-games__heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .98;
}
.gtg-home-new-games__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}
.gtg-home-new-game {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .52fr);
  gap: clamp(.9rem, 2vw, 1.2rem);
  min-height: 330px;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: var(--gtg-border);
  border-radius: var(--gtg-radius);
  box-shadow: var(--gtg-shadow);
  overflow: hidden;
  transform: translate(-2px, -2px) rotate(-.35deg);
}
.gtg-home-new-game::before,
.gtg-home-new-game::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(32,36,42,.22);
  border-radius: 999px;
  pointer-events: none;
}
.gtg-home-new-game::before {
  width: 9rem;
  height: 9rem;
  right: -3.5rem;
  top: -3.5rem;
  background: rgba(255,250,243,.24);
}
.gtg-home-new-game::after {
  width: 4.8rem;
  height: 4.8rem;
  right: 1.2rem;
  bottom: 1.1rem;
}
.gtg-home-new-game--shop {
  background: linear-gradient(135deg, var(--gtg-orange) 0%, #ff7a2f 100%);
  color: var(--gtg-paper);
}
.gtg-home-new-game--library {
  background: linear-gradient(135deg, var(--gtg-yellow) 0%, #ffe38a 100%);
  color: var(--gtg-ink);
  transform: translate(-2px, -2px) rotate(.35deg);
}
.gtg-home-new-game__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gtg-home-new-game__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: .8rem;
  padding: .32rem .64rem;
  background: var(--gtg-paper);
  border: 2px solid var(--gtg-ink);
  border-radius: 999px;
  color: var(--gtg-ink);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}
.gtg-home-new-game h3 {
  max-width: 430px;
  margin: 0 0 .75rem;
  color: inherit;
  font-size: clamp(1.65rem, 3.1vw, 2.85rem);
  line-height: .96;
}
.gtg-home-new-game p {
  max-width: 390px;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}
.gtg-home-new-game__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: auto 0 1rem;
  font-weight: 950;
}
.gtg-home-new-game__meta .amount,
.gtg-home-new-game__meta span {
  display: inline-flex;
  align-items: center;
  padding: .34rem .55rem;
  background: rgba(255,250,243,.84);
  border: 2px solid var(--gtg-ink);
  border-radius: 999px;
  color: var(--gtg-ink);
  line-height: 1.1;
}
.gtg-home-new-game__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: .67rem .95rem;
  background: var(--gtg-ink);
  border: 2px solid var(--gtg-ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.28);
  color: var(--gtg-paper) !important;
  font-weight: 950;
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease;
}
.gtg-home-new-game__button:hover {
  transform: translate(1px,1px);
  box-shadow: 1px 1px 0 rgba(0,0,0,.35);
}
.gtg-home-new-game__image {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 240px;
  padding: .8rem;
  background: rgba(255,250,243,.82);
  border: 2px solid var(--gtg-ink);
  border-radius: calc(var(--gtg-radius) - 6px);
  box-shadow: 4px 4px 0 rgba(32,36,42,.45);
  color: var(--gtg-ink);
  font-family: Bungee, Impact, sans-serif;
  text-decoration: none;
  transform: rotate(2deg);
}
.gtg-home-new-game--library .gtg-home-new-game__image { transform: rotate(-2deg); }
.gtg-home-new-game__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 265px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(32,36,42,.18));
}

.gtg-section--early-faq { padding-top: 0; }
.gtg-section-heading { margin: 0 0 2rem; }
.gtg-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
}
.gtg-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
}
.gtg-faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gtg-faq,
.gtg-hours {
  padding: 1.1rem 1.15rem;
  border: var(--gtg-border);
  border-radius: var(--gtg-radius-sm);
  box-shadow: var(--gtg-shadow-sm);
  transform: translate(-2px, -2px);
}
.gtg-faq { background: var(--gtg-paper); }
.gtg-faq summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.gtg-faq summary::-webkit-details-marker { display: none; }
.gtg-faq summary::after {
  content: "+";
  float: right;
  font-family: Bungee, Impact, sans-serif;
  color: var(--gtg-orange-dark);
}
.gtg-faq[open] summary::after { content: "−"; }
.gtg-faq p {
  margin: .8rem 0 0;
  color: #515965;
}
.gtg-hours { background: var(--gtg-yellow); }
.gtg-hours h3 {
  margin: 0 0 .8rem;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}
.gtg-hours__rows {
  display: grid;
  gap: .38rem;
  margin: 0;
}
.gtg-hours__row {
  display: flex;
  justify-content: space-between;
  gap: .85rem;
  font-size: .94rem;
  font-weight: 700;
}
.gtg-hours__row dt,
.gtg-hours__row dd { margin: 0; }
.gtg-hours__row dd { text-align: right; }

.gtg-home-events {
  background: var(--gtg-paper);
  border-top: var(--gtg-border);
  border-bottom: var(--gtg-border);
}
.gtg-home-events__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.gtg-home-events__heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}
.gtg-home-events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.gtg-home-event-card,
.gtg-home-events__empty {
  padding: 1.25rem;
  background: var(--gtg-cream);
  border: var(--gtg-border);
  border-radius: var(--gtg-radius);
  box-shadow: var(--gtg-shadow-sm);
  transform: translate(-2px, -2px);
}
.gtg-home-event-card {
  display: flex;
  flex-direction: column;
}
.gtg-home-event-card__date {
  margin: 0 0 .65rem;
  color: var(--gtg-orange-dark);
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
}
.gtg-home-event-card h3 {
  margin: 0 0 .75rem;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}
.gtg-home-event-card h3 a { text-decoration: none; }
.gtg-home-event-card__meta {
  flex: 1;
  margin: 0 0 1rem;
  color: #65564b;
  font-size: .92rem;
  font-weight: 700;
}

.gtg-split {
  background: var(--gtg-paper);
  border-top: var(--gtg-border);
  border-bottom: var(--gtg-border);
}
.gtg-split__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.3rem, 3vw, 2.2rem);
}
.gtg-frame {
  min-height: 300px;
  padding: clamp(1.6rem, 4vw, 2.3rem);
  border: var(--gtg-border);
  border-radius: var(--gtg-radius);
  box-shadow: var(--gtg-shadow-sm);
  transform: translate(-2px, -2px);
}
.gtg-frame h2 {
  max-width: 470px;
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}
.gtg-frame p:not(.gtg-eyebrow) { max-width: 480px; }
.gtg-frame--menu { background: var(--gtg-paper); }
.gtg-frame--membership { background: var(--gtg-yellow); }

.gtg-book-banner { padding: 0 0 clamp(3.5rem, 6vw, 5.5rem); }
.gtg-book-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  background: var(--gtg-orange);
  border: var(--gtg-border);
  border-radius: var(--gtg-radius);
  box-shadow: var(--gtg-shadow);
  transform: translate(-2px, -2px);
}
.gtg-book-banner .gtg-eyebrow,
.gtg-book-banner h2 { color: var(--gtg-paper); }
.gtg-book-banner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 2.55rem);
}

@media (prefers-reduced-motion: reduce) {
  .gtg-hero--image-banner::before {
    transform: scale(1.04);
    will-change: auto;
  }
}

@media (max-width: 1180px) {
  .gtg-home-new-game { grid-template-columns: 1fr; }
  .gtg-home-new-game__image { min-height: 190px; }
}

@media (max-width: 980px) {
  .gtg-hero--image-banner {
    min-height: auto;
    padding: clamp(2.6rem, 8vw, 4.5rem) 0 clamp(4.25rem, 9vw, 6rem);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.75rem), 0 100%);
  }
  .gtg-hero--image-banner::before { background-position: 60% 42%; }
  .gtg-hero--image-banner::after {
    background:
      linear-gradient(90deg, rgba(37,43,50,.82), rgba(37,43,50,.46)),
      linear-gradient(180deg, rgba(37,43,50,.05), rgba(37,43,50,.46));
  }
  .gtg-hero__panel { max-width: 680px; }
  .gtg-hero__panel h1 { font-size: clamp(1.72rem, 7vw, 3.72rem); }
  .gtg-card-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .gtg-home-new-games__heading,
  .gtg-home-events__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .gtg-home-new-games__grid,
  .gtg-home-events__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .gtg-hero--image-banner { padding-top: 2.2rem; }
  .gtg-hero__panel { padding: 1rem 0; }
  .gtg-hero__title span { white-space: normal; }
  .gtg-card-grid--four,
  .gtg-split__grid,
  .gtg-faq-grid { grid-template-columns: 1fr; }
  .gtg-action-card { min-height: 215px; }
  .gtg-home-new-game { min-height: 0; }
  .gtg-book-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .gtg-hero__panel h1 { font-size: clamp(1.42rem, 9vw, 2.1rem); }
  .gtg-hero__buttons .gtg-button { width: 100%; }
}

/* Homepage CTA consistency: hero, feature cards, latest games. */
body.home .gtg-hero__buttons .gtg-button,
body.home .gtg-frame.gtg-frame--menu .gtg-text-link,
body.home .gtg-frame.gtg-frame--membership .gtg-text-link,
body.home .gtg-home-latest-games__button {
  min-height: 46px;
  padding: .68rem 1rem;
  border-radius: var(--gtg-radius-sm);
  line-height: 1.1;
  font-size: .95rem;
  font-weight: 900;
}

body.home .gtg-frame.gtg-frame--menu .gtg-text-link,
body.home .gtg-frame.gtg-frame--membership .gtg-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
