/* luxamo-studio.games — Jackpot Strike promo */
:root {
  --bg-deep: #0d1117;
  --bg-panel: #161b22;
  --border: rgba(62, 201, 168, 0.28);
  --text: #e6edf3;
  --muted: #8b949e;
  --accent: #3ec9a8;
  --accent-dim: #2a9d7f;
  --gold: #d4af37;
  --radius: 14px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(62, 201, 168, 0.12), transparent),
    radial-gradient(ellipse 80% 60% at 90% 100%, rgba(212, 175, 55, 0.08), transparent);
  min-height: 100vh;
}

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

img.contain-media {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.media-frame {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Age gate overlay */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(13, 17, 23, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-card {
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.age-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

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

.age-slider-wrap {
  margin: 1.5rem 0;
}

.age-slider-wrap label {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.age-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  height: 8px;
}

.age-enter {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  background: var(--muted);
  color: var(--bg-deep);
  cursor: not-allowed;
  transition: background 0.2s, color 0.2s;
}

.age-enter.ready {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  cursor: pointer;
}

.age-thumb {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-deep);
}

.age-thumb img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.skip-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Layout */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(22, 27, 34, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  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.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-deep);
}

.brand-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

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

.nav-main a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-main a:hover {
  color: var(--accent);
  text-decoration: none;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 72ch;
  margin-bottom: 2rem;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  color: var(--gold);
}

.lead-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.lead-block p {
  margin: 0 0 1rem;
}

.lead-block p:last-child {
  margin-bottom: 0;
}

.decor-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.decor-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

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

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.shot-card {
  aspect-ratio: 9 / 16;
  max-height: 420px;
  margin: 0 auto;
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem 0.6rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(62, 201, 168, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(62, 201, 168, 0.35);
  text-decoration: none !important;
}

.btn-play img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
}

/* Google Play badge (horizontal, contain) */
.btn-play img.play-badge,
a.store-google img {
  width: auto;
  height: 52px;
  max-width: min(220px, 100%);
  border-radius: 8px;
  background: transparent;
  padding: 0;
}

.btn-play.btn-play--badge-only {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border-color: var(--border);
  box-shadow: none;
}

.btn-play.btn-play--badge-only:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

a.store-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  line-height: 0;
}

a.store-google:hover {
  text-decoration: none !important;
  opacity: 0.92;
}

a.store-google:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.page-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.page-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 0;
}

.page-block ul {
  padding-left: 1.25rem;
  color: var(--muted);
}

.page-block li {
  margin-bottom: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-panel);
  padding: 2rem 1.25rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

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

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

.layout-column main {
  flex: 1;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.6rem;
  }
  body {
    font-size: 16px;
  }
}
