﻿/* VOX Casino — Split-Intent: Premium Shell + SEO Monolith */

:root {
  --bg-main: #07090d;
  --bg-deep: #030406;
  --surface: #11141a;
  --accent-ruby: #d61f3d;
  --accent-ruby-rgb: 214, 31, 61;
  --accent-gold: linear-gradient(135deg, #f3d2a8, #e0a96d);
  --gold-solid: #e0a96d;
  --gold-light: #f3d2a8;
  --text-main: #f2ede9;
  --text-muted: #8a929e;
  --border: rgba(224, 169, 109, 0.15);
  --glass: rgba(17, 20, 26, 0.72);
  --container: 1200px;
  --header-h: 64px;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bg-primary: var(--bg-main);
  --text: var(--text-main);
  --gold: #e0a96d;
  --gold-rgb: 224, 169, 109;
}

@media (min-width: 768px) {
  :root { --header-h: 76px; }
}

@media (min-width: 1024px) {
  :root { --header-h: 88px; }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container { width: min(100% - 48px, var(--container)); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn--primary {
  height: 50px;
  padding: 0 28px;
  background: linear-gradient(135deg, #d61f3d 0%, #a81832 55%, #8b1429 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(var(--accent-ruby-rgb), 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(var(--accent-ruby-rgb), 0.55);
}

.btn--secondary {
  height: 50px;
  padding: 0 28px;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  border-color: rgba(224, 169, 109, 0.45);
  background: rgba(224, 169, 109, 0.06);
  transform: translateY(-1px);
}

.btn--sm {
  height: 42px;
  padding: 0 20px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .btn--primary,
  .btn--secondary { height: 52px; padding: 0 32px; }
  .btn--sm { height: 44px; }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

@media (min-width: 1024px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }
  .nav { justify-self: center; }
  .header__actions { justify-self: end; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 36px;
  width: auto;
  filter: brightness(1.05) sepia(0.4) saturate(1.4) hue-rotate(-5deg);
}

@media (min-width: 768px) {
  .logo img { height: 40px; }
}

.logo__wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--accent-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover { color: var(--gold-light); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.25s, opacity 0.25s;
}

.burger.active span:nth-child(1),
.burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.active span:nth-child(2),
.burger.is-open span:nth-child(2) { opacity: 0; }

.burger.active span:nth-child(3),
.burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav { display: flex; }
  .burger { display: none; }
  .logo__wordmark { display: block; }
}

@media (max-width: 1023px) {
  .logo__wordmark { display: none; }
  .header__actions .btn--secondary { display: none; }
  .header__actions .btn--primary.btn--sm {
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px 40px;
  background: rgba(3, 4, 6, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 16px;
  z-index: 199;
  overflow-y: auto;
}

.mobile-nav.active,
.mobile-nav.is-open { display: flex; }

.mobile-nav a:not(.btn) {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav .btn { width: 100%; margin-top: 8px; }

.affiliate-notice {
  margin-top: var(--header-h);
  padding: 8px 0;
  background: rgba(var(--accent-ruby-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--accent-ruby-rgb), 0.15);
}

.affiliate-notice__inner p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.hero {
  position: relative;
  padding: 32px 0 48px;
  background:
    radial-gradient(ellipse 80% 60% at 75% 15%, rgba(var(--accent-ruby-rgb), 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(224, 169, 109, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-main) 100%);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner { padding: 0 24px; }
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 899px) {
  .hero__visual { order: -1; }
}

@media (min-width: 900px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-solid);
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-ruby);
  border-radius: 2px;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 16px;
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  background: var(--accent-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero__lead {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__cta .btn { width: 100%; }

@media (min-width: 480px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__cta .btn { width: auto; flex: 1 1 auto; }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero__stats { display: flex; gap: 40px; padding-top: 28px; }
}

.stat__value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.75rem);
  font-weight: 700;
  background: var(--accent-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__frame-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-ruby-rgb), 0.2), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__frame {
  position: relative;
  z-index: 1;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__frame img {
  width: 100%;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: contain;
}

.hero__vip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero__vip-card strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.hero__vip-card span {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .hero__vip-card { flex-direction: column; text-align: center; }
  .hero__vip-card .btn { width: 100%; }
}

.shimmer-wrap { position: relative; overflow: hidden; }

.seo-pile {
  background: var(--bg-deep);
  padding: 40px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .seo-pile { padding: 56px 0 72px; }
}

.prose--monolith {
  max-width: 850px;
  margin-inline: auto;
  padding: 28px 22px 36px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .prose--monolith {
    padding: 40px 48px 48px;
    font-size: 17px;
  }
}

.prose--monolith p { margin-bottom: 1.15em; }
.prose--monolith p:last-child { margin-bottom: 0; }

.prose--monolith h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin: 2.25em 0 0.75em;
  padding-left: 14px;
  border-left: 3px solid var(--accent-ruby);
}

.prose--monolith h2:first-child,
.prose__toc h2 { margin-top: 0; }

.prose--monolith h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 1.5em 0 0.5em;
}

.prose--monolith ul,
.prose--monolith ol { margin: 0 0 1.15em 1.25em; }

.prose--monolith li { margin-bottom: 0.45em; }

.prose--monolith strong { color: var(--text-main); font-weight: 600; }

.prose--monolith a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose--monolith blockquote {
  margin: 1em 0;
  padding: 12px 16px;
  border-left: 3px solid rgba(var(--accent-ruby-rgb), 0.5);
  background: rgba(255, 255, 255, 0.02);
  font-style: italic;
}

.prose--monolith blockquote p { margin: 0; }

.prose__toc {
  margin-bottom: 2em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.toc-box__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--accent-ruby);
}

.toc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 480px) {
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .toc-grid { grid-template-columns: repeat(3, 1fr); }
}

.toc-grid a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.toc-grid a:hover {
  color: var(--gold-light);
  background: rgba(224, 169, 109, 0.06);
}

.prose--monolith .author-box {
  display: flex;
  gap: 14px;
  padding: 16px;
  margin-bottom: 1.5em;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.author-box__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-ruby);
  border-radius: 50%;
}

.author-box__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-solid);
  margin-bottom: 2px;
}

.author-box__name {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.author-box__bio {
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.author-box__meta {
  font-size: 12px;
  color: var(--text-muted);
}

.author-box__sep { margin: 0 4px; opacity: 0.4; }

.prose--monolith .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25em 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 520px;
}

.data-table th,
.data-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}

.data-table th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-solid);
  background: rgba(var(--accent-ruby-rgb), 0.1);
}

