:root {
  --ink: #201534;
  --muted: #685f78;
  --paper: #fffaf6;
  --peach: #ff6d5a;
  --sun: #ffd45a;
  --teal: #13c8b5;
  --berry: #d72f84;
  --lime: #b8f35c;
  --line: rgba(32, 21, 52, .14);
  --shadow: 0 24px 70px rgba(32, 21, 52, .20);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px min(36px, 5vw);
  background: rgba(255, 250, 246, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .65);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--peach), var(--berry) 48%, var(--teal));
  box-shadow: 0 10px 24px rgba(215, 47, 132, .28);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 116px min(48px, 6vw) 72px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 10, 34, .20), rgba(18, 10, 34, .42) 44%, rgba(18, 10, 34, .90)),
    linear-gradient(0deg, rgba(32, 21, 52, .58), rgba(32, 21, 52, .08) 55%, rgba(32, 21, 52, .24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-left: auto;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--berry);
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .96;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  font-size: clamp(1rem, 2vw, 1.24rem);
  max-width: 620px;
}

.hero-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  border: 0;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn.primary {
  color: #21112d;
  background: linear-gradient(135deg, var(--sun), #fff06f 40%, var(--lime));
  box-shadow: 0 14px 28px rgba(255, 212, 90, .25);
}

.btn.light {
  color: white;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .38);
}

.btn.ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn.play {
  width: 100%;
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--peach));
}

.band {
  padding: 82px 0;
}

.intro {
  background: linear-gradient(135deg, #fff, #fff3e6 45%, #eafffb);
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.two-col p:last-child {
  font-size: 1.15rem;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 72px 0;
}

.features article,
.notice,
.contact-form,
.age-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(32, 21, 52, .08);
}

.features article {
  padding: 26px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--sun);
  font-weight: 1000;
  margin-bottom: 18px;
}

.demos {
  background:
    linear-gradient(135deg, rgba(19, 200, 181, .18), rgba(255, 109, 90, .16)),
    #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p:last-child {
  color: var(--muted);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 430px;
  background: #120a22;
  box-shadow: var(--shadow);
}

.game-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .3s ease;
}

.game-card:hover img {
  transform: scale(1.035);
}

.game-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px 16px 16px;
  color: white;
  background: linear-gradient(0deg, rgba(18, 10, 34, .96), rgba(18, 10, 34, .66) 58%, transparent);
}

.game-info p {
  margin-bottom: 6px;
  color: var(--lime);
  font-weight: 900;
  font-size: .85rem;
}

.game-info h3 {
  min-height: 52px;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.responsible {
  padding: 78px 0;
}

.notice {
  padding: clamp(24px, 5vw, 52px);
  border-left: 8px solid var(--peach);
}

.notice p {
  color: var(--muted);
}

.contact {
  background: linear-gradient(135deg, #201534, #4a183f 45%, #135c66);
  color: white;
}

.contact .eyebrow,
.contact a {
  color: var(--lime);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, .82);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.footer {
  padding: 24px 0;
  background: #160d24;
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(32, 21, 52, .92), rgba(215, 47, 132, .82)),
    url("/assets/images/hero-social-play-haven.jpg") center/cover;
}

.age-gate.hidden {
  display: none;
}

.age-card {
  width: min(520px, 100%);
  padding: clamp(24px, 6vw, 44px);
}

.age-card h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
  color: var(--ink);
}

.age-denied {
  display: none;
  margin: 22px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: #2b1025;
  color: white;
  font-weight: 900;
}

.age-card.denied .age-denied {
  display: block;
}

.age-card.denied .age-actions {
  display: none;
}

.game-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  padding: 18px;
  background: rgba(18, 10, 34, .86);
}

.game-modal.open {
  display: grid;
  place-items: center;
}

.modal-panel {
  width: min(1160px, 100%);
  height: min(760px, 92vh);
  background: #0d0717;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-top {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px 0 18px;
  color: white;
  background: #201534;
}

.modal-top h2 {
  margin: 0;
  font-size: 1rem;
}

.modal-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.social-demo {
  height: calc(100% - 54px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(18px, 4vw, 40px);
  color: white;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 212, 90, .24), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(19, 200, 181, .22), transparent 30%),
    linear-gradient(135deg, #160d24, #4a183f 52%, #135c66);
}

.demo-label,
.demo-note,
.demo-status {
  max-width: 720px;
  margin: 0;
  text-align: center;
}

.demo-label {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.demo-note {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.demo-status {
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
}

.reel-board {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .08), 0 20px 50px rgba(0, 0, 0, .22);
}

.reel-board span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #201534;
  background: linear-gradient(135deg, #fff, var(--sun) 52%, var(--lime));
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 1000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.social-demo .btn:disabled {
  cursor: wait;
  opacity: .75;
}

.simple-page {
  padding-top: 98px;
}

.legal {
  padding: 50px 0 80px;
}

.legal-card {
  max-width: 900px;
  padding: clamp(24px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    font-size: .92rem;
  }

  .hero {
    min-height: 820px;
    align-items: end;
    padding-top: 120px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 10, 34, .92), rgba(18, 10, 34, .42) 52%, rgba(18, 10, 34, .12)),
      linear-gradient(90deg, rgba(18, 10, 34, .12), rgba(18, 10, 34, .30));
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-direction: column;
    padding: 12px 16px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: .88rem;
  }

  .hero {
    min-height: 780px;
    padding: 176px 16px 42px;
  }

  .features,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-card,
  .game-card img {
    min-height: 390px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-panel {
    height: 86vh;
  }
}
