/* VelmoraInteractive.games — editorial casino promo shell */
:root {
  --bg-deep: #06090d;
  --bg-panel: #0e141c;
  --bg-elevated: #151e2a;
  --stroke: rgba(244, 199, 106, 0.22);
  --text: #e9f0f7;
  --muted: #9fb0c3;
  --teal: #2ee6c8;
  --teal-dim: rgba(46, 230, 200, 0.14);
  --gold: #f4c76a;
  --gold-dim: rgba(244, 199, 106, 0.12);
  --danger: #ff6b8a;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(46, 230, 200, 0.08), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(244, 199, 106, 0.06), transparent 50%),
    var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

/* --- Age gate --- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 30%, #1a2635 0%, #05070a 70%);
}
.age-gate[hidden] {
  display: none !important;
}
.age-gate__panel {
  max-width: 440px;
  width: 100%;
  background: linear-gradient(155deg, var(--bg-elevated), #0b1018);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px 26px;
  text-align: center;
}
.age-gate__badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--gold-dim);
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.age-gate__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.age-gate h1 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.age-gate p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.age-gate button {
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: 999px;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.age-gate__yes {
  background: linear-gradient(135deg, var(--teal), #1bb89c);
  color: #03120f;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(46, 230, 200, 0.25);
}
.age-gate__yes:hover {
  transform: translateY(-1px);
}
.age-gate__no {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.age-gate__no:hover {
  color: var(--text);
}

/* --- Shell --- */
.shell {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.shell.is-ready {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6, 9, 13, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.brand:hover {
  text-decoration: none;
  color: var(--gold);
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-dim);
  border: 1px solid var(--stroke);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--teal);
  text-decoration: none;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 8px 0 36px;
}
@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.hero__intro {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}
.hero__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.hero__copy-block + h1 {
  margin-top: 1.35rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 650;
}
.hero__lead {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 1.05rem;
}
.hero__copy-block {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-soft);
}
.hero__copy-block p {
  margin: 0 0 12px;
  color: #d5dee9;
}
.hero__copy-block p:last-child {
  margin-bottom: 0;
}
.hero__copy-block ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
  color: var(--muted);
}
.hero__copy-block li {
  margin-bottom: 8px;
}

.hero__aside {
  display: grid;
  gap: 14px;
}
.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.media-strip__cell {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.media-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.section-sub {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 62ch;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bento {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 720px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bento__card {
  background: linear-gradient(160deg, var(--bg-panel), #0a1018);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento__visual {
  flex: 1;
  min-height: 100px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px dashed rgba(244, 199, 106, 0.25);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.bento__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.bento__card h3 {
  margin: 0;
  font-size: 1.05rem;
}
.bento__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.shots {
  margin-top: 44px;
}
.shots__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.shot {
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.shot__frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 30%, rgba(46, 230, 200, 0.12), transparent 55%);
  display: grid;
  place-items: center;
}
.shot__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shot figcaption {
  padding: 12px 14px 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(120deg, rgba(46, 230, 200, 0.1), rgba(244, 199, 106, 0.06));
}
.cta-row p {
  margin: 0;
  max-width: 52ch;
  color: #dbe4ef;
}

.btn-game {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: #0f1824;
  border: 1px solid rgba(244, 199, 106, 0.35);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.btn-game:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  text-decoration: none;
}
.btn-game__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.btn-game__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.btn-game__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.btn-game__text small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.78rem;
}

.prose {
  max-width: 72ch;
}
.prose h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 0;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 2rem;
}
.prose p,
.prose li {
  color: #c9d5e3;
}
.prose ul {
  padding-left: 1.2em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 20px 44px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-dim);
  border: 1px solid var(--stroke);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.footer-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand strong {
  display: block;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.footer-brand span {
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-start;
}
@media (min-width: 720px) {
  .footer-links {
    justify-content: flex-end;
  }
}
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-meta {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 100000;
  background: var(--teal);
  color: #03120f;
  padding: 8px 12px;
  border-radius: 8px;
}
