:root {
  --bg: #0b0e17;
  --bg-soft: #0f1220;
  --card: #13172a;
  --text: #e7ebff;
  --muted: #a9b1d6;
  --brand: #0022ff;
  --brand-2: #e0cd27;
  --ring: 0 0 0 0.15rem rgba(208, 211, 0, 0.35);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial;
  color: var(--text);
  background: #0b0e17; /* solid fallback */
  background-color: #0b0e17;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(
    180deg,
    rgba(15, 18, 32, 0.85),
    rgba(15, 18, 32, 0.55)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav a.btn {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.nav a.btn:hover {
  box-shadow: var(--ring);
}
.nav ul {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Hero */
.hero {
  position: relative;
  background: radial-gradient(
      1200px 600px at 10% -10%,
      #1a1f38 0%,
      transparent 55%
    ),
    radial-gradient(800px 500px at 110% 10%, #1a1030 0%, transparent 50%),
    var(--bg);
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: -10% -20% auto;
  height: 140%;
  background: conic-gradient(
    from 120deg at 30% 40%,
    rgba(167, 123, 255, 0.7),
    rgba(39, 224, 161, 0.6),
    rgba(167, 123, 255, 0.7)
  );
  filter: blur(120px) saturate(130%);
  opacity: 0.18;
  pointer-events: none;
  animation: rotate 28s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.4rem, 2vw + 0.5rem, 3rem);
  margin: 10px 0 10px;
  line-height: 1.05;
}
.eyebrow {
  color: var(--brand-2);
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 10px 0 22px;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  background: linear-gradient(to right, #dfbd62 25%, #e1c064 50%);
  color: #0a0f1c;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.secondary {
  background: #0000;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}
.glass {
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.showcase {
  aspect-ratio: 16/11;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase footer {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
}
/* Highlights */
.margin-top {
  margin-top: 70px;
}
.section {
  padding: 0;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.feature svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}
.feature p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
/* Carousel */
.carousel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}
.track {
  display: flex;
  gap: 10px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.slide {
  min-width: clamp(240px, 40vw, 360px);
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}
.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff21;
}
.dot.active {
  background: #fff;
}
/* Hours */
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.panel {
  padding: 18px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.status {
  font-weight: 800;
}
.status.open {
  color: var(--brand-2);
}
.status.closed {
  color: #ff8da1;
}
/* Map */
.map-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.map {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}
.map-cta a {
  display: inline-block;
  margin-top: 8px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* Terms and Condistions */
/* Section wrapper */
.terms {
  padding: 60px 0;
}
.terms .container.glass {
  padding: 28px 30px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
}

/* Title + copy */
.terms h2 {
  margin: 0 0 14px;
  letter-spacing: 0.4px;
}
#terms-preview {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 70ch; /* nicer measure */
}

/* Fade hint when collapsed */
.terms.collapsed #terms-preview {
  max-height: 11.5em; /* ~ first paragraph height */
  overflow: hidden;
  position: relative;
}
.terms.collapsed #terms-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(15, 18, 32, 0),
    rgba(15, 18, 32, 0.9)
  );
  pointer-events: none;
}

/* Button row */
#toggle-terms {
  margin-top: 18px;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
}
#toggle-terms:hover {
  box-shadow: var(--ring);
}

/* Terms tabs */
.terms .terms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.terms .tabs {
  display: flex;
  gap: 0.5rem;
}
.terms .tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: inherit;
  padding: 0.5rem 0.9rem;
  border-radius: 0.6rem;
  cursor: pointer;
  font-weight: 600;
}
.terms .tab.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Table responsiveness */
.terms .terms-content .table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.terms .terms-content table {
  width: 100%;
  border-collapse: collapse;
}
.terms .terms-content th,
.terms .terms-content td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.terms .terms-content th {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .terms .terms-content th,
  .terms .terms-content td {
    display: block;
    width: 100%;
  }
  .terms .terms-content th {
    padding-bottom: 0.25rem;
    border-bottom: none;
    opacity: 0.85;
  }
  .terms .terms-content td {
    padding-top: 0.1rem;
  }
}

/* Start of Desktop Scroller of Gallery */

@media (hover: hover) and (pointer: fine) {
  .carousel .track {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #666 #222;
    padding-bottom: 10px; /* room for the bar */
  }
}
@media (hover: hover) and (pointer: fine) {
  .carousel .track::-webkit-scrollbar {
    height: 8px;
  }
  .carousel .track::-webkit-scrollbar-track {
    background: #222;
    border-radius: 999px;
  }
  .carousel .track::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 999px;
  }
  .carousel .track:hover::-webkit-scrollbar-thumb {
    background: #888;
  }
}