.data-table tr:last-child td { border-bottom: none; }

.data-table td:first-child {
  color: var(--text-main);
  font-weight: 500;
}

.games-wrap--prose { margin: 1.25em 0; }

.games-wrap--prose .games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 600px) {
  .games-wrap--prose .games { grid-template-columns: repeat(2, 1fr); }
}

.game-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.game-tile__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 4px;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  color: var(--text-main);
  z-index: 1;
}

.prose--monolith .faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0.5em;
}

.prose--monolith .faq details {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.prose--monolith .faq summary {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
}

.prose--monolith .faq summary::-webkit-details-marker { display: none; }

.prose--monolith .faq__body {
  padding: 0 16px 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.prose--monolith .sources-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.prose--monolith .sources-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 15px;
}

.prose--monolith .sources-list li:last-child { border-bottom: none; }

.prose__cta { margin-top: 1em; }

.footer {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer__brand p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.65;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-solid);
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--gold-light); }

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.footer__trust span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
}

.footer__legal {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
  .footer__legal { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__legal { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.footer__legal-title {
  grid-column: 1 / -1;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.footer__legal-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.footer__legal-card h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-solid);
  margin-bottom: 8px;
}

.footer__legal-card p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer__legal-card a {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer__bottom { padding-top: 8px; }

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer__copyright p {
  font-size: 12px;
  color: var(--text-muted);
  flex: 1 1 200px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-ruby);
  border: 1px solid rgba(var(--accent-ruby-rgb), 0.4);
  border-radius: 50%;
}
