:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e8e4df;
  --accent: #9b1f32;
  --accent-hover: #7f1828;
  --accent-soft: rgba(155, 31, 50, 0.08);
  --shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Sora", var(--font);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

body.age-gate-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

.site-disclaimer--top {
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
  padding: 0.55rem 1rem;
  background: #f0ebe6;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

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

.brand-lockup img {
  flex-shrink: 0;
}

.nav-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-primary a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-primary a:hover,
.nav-primary a.is-active {
  color: var(--accent);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

.page-hero {
  padding: 2.75rem 0 2rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .page-hero.hero-split {
    grid-template-columns: 1fr 1fr;
    padding: 3.25rem 0 2.5rem;
  }
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-row strong {
  color: var(--text);
  font-weight: 600;
}

.media-shell {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 0.75rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-shell img,
.media-shell svg,
.media-shell .hero-svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  border-radius: calc(var(--radius-sm) - 2px);
}

.media-shell img {
  object-fit: cover;
  height: 100%;
}

.section {
  padding: 2.5rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1.75rem;
}

.cards-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: #ddd8d2;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

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

.games-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.games-strip .game-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
}

.games-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.game-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.game-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #c94a5a 0%, #5b1a2a 100%);
  position: relative;
}

.game-card__media--b {
  background: linear-gradient(135deg, #2d6a8a 0%, #1a3d52 100%);
}

.game-card__media--c {
  background: linear-gradient(135deg, #b8860b 0%, #5c4a1a 100%);
}

.game-card__media--thumb {
  background: #141210;
  padding: 0;
}

.game-card__media--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.game-card__media--thumb {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.game-card__media--thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.game-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card__body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

.game-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.game-card .btn {
  width: 100%;
  margin-top: auto;
}

.game-card.is-placeholder .btn {
  pointer-events: none;
  opacity: 0.85;
  cursor: default;
}

.game-play {
  padding: 0.5rem 0 2.5rem;
}

.game-play__head {
  margin-bottom: 1rem;
}

.game-play__head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.35rem;
}

.game-play__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.game-play__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c0b0a;
  min-height: min(72vh, 760px);
}

.game-play__frame iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  border: 0;
}

.pick-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .pick-box {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.pick-box h2 {
  margin: 0;
  font-size: 1.25rem;
}

.pick-box p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: none;
}

.faq-list summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list .faq-answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonials {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.quote-card cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-card {
  background: #f3eeea;
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.95rem;
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  font-size: 0.9rem;
}

.blog-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.site-disclaimer--inline {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  background: #f0ebe6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 2rem 0 0;
}

.site-footer {
  background: #1f1d1b;
  color: #c9c4be;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-lockup {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand .brand-lockup:hover {
  color: #f0a0ac;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: #c9c4be;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  background: #2a2724;
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #a8a29c;
}

.footer-legal-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #3d3935;
  font-size: 0.8rem;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.footer-copy {
  margin: 0;
  color: #8a8580;
  font-size: 0.75rem;
  width: 100%;
}

.page-legal {
  padding: 2rem 0 3rem;
}

.page-legal h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 1rem;
}

.page-legal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.page-legal p,
.page-legal li {
  color: var(--muted);
  max-width: 50rem;
}

.page-legal ul {
  padding-left: 1.25rem;
}

.meta-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 18, 16, 0.72);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  text-align: center;
}

.age-gate__panel img {
  margin: 0 auto 1rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

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

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.age-gate__actions .btn {
  width: 100%;
}

.age-gate__hint {
  font-size: 0.8rem !important;
  color: var(--text) !important;
  font-weight: 600;
}