/* End of Desktop Scroller of Gallery */

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid,
  .features,
  .hours,
  .map-wrap,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* nav: hide inline list on small screens (until you add a menu) */
  .nav ul {
    display: none;
  }

  /* carousel tweaks */
  .slide {
    min-width: min(85vw, 360px);
  }
  .slide img {
    aspect-ratio: 16/9;
    height: auto;
  }
}

@media (max-width: 600px) {
  .nav a.btn {
    padding: 0.01rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    font-size: 0.7rem;
  }
  .logo img {
    height: 25px;
  }
  .container {
    padding: 0 14px;
  }
  .hero {
    padding: 30px 0 40px;
  }
  .lead {
    font-size: 1rem;
  }
  .showcase {
    aspect-ratio: 15/11;
  }
  /* reset default figure margins */
  figure {
    margin: 0;
  }

  /* or just the showcase one */
  .showcase {
    margin: 0;
    width: 100%;
  }

  /* optional: tidy list spacing inside */
  .showcase ul {
    margin: 1em;
    padding-left: 1rem;
  }
}

/* === Play Online Banner (Minimal & Classy, with background canvas) === */

.play-banner {
  position: relative; /* so canvas + overlay can be positioned */
  isolation: isolate; /* ensures stacking order is clean */
  padding: clamp(12px, 4vw, 28px) 12px;
  text-align: center;
  overflow: hidden; /* hides canvas overflow */
}

/* Canvas fills the banner */
#playCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* Blue overlay above canvas, below content */
.play-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      800px 400px at 50% 0%,
      rgba(40, 80, 180, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(16, 24, 48, 0.45), rgba(10, 12, 20, 0.65));
}

/* Content sits on top */
.play-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

/* Text */
.play-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  opacity: 0.65;
  margin: 0 auto 4px;
}
.play-banner h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  line-height: 1.2;
}
.play-lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* CTA row */
.play-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

/* Buttons (compact pills) */
.online-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-2, #facc15);
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1;
  transition: background 0.15s ease, transform 0.1s ease;
}
.online-btn:hover {
  background: color-mix(in srgb, currentColor 12%, transparent);
}
.online-btn:active {
  transform: translateY(1px);
}
.online-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Footnote */
.play-footnote {
  font-size: 0.7rem;
  opacity: 0.65;
  margin-top: 4px;
}

@media (max-width: 400px) {
  .online-btn {
    font-size: 0.6rem;
  }
}

/* Footer */

:root {
  --gold: #e6d067;
  --blue-muted: #6aa1d6;
}

.site-footer {
  margin-top: 60px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 40px 0 28px;
  color: var(--muted);
}

/* logos strip */
.footer-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center; /* vertical centering */
  justify-items: center; /* horizontal centering ✅ */
  gap: 24px;
  margin: 10px 0 14px;
}

.footer-logos img {
  max-height: 46px;
  opacity: 0.8;
}
.footer-logos .brand {
  max-height: 60px;
  justify-self: center;
  opacity: 1;
}

/* headline */
.footer-title {
  margin: 20px 0 16px;
  text-align: center; /* centers inline content like img */
}

.footer-title img {
  max-width: 180px; /* or any fixed size you want */
  width: 100%; /* scales down responsively */
  height: auto;
  display: inline-block;
}

/* partners row */
.partners {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 10px auto;
  max-width: 600px;
}
.partners .provider {
  justify-self: center;
  max-height: 30px;
  opacity: 0.9;
}
.partners .store img {
  height: 42px;
}
.partners .affiliates {
  justify-self: center;
  font-size: 1.6rem;
  color: var(--text);
}

/* tagline */
.tagline {
  color: var(--gold);
  margin: 10px 0 16px;
  font-style: italic;
}

/* socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 10px 0 16px;
}
.socials .social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f6e8a8, #d2b756 70%);
  color: #0a0f1c;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.socials .social:hover {
  transform: translateY(-2px);
}

/* copyright */
.copyright {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.95;
}

/* responsive */
@media (max-width: 900px) {
  .footer-logos {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logos .brand {
    grid-column: 1 / -1;
  }
}

/* Footer Ends */
