/* ZentivoGamesStudio.games — Jackpot Strike promo shell */
:root {
  --bg-deep: #080a12;
  --bg-panel: #12162a;
  --bg-elevated: #1a2038;
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #e8eaf4;
  --muted: #9aa3c2;
  --accent: #00e5c8;
  --accent-dim: rgba(0, 229, 200, 0.15);
  --hot: #ff4d8d;
  --gold: #f0c14b;
  --radius-lg: 22px;
  --radius-md: 14px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 229, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(255, 77, 141, 0.08), transparent 50%),
    linear-gradient(180deg, #0a0d18 0%, var(--bg-deep) 40%);
}

body.age-locked {
  overflow: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* --- Age gate --- */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4, 6, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-overlay[hidden] {
  display: none !important;
}

.age-card {
  max-width: 420px;
  width: 100%;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-elevated), #141a32);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.age-card h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.age-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #00b89a);
  color: #041210;
  box-shadow: 0 8px 32px rgba(0, 229, 200, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(0, 229, 200, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--stroke);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Shell --- */
.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 10, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--bg-panel);
  border: 1px solid var(--stroke);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

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

.header-cta {
  flex-shrink: 0;
}

/* Play badge button */
.play-badge-link {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.play-badge-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 229, 200, 0.2);
}

.play-badge-link img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

main {
  flex: 1;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-tight {
  padding-top: 1.5rem;
}

.hero {
  padding: 2rem 1.25rem 3rem;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-tile {
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--stroke);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}

/* Intro block (required copy) */
.intro-block {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
}

.intro-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 32, 56, 0.9), rgba(18, 22, 42, 0.95));
  border: 1px solid var(--stroke);
  border-left: 4px solid var(--hot);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.intro-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
}

.intro-card p + p {
  margin-top: 1rem;
}

/* Video */
.video-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #000;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.video-caption strong {
  color: var(--gold);
  font-weight: 600;
}

/* Screenshots */
.shots-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shots-head h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0;
  letter-spacing: -0.03em;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .shot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shot-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--bg-panel);
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Feature strip with logos */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-box {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--stroke);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}

.feature-box .img-hold {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box .img-hold img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature-box h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.feature-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Content pages */
.page-hero {
  padding-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.page-hero .sub {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.prose h2:first-child {
  margin-top: 0;
}

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

.prose ul {
  padding-left: 1.25rem;
}

.prose strong {
  color: var(--text);
}

.cta-bar {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(0, 229, 200, 0.12), rgba(255, 77, 141, 0.08));
  border: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cta-bar p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.games-hero {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .games-hero {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.game-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--stroke);
}

.game-panel h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.game-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.game-meta li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.92rem;
}

.game-meta li:last-child {
  border-bottom: none;
}

.game-meta strong {
  color: var(--text);
}

.decor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.decor-tile {
  flex: 1 1 140px;
  min-height: 100px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.decor-tile img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--stroke);
  background: rgba(6, 8, 14, 0.95);
  padding: 2rem 1.25rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand .brand-logo {
  width: 52px;
  height: 52px;
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 28rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.disclaimer-mini {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.85;
  margin-top: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
