:root {
  --ink: #121426;
  --muted: #5d6478;
  --paper: #fffdf8;
  --line: rgba(18, 20, 38, 0.12);
  --teal: #00a99d;
  --coral: #ff4f6d;
  --gold: #ffc247;
  --lime: #b8ef3f;
  --navy: #151943;
  --violet: #6357ff;
  --shadow: 0 22px 70px rgba(21, 25, 67, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(18, 20, 38, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--lime), var(--gold) 55%, var(--coral));
  font-size: 0.82rem;
  letter-spacing: 0;
}

.main-nav a,
.site-footer a {
  color: inherit;
  font-size: 0.94rem;
  text-decoration: none;
  opacity: 0.88;
}

.main-nav a:hover,
.site-footer a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 650px;
  color: #fff;
  overflow: hidden;
}

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

.hero-media {
  background: url("/assets/img/hero-matchbeacon.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 11, 31, 0.92) 0%, rgba(9, 11, 31, 0.74) 34%, rgba(9, 11, 31, 0.22) 72%),
    linear-gradient(180deg, rgba(9, 11, 31, 0.15), rgba(9, 11, 31, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  padding: clamp(86px, 15vw, 150px) 0 120px;
  margin-left: clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--lime), var(--gold) 62%, #ff9f43);
}

.btn.secondary,
.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn.play {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--violet));
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.intro-band {
  background: #f1fbf8;
  border-bottom: 1px solid var(--line);
}

.split,
.feature-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.slot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(21, 25, 67, 0.08);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.slot-info {
  padding: 18px;
}

.slot-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.slot-info p {
  min-height: 86px;
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-band {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #222764 58%, #083f4a);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.notice {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: #fff5dc;
  border: 1px solid rgba(255, 194, 71, 0.55);
}

.contact-section {
  border-top: 1px solid var(--line);
}

address {
  color: var(--muted);
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(21, 25, 67, 0.08);
}

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

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

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #101224;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.age-gate,
.game-modal,
.access-denied {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(9, 11, 31, 0.82);
  backdrop-filter: blur(16px);
}

.age-gate[hidden],
.game-modal[hidden],
.access-denied[hidden] {
  display: none;
}

.age-card {
  width: min(480px, 100%);
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #171b4d, #12272e);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.age-kicker {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.access-denied {
  color: #fff;
  text-align: center;
}

.access-denied div {
  display: grid;
  gap: 8px;
  max-width: 420px;
  padding: 28px;
  border-radius: 8px;
  background: #171b4d;
}

.modal-panel {
  position: relative;
  width: min(1180px, 96vw);
  height: min(760px, 86vh);
  overflow: hidden;
  border-radius: 8px;
  background: #050714;
  box-shadow: var(--shadow);
}

.modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 1.4rem;
  cursor: pointer;
}

.page-main {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.page-main h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.page-main section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 92px;
  }

  .split,
  .feature-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    position: relative;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 580px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(9, 11, 31, 0.82), rgba(9, 11, 31, 0.66));
  }

  .slot-grid {
    grid-template-columns: 1fr;
  }

  .slot-info p {
    min-height: 0;
  }

  .btn {
    width: 100%;
  }
}
