@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #08111b;
  --bg-soft: #0d1b29;
  --panel: rgba(10, 23, 37, 0.82);
  --panel-strong: #102131;
  --line: rgba(151, 188, 212, 0.18);
  --line-strong: rgba(255, 195, 108, 0.34);
  --text: #edf5fb;
  --muted: #94a8bb;
  --accent: #ffbf62;
  --accent-soft: #6cd2cf;
  --success: #30b15d;
  --danger: #c74f4f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(108, 210, 207, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 191, 98, 0.12), transparent 24%),
    linear-gradient(180deg, #06111a 0%, #08111b 40%, #0b1724 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.page {
  padding: 24px 0 72px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 27, 0.62);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 191, 98, 0.72);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  border-left: 1px solid rgba(108, 210, 207, 0.66);
}

.brand-mark::after {
  content: '';
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 8px;
  border-top: 1px solid rgba(255, 191, 98, 0.48);
}

.slot-dots {
  width: 7px;
  height: 7px;
  background: var(--text);
  box-shadow: 11px 8px 0 var(--accent-soft), 0 16px 0 var(--accent);
  transform: translate(-6px, -8px);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.93rem;
}

.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--text);
}

.button-link,
.button,
button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.button-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(120deg, var(--accent), #ffe0a5);
  color: #1d1307;
  box-shadow: 0 16px 30px rgba(255, 191, 98, 0.25);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.button-success {
  background: var(--success);
  color: #fff;
}

.button-danger {
  background: var(--danger);
  color: #fff;
}

.hero {
  margin-top: 28px;
  background:
    linear-gradient(95deg, rgba(6, 16, 24, 0.92) 0%, rgba(6, 16, 24, 0.74) 42%, rgba(6, 16, 24, 0.18) 100%),
    url('../img/hero-auckland-social-slots.png') center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 34px;
  min-height: 620px;
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}

.hero-copy {
  max-width: 610px;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.kicker::before,
.eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(108, 210, 207, 0.1), rgba(108, 210, 207, 0.9));
}

.hero h1,
.section h2,
.legal-shell h1,
.age-card h1,
.denied-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.94;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
}

.hero p,
.lead,
.section-intro,
.legal-shell p,
.legal-shell li {
  color: #d1deea;
  line-height: 1.78;
  font-size: 1rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.compliance-rail {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.compliance-rail span {
  display: inline-block;
  padding-right: 36px;
  color: rgba(237, 245, 251, 0.74);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.section {
  padding: 74px 0 0;
}

.section h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.editorial-grid,
.split-grid,
.contact-layout,
.team-grid,
.games-grid {
  display: grid;
  gap: 22px;
}

.editorial-grid {
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
}

.copy-block {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.ruled-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ruled-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ruled-list strong,
.stat-line strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.04rem;
}

.stat-stack {
  display: grid;
  gap: 18px;
}

.stat-line {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.highlight-panel,
.game-frame,
.team-card,
.contact-panel,
.support-panel {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.highlight-panel {
  padding: 28px;
}

.highlight-panel p:last-child,
.legal-shell p:last-child {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding-left: 22px;
  border-left: 1px solid var(--line-strong);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.games-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.game-frame {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
}

.game-frame .frame-head {
  padding: 0;
}

.game-frame .frame-head h3,
.team-card h3,
.support-panel h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.game-frame p,
.team-card p,
.support-panel p,
.contact-panel p,
.small-print {
  color: var(--muted);
  line-height: 1.7;
}

.embed-shell {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #02060b;
  border: 1px solid var(--line);
}

.embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.team-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.team-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.team-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.team-card .team-copy {
  padding: 0;
}

.team-role {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-panel,
.support-panel {
  padding: 28px;
}

.contact-lines {
  display: grid;
  gap: 14px;
}

.contact-lines strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.support-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label span {
  display: inline-block;
  margin-bottom: 8px;
  color: #d8e6f2;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(151, 188, 212, 0.24);
  border-radius: 0;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(209, 222, 234, 0.48);
}

textarea {
  min-height: 168px;
  resize: vertical;
}

.form-note {
  border-radius: 0;
  border: 1px dashed rgba(255, 191, 98, 0.35);
  padding: 14px 16px;
  color: #f2d8a7;
  background: rgba(255, 191, 98, 0.08);
  font-size: 0.92rem;
}

.consent-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.site-footer {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-links a:hover {
  color: var(--text);
}

.legal-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-shell h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.legal-shell h2 {
  margin: 34px 0 12px;
  font-size: 1.34rem;
  color: var(--text);
}

.legal-shell ul {
  padding-left: 20px;
}

.legal-shell .legal-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 34px;
  background: rgba(7, 18, 29, 0.88);
  box-shadow: var(--shadow);
}

.legal-reference-list {
  display: grid;
  gap: 12px;
}

.legal-reference-list a {
  color: #c7ebff;
  word-break: break-word;
}

.legal-reference-list a:hover {
  color: var(--text);
}

.age-page,
.denied-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.age-card,
.denied-wrap {
  width: min(720px, 100%);
  background: rgba(7, 18, 29, 0.92);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 36px 34px;
  text-align: center;
}

.age-card h1,
.denied-wrap h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.age-card p,
.denied-wrap p {
  color: #d1deea;
  line-height: 1.74;
}

.age-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.age-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.94rem;
  color: var(--muted);
}

.age-links a:hover {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  margin: 0 auto;
  width: auto;
  max-width: 960px;
  background: rgba(8, 19, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #d8e6f2;
  line-height: 1.68;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 12px 18px;
  border-radius: 0;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.cookie-actions .accept {
  background: linear-gradient(120deg, var(--accent), #ffe0a5);
  color: #1d1307;
}

.note-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 0;
  border: 1px solid rgba(108, 210, 207, 0.3);
  color: #c7f3f1;
  background: rgba(108, 210, 207, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-flag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-soft);
}

.mono-note {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .editorial-grid,
  .contact-layout,
  .support-grid,
  .team-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 540px;
    padding: 26px;
  }
}

@media (max-width: 740px) {
  .page {
    padding-top: 16px;
  }

  .site-header {
    position: static;
    border-radius: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav,
  .form-row,
  .cookie-actions {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7.6vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero {
    overflow: hidden;
  }

  .game-frame,
  .team-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .legal-shell .legal-panel,
  .age-card,
  .denied-wrap,
  .highlight-panel,
  .contact-panel,
  .support-panel {
    padding: 24px;
  }
}
