:root {
  --night: #0b0812;
  --plum: #16101f;
  --panel: #1d1529;
  --mist: #d7cce6;
  --haze: #9b86b8;
  --gold: #d4b483;
  --gold-deep: #b48a4e;
  --lilac: #c4a6f0;
  --line: rgba(212, 180, 131, 0.22);
  --text: #f4eefc;
  --muted: #b7abc6;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 166, 240, 0.16), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(212, 180, 131, 0.12), transparent 50%),
    var(--night);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--lilac);
}

h1,
h2,
h3,
.brand-name {
  font-family: "Cormorant Garamond", serif;
}

.topbar {
  background: linear-gradient(90deg, #120c18, #241833 50%, #120c18);
  border-bottom: 1px solid var(--line);
  color: var(--mist);
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.topbar-copy {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.topbar-copy i {
  color: var(--gold);
}

.topbar-link {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.site-header {
  background: rgba(11, 8, 18, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.navbar {
  padding: 0.85rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.navbar-brand:hover {
  color: var(--text);
}

.navbar-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: var(--mist);
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler.is-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.is-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  background: #140e1c;
  color: var(--text);
  width: min(86vw, 360px);
}

.mobile-nav .offcanvas-header {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}

.btn-close-haze {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--gold);
}

.mobile-menu {
  list-style: none;
  padding: 0.6rem 0;
  margin: 0;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--mist);
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-weight: 500;
}

.mobile-menu a i {
  width: 1.2rem;
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 4.4rem;
}

.hero-glow {
  position: absolute;
  inset: auto auto 10% 40%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(155, 134, 184, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 1.15rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}

.btn-haze,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-haze {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1208;
}

.btn-haze:hover {
  color: #1a1208;
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--gold);
}

.hero-metrics {
  display: flex;
  gap: 1.6rem;
}

.metric-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 0.6rem;
}

.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: perspective(1200px) rotateY(-6deg);
  transition: transform 0.4s ease;
}

.hero-frame img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(13, 9, 20, 0.78);
  border: 1px solid var(--line);
  color: var(--mist);
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.hero-float i {
  color: var(--gold);
}

.card-one {
  left: 1rem;
  bottom: 1.4rem;
}

.card-two {
  right: 1rem;
  top: 1.4rem;
}

.strip {
  padding: 0 0 5rem;
}

.strip-card {
  background: linear-gradient(180deg, rgba(29, 21, 41, 0.9), rgba(16, 11, 24, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
}

.strip-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212, 180, 131, 0.12);
  color: var(--gold);
  margin-bottom: 1rem;
}

.strip-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.strip-card p {
  color: var(--muted);
  margin: 0;
}

.games {
  padding: 0 0 5.4rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.4rem 0 0;
}

.section-head p {
  max-width: 28rem;
  color: var(--muted);
  margin: 0;
}

.game-card {
  background: linear-gradient(180deg, rgba(29, 21, 41, 0.95), rgba(12, 8, 18, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.game-media {
  position: relative;
}

.game-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.game-type {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 8, 18, 0.78);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.game-body h3 {
  margin: 0;
  font-size: 1.7rem;
}

.game-body h3 a {
  color: var(--text);
}

.game-body h3 a:hover {
  color: var(--gold);
}

.game-body p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.game-body .btn-haze {
  align-self: flex-start;
}

.evenings,
.about,
.disclaimer {
  padding: 0 0 5.4rem;
}

.step-card,
.about-copy,
.disclaimer-panel {
  background: linear-gradient(180deg, rgba(29, 21, 41, 0.95), rgba(12, 8, 18, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-card {
  padding: 1.7rem 1.5rem 1.6rem;
  height: 100%;
}

.step-num {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
}

.step-card h3,
.disclaimer-panel h2,
.about h2 {
  margin-bottom: 0.85rem;
}

.step-card p,
.about-copy p,
.disclaimer-panel p,
.about-lead {
  color: var(--muted);
}

.about-lead {
  font-size: 1.08rem;
  margin-bottom: 1.4rem;
}

.about-copy {
  padding: 1.8rem 1.7rem 0.4rem;
}

.disclaimer-panel {
  padding: 2.1rem 1.9rem 1.6rem;
}

.disclaimer-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.disclaimer-note i {
  color: var(--gold);
  margin-top: 0.3rem;
}

.disclaimer-note p {
  margin: 0;
}

.section-head p {
  max-width: 34rem;
}

.footer-ga {
  display: inline-block;
  margin-top: 1rem;
}

.footer-ga img {
  display: block;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  padding: 0.4rem;
}

.footer-disclaimers {
  margin-top: 2.2rem;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--line);
}

.footer-disclaimers p {
  margin-bottom: 0.75rem;
}

.footer-disclaimers strong {
  color: var(--gold);
  font-weight: 600;
}

.site-footer {
  background: #0a0710;
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 1.4rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-frame {
    transform: none;
  }

  .hero-metrics {
    gap: 1rem;
  }
}

.page-wrap {
  padding: 3.4rem 0 5rem;
}

.page-wrap h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 1rem;
}

.page-wrap .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46rem;
  margin-bottom: 1.6rem;
}

.prose {
  color: var(--muted);
}

.prose h2 {
  color: var(--text);
  font-size: 1.85rem;
  margin: 1.8rem 0 0.7rem;
}

.prose p,
.prose li {
  margin-bottom: 1rem;
}

.prose ul {
  padding-left: 1.1rem;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  font-size: 1.15rem;
}

body.is-locked {
  overflow: hidden;
  height: 100%;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(11, 8, 18, 0.38);
  backdrop-filter: blur(3px);
}

.gate.is-open {
  display: flex;
}

.gate-card {
  width: min(440px, 100%);
  background: linear-gradient(180deg, rgba(29, 21, 41, 0.94), rgba(12, 8, 18, 0.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gate-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.55rem;
}

.gate-card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(18, 12, 28, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cookie-bar.is-open {
  display: block;
}

.cookie-bar p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.game-stage {
  margin: 0 0 2.4rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(196, 166, 240, 0.16), transparent 46%), #100a18;
}

.game-disclaimer {
  margin-top: 0.4rem;
}

@media (max-width: 575.98px) {
  .hero-frame img {
    min-height: 280px;
  }

  .hero-float {
    font-size: 0.75rem;
    padding: 0.5rem 0.7rem;
  }

  .gate-actions,
  .cookie-bar .gate-actions {
    flex-direction: column;
  }

  .gate-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
