/* Bingo Crown / Crownix Games — public marketing & legal pages */
:root {
  --gold: #f0c850;
  --gold-soft: #ffe9a8;
  --gold-dim: rgba(240, 200, 80, 0.45);
  --bg: #221a48;
  --bg-elevated: #2e2460;
  --card: #3a2f72;
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #faf8ff;
  --text-muted: #d4cef0;
  --text-dim: #a89fd0;
  --accent: #b894ff;
  --accent-soft: rgba(184, 148, 255, 0.22);
  --success: #6ee8b0;
  --danger: #ff8a92;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 16px 40px rgba(20, 10, 50, 0.35);
  --header-h: 64px;
  --font-sans: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --max: 1120px;
  --prose: 720px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  color-scheme: light dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.site-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
body.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(160, 100, 255, 0.38), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(240, 200, 80, 0.18), transparent 52%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(120, 180, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #2a2060 0%, #221a48 45%, #1e1840 100%);
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; color: #fff4d0; }
img { max-width: 100%; height: auto; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--card-border);
  background: rgba(42, 32, 96, 0.92);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  position: relative;
}
.site-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.site-brand--with-logo {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.site-brand__logo {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.site-brand__logo--footer {
  width: 48px;
}
.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-brand:hover { text-decoration: none; }
.site-brand__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.site-brand__sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font: 600 0.8rem/1 var(--font-sans);
  cursor: pointer;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  text-decoration: none;
}
.site-nav a.site-nav__cta {
  color: var(--bg);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}
.site-nav a.site-nav__cta:hover {
  filter: brightness(1.08);
  color: #1a1208;
  text-decoration: none;
}

@media (max-width: 960px) {
  .site-nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: rgba(46, 36, 96, 0.98);
    border-bottom: 1px solid var(--card-border);
    gap: 4px;
    z-index: 101;
    box-sizing: border-box;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--card-border); }
  .site-nav a.site-nav__cta { text-align: center; border: none; margin-top: 8px; }
}

/* —— Main layout —— */
.site-main {
  flex: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.site-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 20px 56px;
  width: 100%;
  min-width: 0;
}
.site-container--narrow {
  max-width: var(--prose);
}

