/* JV Interactive — site MVP. Dark, dense, no decoration theater. */

:root {
  --bg: #0c0e12;
  --panel: #14181f;
  --line: #2a3140;
  --text: #e8eaef;
  --muted: #9aa3b2;
  --gold: #c9a227;
  --gold-hi: #e0bc3a;
  --max: 52rem;
  --font: system-ui, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.5 var(--font);
  color: var(--text);
  background: var(--bg);
}

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

a:hover {
  text-decoration: underline;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 14, 18, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

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

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  font-size: 0.9rem;
}

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

nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  background: var(--gold);
  color: #111 !important;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none !important;
  border: 1px solid transparent;
}

.btn:hover {
  background: var(--gold-hi);
}

.btn-sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--muted);
  background: var(--panel);
}

main {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.hero {
  padding: 1.5rem 0 0.5rem;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.hero-copy {
  padding: 1.25rem 0 0.5rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}

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

.lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 40rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.block {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 3.5rem; /* clear sticky header when nav jumps to #game etc. */
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.block p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 40rem;
}

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

.features {
  margin: 0 0 1rem;
  padding: 0 0 0 1.1rem;
  color: var(--text);
  max-width: 40rem;
}

.features li {
  margin-bottom: 0.35rem;
}

.close-title {
  margin: 1rem 0 0.5rem !important;
  color: var(--text) !important;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.meta {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 28rem;
}

.contact li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact span {
  color: var(--muted);
}

.note {
  font-size: 0.85rem !important;
  margin-top: 0.75rem !important;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.foot p {
  margin: 0.25rem 0;
}

.legal-entity {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.95;
}

.fine {
  max-width: 36rem;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.85;
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }

  nav a:not(.btn) {
    display: none;
  }
}
