/* winnova-lab.games — Golden City Casino promo */

:root {
  --ink: #05060a;
  --surface: #0f1220;
  --elev: #171a2e;
  --line: rgba(125, 211, 252, 0.18);
  --text: #e8eefc;
  --muted: #94a3c8;
  --cyan: #22d3ee;
  --magenta: #e879f9;
  --amber: #fcd34d;
  --glass: rgba(15, 18, 32, 0.72);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  background-image:
    linear-gradient(rgba(8, 10, 20, 0.92), rgba(5, 6, 10, 0.96)),
    radial-gradient(900px 500px at 12% -8%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(800px 480px at 92% 0%, rgba(232, 121, 249, 0.12), transparent 55%),
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.04) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.035) 0 1px, transparent 1px 64px);
  min-height: 100vh;
}

a {
  color: var(--cyan);
  text-decoration-color: rgba(34, 211, 238, 0.45);
}
a:hover {
  color: #67e8f9;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100000;
  padding: 10px 16px;
  background: var(--elev);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Age gate */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.08), transparent 45%),
    rgba(4, 5, 12, 0.94);
  backdrop-filter: blur(14px);
}

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

.age-panel {
  width: min(480px, 100%);
  padding: 32px 28px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--elev), #0f111f);
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.age-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.age-panel > p:first-of-type {
  margin: 0 0 22px;
  color: var(--muted);
}

.age-slider-wrap label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
}

.age-slider-track {
  position: relative;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  overflow: hidden;
}

.age-slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.55), rgba(232, 121, 249, 0.5));
}

.age-knob {
  position: absolute;
  left: 4px;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ink);
  background: linear-gradient(145deg, #fff 0%, #dbeafe 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
  transform: translateY(-50%);
  pointer-events: none;
}

.age-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 52px;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.age-submit {
  margin-top: 22px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: #0f172a;
  background: linear-gradient(135deg, #94a3b8, #cbd5f5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.age-submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(0.4);
}

.age-submit.ready {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #0a0a12;
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.35);
}

.age-submit.ready:hover {
  transform: translateY(-1px);
}

.age-footnote {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-main a {
  color: var(--muted);
  text-decoration: none;
}
.nav-main a:hover {
  color: var(--cyan);
}

/* Typography */

.hero-slab {
  padding: clamp(28px, 5vw, 56px) 0 clamp(36px, 6vw, 72px);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.hero-slab h1 {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-kicker {
  margin: 0 0 20px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--magenta);
  font-family: var(--font-head);
  font-weight: 600;
}

.store-desc {
  margin: 0 0 26px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--cyan);
  background: rgba(15, 18, 32, 0.65);
  border: 1px solid var(--line);
  border-left-width: 4px;
  font-size: 1.03rem;
  color: var(--text);
}

.store-desc p {
  margin: 0 0 12px;
}
.store-desc p:last-child {
  margin-bottom: 0;
}

.subhead {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: #f1f5ff;
}

.hero-aside-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(23, 26, 46, 0.95), rgba(12, 14, 26, 0.9));
}

.media-badge .slot {
  flex: 0 0 72px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.media-badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.media-badge p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

/* Sections */

.sheet {
  padding: clamp(40px, 6vw, 76px) 0;
}

.sheet-alt {
  background: rgba(15, 18, 36, 0.35);
  border-block: 1px solid rgba(125, 211, 252, 0.08);
}

.section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
}

.chip-thumb {
  display: grid;
  place-items: center;
  width: 68px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(8, 10, 20, 0.6);
  padding: 6px;
}
.chip-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lead-muted {
  margin: 0 0 22px;
  max-width: 72ch;
  color: var(--muted);
}

/* CTA */

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 8px;
}

.btn-play {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(34, 211, 238, 0.18);
}
.btn-play img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.ghost-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px dashed rgba(252, 211, 77, 0.45);
}
.ghost-link:hover {
  color: #fde68a;
}

/* Video */

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1335 / 751;
  height: auto;
  border: 0;
}

/* Third-party game embed (full-width iframe under site chrome) */

.game-embed-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.game-embed-panel iframe {
  display: block;
  width: 100%;
  height: clamp(420px, calc(100vh - 220px), 920px);
  border: 0;
}

/* Screenshot tiles (horizontal 16:9 frame, contain) */

.shots-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  justify-items: center;
  align-items: stretch;
}

.shot-tile {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(232, 121, 249, 0.08), transparent 55%),
    rgba(6, 8, 16, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.shot-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Cards / legal pages */

.prose {
  max-width: 78ch;
}
.prose h2 {
  font-family: var(--font-head);
  margin-top: 2rem;
  font-size: 1.2rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose strong {
  color: var(--text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tile {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 14, 28, 0.75);
}
.tile h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 1.08rem;
}
.tile p {
  margin: 0;
  color: var(--muted);
}
.tile .logo-box {
  width: 64px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px;
}
.tile .logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 12, 0.85);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--cyan);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  max-width: 52ch;
}

.page-hero {
  padding: 36px 0 8px;
}
.page-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.layout-column {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .nav-main {
    width: 100%;
    justify-content: flex-start;
  }
}