/* —— Hero —— */
.site-hero {
  padding: 40px 0 32px;
  text-align: center;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.hero-logo {
  width: min(100%, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(30, 15, 70, 0.35));
}
.hero-logo--circle {
  width: min(72vw, 220px);
  height: min(72vw, 220px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold-soft);
  box-shadow:
    0 0 0 10px rgba(240, 200, 80, 0.15),
    0 20px 48px rgba(30, 15, 70, 0.4);
}
.hero-logo--app {
  width: min(68vw, 200px);
  height: min(68vw, 200px);
  border-radius: 22%;
  object-fit: cover;
  border: 3px solid rgba(240, 200, 80, 0.55);
  box-shadow:
    0 0 0 8px rgba(240, 200, 80, 0.12),
    0 16px 40px rgba(30, 15, 70, 0.45);
}
.about-logo {
  text-align: center;
  margin-bottom: 28px;
}
.about-logo img {
  width: min(100%, 180px);
  height: min(100%, 180px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-dim);
  filter: drop-shadow(0 12px 28px rgba(30, 15, 70, 0.35));
}
.site-hero--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 24px 0 40px;
}
.site-hero--stacked .site-hero__content {
  max-width: 640px;
  width: 100%;
}
.site-hero--stacked .site-hero__lead {
  margin-left: auto;
  margin-right: auto;
}
.site-hero--stacked .store-row,
.site-hero--stacked .btn-row,
.site-hero--stacked .social-row {
  justify-content: center;
}
.site-hero--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
  align-items: center;
}
@media (min-width: 900px) {
  .site-hero--split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0 56px;
  }
  .site-hero--split .store-row,
  .site-hero--split .btn-row {
    justify-content: flex-start;
  }
  .site-hero--split .site-hero__lead {
    margin-left: 0;
  }
}
.site-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone {
  position: relative;
  width: min(100%, 320px);
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(232, 184, 74, 0.35), rgba(157, 122, 255, 0.2));
  box-shadow: var(--shadow), 0 0 60px rgba(157, 122, 255, 0.15);
}
.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}
.hero-phone__badge {
  position: absolute;
  bottom: -12px;
  right: -8px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 2px solid var(--gold-dim);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.site-hero__app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

/* —— Media gallery —— */
.site-section--gallery {
  padding-top: 16px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.media-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.media-grid figure:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
}
.media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.media-grid figcaption {
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.media-grid--promo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #2e2460;
}
.hero-phone--wide {
  width: min(100%, 420px);
}
.hero-phone--wide img {
  object-fit: cover;
  object-position: center top;
}

/* —— Video embed —— */
.video-block {
  max-width: 840px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* —— Social links —— */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.site-hero--split .social-row {
  justify-content: flex-start;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.social-link:hover {
  text-decoration: none;
  color: var(--text);
  border-color: var(--gold-dim);
  transform: translateY(-1px);
}
.social-link--youtube:hover { border-color: rgba(255, 0, 0, 0.45); }
.social-link--facebook:hover { border-color: rgba(66, 103, 178, 0.55); }
.site-card--media {
  padding: 0;
  overflow: hidden;
}
.site-card--media img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}
.site-card--media .site-card__body {
  padding: 20px 22px;
}
.about-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.about-banner img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
}
.site-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(157, 122, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.site-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.site-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* —— Store buttons —— */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 20px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
}
.store-btn:hover {
  text-decoration: none;
  color: var(--text);
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.store-btn--primary {
  border-color: var(--gold-soft);
  background: linear-gradient(145deg, #4a3a8a 0%, #3a2f72 100%);
}
.store-btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.store-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.store-btn__text {
  text-align: left;
}
.store-btn__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-weight: 600;
}
.store-btn__name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}
.store-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* —— Sections & cards —— */
.site-section {
  padding: 40px 0;
}
.site-section--compact {
  padding: 28px 0;
  border-top: 1px solid var(--card-border);
}
.site-section--compact:first-of-type {
  border-top: none;
}
.site-grid--highlights {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.site-grid--support {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.site-section__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-soft);
  margin: 0 0 8px;
  font-weight: 400;
}
.site-section__sub {
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 560px;
}
.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.site-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.site-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}
.site-card p,
.site-card li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.site-card ul {
  margin: 0;
  padding-left: 1.2rem;
}
.site-card li { margin-bottom: 6px; }

.site-card--support {
  border-color: rgba(93, 211, 158, 0.25);
  background: linear-gradient(145deg, rgba(93, 211, 158, 0.08), var(--card));
}
.site-card--support a.email {
  font-size: 1.1rem;
  font-weight: 700;
  word-break: break-all;
}

/* —— Prose (legal) —— */
.site-prose h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 400;
}
.site-prose .updated {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.site-prose h2 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}
.site-prose h2:first-of-type { margin-top: 0; }
.site-prose p,
.site-prose li {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 14px;
}
.site-prose ul { padding-left: 1.25rem; margin-bottom: 16px; }
.site-prose .callout {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.site-prose .callout--danger {
  border-color: rgba(240, 113, 120, 0.35);
}

/* —— Breadcrumb —— */
.site-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.site-breadcrumb a { color: var(--text-muted); }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--card-border);
  background: var(--bg-elevated);
  margin-top: auto;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 32px 24px;
}
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.site-footer__brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 10px 0 0;
  line-height: 1.55;
}
.site-footer__col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 14px;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.site-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.site-footer__bottom a { color: var(--text-muted); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--card-border);
  color: var(--text);
  background: var(--card);
}
.btn:hover { text-decoration: none; color: #fff; border-color: var(--gold-dim); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1208;
  border-color: transparent;
}
.btn--gold:hover { color: #1a1208; filter: brightness(1.06); }

/* —— Steps (delete account etc.) —— */
.step-list { margin: 20px 0; }
.step-list .step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 184, 74, 0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.step-text strong { color: var(--text); }

.site-prose .callout--warn {
  border-color: rgba(240, 113, 120, 0.35);
  background: rgba(240, 113, 120, 0.08);
  color: #ffc8cc;
}

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

/* —— Contact form —— */
.site-hero--compact { padding-top: 8px; }
.site-hero--compact h1 { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: 10px; }
.site-grid--contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .site-grid--contact { grid-template-columns: 1fr; }
}
.site-card--form,
.site-card--aside {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: rgba(58, 47, 114, 0.55);
  box-shadow: var(--shadow);
}
.site-form { display: grid; gap: 16px; margin-top: 12px; }
.site-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-form__field { display: grid; gap: 6px; }
.site-form__label { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); }
.site-form__field input,
.site-form__field select,
.site-form__field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: rgba(20, 14, 46, 0.72);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}
.site-form__field textarea { resize: vertical; min-height: 140px; }
.site-form__field input:focus,
.site-form__field select:focus,
.site-form__field textarea:focus {
  outline: 2px solid var(--gold-dim);
  border-color: var(--gold);
}
.site-form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.site-form__check input { margin-top: 4px; flex-shrink: 0; }
.site-form__actions { margin-top: 4px; }
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.site-btn--primary {
  background: linear-gradient(135deg, #c89a20, var(--gold));
  color: #1a1030;
}
.site-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.site-form__status { min-height: 1.4em; font-size: 0.92rem; margin: 0; }
.site-form__status.is-success { color: var(--success); }
.site-form__status.is-error { color: var(--danger); }
.site-aside__heading {
  margin: 20px 0 8px;
  font-size: 0.95rem;
  color: var(--text);
}
.site-aside__list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* —— Studio home & games —— */
.site-hero--studio .site-hero__content { text-align: center; max-width: 640px; margin: 0 auto; }
.btn-row--hero { justify-content: center; margin-top: 8px; }
.site-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 12px 22px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: rgba(20, 14, 46, 0.5);
  color: var(--text);
  text-decoration: none;
}
.site-btn--ghost:hover { border-color: var(--gold-dim); color: var(--gold-soft); text-decoration: none; }
.site-grid--games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.site-game-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: rgba(58, 47, 114, 0.55);
  box-shadow: var(--shadow);
}
.site-game-card--featured { align-items: center; }
.site-game-card--soon { opacity: 0.92; border-style: dashed; }
.site-game-card__visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .site-game-card { flex-direction: column; align-items: center; text-align: center; }
  .site-game-card__actions { justify-content: center; }
}
.site-game-card__icon {
  display: block;
  width: 104px;
  height: 104px;
  border-radius: 22%;
  border: 2px solid rgba(240, 200, 80, 0.45);
  object-fit: cover;
  box-shadow:
    0 10px 28px rgba(20, 10, 50, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.site-game-card--featured .site-game-card__icon {
  width: 128px;
  height: 128px;
  border-radius: 24%;
}
.site-game-card__eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.site-game-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--gold-soft);
}
.site-game-card__title a { color: inherit; text-decoration: none; }
.site-game-card__title a:hover { text-decoration: underline; }
.site-game-card__desc { margin: 0 0 14px; color: var(--text-muted); line-height: 1.6; }
.site-game-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* —— Mobile / tablet portrait (marketing site only) —— */
@media (max-width: 768px) {
  .site-container { padding: 24px 16px 48px; }
  .site-hero { padding: 16px 0 28px; }
  .site-hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .site-game-card,
  .site-game-card--featured {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-game-card__actions { justify-content: center; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .store-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .store-btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .site-btn {
    width: 100%;
    max-width: 100%;
  }
  .site-game-card__actions .site-btn,
  .btn-row .site-btn,
  .btn-row .site-btn--ghost,
  .btn-row .btn {
    width: 100%;
  }
  .site-grid--contact { grid-template-columns: 1fr; }
}
