/* Polar Reel Zone — Arctic neon social casino */
:root {
  --ice-deep: #061018;
  --ice-mid: #0c2333;
  --ice-light: #143d52;
  --aurora-cyan: #3ee8ff;
  --aurora-magenta: #ff4fd8;
  --aurora-violet: #9b7dff;
  --snow: #e8f7ff;
  --warn-amber: #ffc14d;
  --danger: #ff5c7a;
  --glass: rgba(12, 35, 51, 0.72);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --shadow-glow: 0 0 40px rgba(62, 232, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--snow);
  background: var(--ice-deep);
  overflow-x: hidden;
}

/* Animated aurora + shifting lights */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(180deg, #040a10 0%, #061018 45%, #0a1520 100%);
  overflow: hidden;
}

.bg-aurora::before,
.bg-aurora::after {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.85;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.bg-aurora::before {
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(62, 232, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(155, 125, 255, 0.28), transparent 50%);
}

.bg-aurora::after {
  background:
    radial-gradient(ellipse 60% 80% at 70% 90%, rgba(255, 79, 216, 0.14), transparent 45%),
    radial-gradient(ellipse 50% 40% at 40% 60%, rgba(62, 232, 255, 0.08), transparent 40%);
  animation-duration: 24s;
  animation-delay: -6s;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(2%, 3%) rotate(4deg) scale(1.05);
  }
}

/* Slow-moving ice grid + sparkle texture */
.bg-snowflakes {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.06' d='M0 50h100M50 0v100M15 15l70 70M85 15l-70 70'/%3E%3Ccircle cx='50' cy='50' r='1.2' fill='%233ee8ff' fill-opacity='0.15'/%3E%3C/svg%3E");
  animation: drift 100s linear infinite;
}

@keyframes drift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(100px) translateX(-20px); }
}

/* Floating crystals / bokeh (spans injected by main.js) */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-particles span {
  position: absolute;
  left: var(--x, 50%);
  top: -8%;
  width: var(--s, 6px);
  height: var(--s, 6px);
  border-radius: 1px;
  background: rgba(232, 247, 255, 0.35);
  box-shadow: 0 0 12px rgba(62, 232, 255, 0.25);
  animation: crystal-fall calc(12s + var(--d, 0) * 20s) linear infinite;
  animation-delay: calc(var(--d, 0) * -25s);
  transform: rotate(45deg);
  opacity: 0.7;
}

.bg-particles span:nth-child(3n) {
  border-radius: 50%;
  background: rgba(155, 125, 255, 0.25);
  box-shadow: 0 0 14px rgba(255, 79, 216, 0.2);
}

.bg-particles span:nth-child(5n) {
  width: 4px;
  height: 14px;
  border-radius: 2px;
  transform: rotate(15deg);
}

@keyframes crystal-fall {
  0% {
    transform: translateY(0) rotate(45deg) translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 0.85;
  }
  92% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(110vh) rotate(45deg) translateX(28px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-aurora::before,
  .bg-aurora::after,
  .bg-snowflakes,
  .bg-particles span {
    animation: none !important;
  }

  .bg-particles span {
    opacity: 0.25;
    transform: translateY(40vh);
  }
}

/* Phosphor icons in UI */
.feature-card .ph {
  font-size: 1.85rem;
  color: var(--aurora-cyan);
  display: block;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Top compliance strip */
.compliance-strip {
  background: linear-gradient(90deg, rgba(255, 92, 122, 0.2), rgba(255, 193, 77, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.55rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.compliance-strip strong {
  color: var(--warn-amber);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6, 16, 24, 0.85);
  border-bottom: 1px solid rgba(62, 232, 255, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--snow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-violet));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  line-height: 1;
}

.logo-mark .ph {
  font-size: 1.45rem;
  color: #041018;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-main a {
  color: rgba(232, 247, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--aurora-cyan);
  text-shadow: 0 0 20px rgba(62, 232, 255, 0.5);
}

/* Account / auth (filled by auth.js) */
/* Logo + suffix (auth, menu, links) */
.header-suffix {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-auth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
}

.nav-auth__hi {
  font-size: 0.88rem;
  color: rgba(232, 247, 255, 0.85);
  max-width: 14rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-auth__hi strong {
  color: var(--aurora-cyan);
  font-weight: 600;
}

.btn-nav-sm {
  padding: 0.45rem 0.95rem !important;
  font-size: 0.82rem !important;
}

@media (max-width: 768px) {
  .header-suffix {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .header-suffix .nav-main {
    flex-basis: 100%;
  }
}

/* Auth forms */
.auth-panel {
  max-width: 440px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(62, 232, 255, 0.2);
  background: rgba(12, 35, 51, 0.55);
}

.auth-panel h1 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
}

.auth-panel .lead {
  margin: 0 0 1.5rem;
  color: rgba(232, 247, 255, 0.75);
  font-size: 0.98rem;
}

.auth-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
  color: rgba(232, 247, 255, 0.9);
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(62, 232, 255, 0.25);
  background: rgba(4, 10, 16, 0.85);
  color: var(--snow);
  font-family: var(--font-body);
  font-size: 1rem;
}

.auth-form .check-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(232, 247, 255, 0.8);
}

.auth-form .check-row input {
  margin-top: 0.25rem;
}

.auth-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.auth-alert--err {
  background: rgba(255, 92, 122, 0.15);
  border: 1px solid rgba(255, 92, 122, 0.35);
  color: #ffb8c4;
}

.auth-alert--ok {
  background: rgba(62, 232, 255, 0.1);
  border: 1px solid rgba(62, 232, 255, 0.3);
  color: var(--snow);
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.account-stat {
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 16, 0.45);
}

.account-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--aurora-cyan);
}

.account-stat span {
  font-size: 0.82rem;
  color: rgba(232, 247, 255, 0.65);
}

/* Live homepage */
.welcome-strip {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 232, 255, 0.35);
  background: linear-gradient(120deg, rgba(62, 232, 255, 0.12), rgba(155, 125, 255, 0.1));
}

.welcome-strip h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.welcome-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 247, 255, 0.88);
}

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 16, 0.5);
  padding: 0.65rem 0;
}

.ticker-band__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}

.ticker-band__track:hover {
  animation-play-state: paused;
}

.ticker-band__inner {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  padding-right: 3rem;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-band span {
  color: rgba(232, 247, 255, 0.75);
  font-size: 0.88rem;
}

.ticker-band strong {
  color: var(--warn-amber);
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pulse-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 232, 255, 0.15);
  background: rgba(12, 35, 51, 0.4);
  text-align: center;
}

.pulse-card .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--aurora-cyan);
  display: block;
}

.pulse-card .lbl {
  font-size: 0.82rem;
  color: rgba(232, 247, 255, 0.65);
  margin-top: 0.25rem;
}

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

.testimonial-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(155, 125, 255, 0.06);
}

.testimonial-card p {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: rgba(232, 247, 255, 0.88);
  line-height: 1.55;
}

.testimonial-card footer {
  font-size: 0.85rem;
  color: var(--aurora-cyan);
}

.zone-moments {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.zone-moments li {
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--aurora-cyan);
  background: rgba(12, 35, 51, 0.35);
  font-size: 0.95rem;
  color: rgba(232, 247, 255, 0.85);
}

.zone-moments time {
  display: block;
  font-size: 0.78rem;
  color: rgba(232, 247, 255, 0.5);
  margin-bottom: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-band__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .ticker-band__inner {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
    padding-right: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(105deg, var(--aurora-cyan), var(--aurora-violet));
  color: #041018;
  box-shadow: 0 4px 24px rgba(62, 232, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(155, 125, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--snow);
  border: 1px solid rgba(62, 232, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--aurora-cyan);
  color: var(--aurora-cyan);
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--aurora-cyan), var(--aurora-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: rgba(232, 247, 255, 0.82);
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.hero-card {
  background: var(--glass);
  border: 1px solid rgba(62, 232, 255, 0.25);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-stat {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.stat {
  flex: 1;
  min-width: 120px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--aurora-cyan);
}

.stat small {
  color: rgba(232, 247, 255, 0.65);
  font-size: 0.8rem;
}

/* Sections */
section {
  padding: 2.75rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.section-sub {
  color: rgba(232, 247, 255, 0.7);
  margin: 0 0 1.75rem;
  max-width: 60ch;
}

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: rgba(12, 35, 51, 0.55);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 232, 255, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 30px rgba(62, 232, 255, 0.12);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.game-card-body {
  padding: 1.1rem 1.2rem 1.35rem;
}

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

.game-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(232, 247, 255, 0.7);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(62, 232, 255, 0.12);
  color: var(--aurora-cyan);
}

/* Content pages */
.page-main {
  padding: 2.5rem 0 4rem;
}

.prose {
  max-width: 70ch;
}

.prose h2 {
  font-family: var(--font-display);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: rgba(232, 247, 255, 0.88);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose a {
  color: var(--aurora-cyan);
}

.callout {
  border-left: 4px solid var(--aurora-cyan);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(62, 232, 255, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Responsible banners */
.rg-banner {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 193, 77, 0.35);
  background: linear-gradient(135deg, rgba(255, 92, 122, 0.12), rgba(255, 193, 77, 0.08));
}

.rg-banner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--warn-amber);
}

.rg-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 247, 255, 0.9);
}

.age-gate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid var(--danger);
  color: var(--snow);
  margin: 1rem 0;
}

/* Regulator logos */
.regulators {
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.regulators h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 247, 255, 0.55);
  margin: 0 0 1.25rem;
}

.reg-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.reg-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  opacity: 0.88;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.reg-grid a:hover {
  opacity: 1;
  transform: scale(1.05);
}

.reg-grid img {
  max-height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.reg-grid img[alt*="Connex"] {
  max-height: 44px;
}

/* Regulators block inside footer (present on every page) */
.footer-regulators {
  padding: 0;
}

.footer-regulators__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 247, 255, 0.5);
  margin: 0 0 1.15rem;
  text-align: center;
}

.site-footer .footer-regulators {
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* When regulators are the first block in the footer, avoid double rule */
.site-footer > .footer-regulators:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(62, 232, 255, 0.15);
  background: rgba(4, 10, 16, 0.6);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

.footer-brand p {
  color: rgba(232, 247, 255, 0.65);
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
  max-width: 40ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: rgba(232, 247, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--aurora-cyan);
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: rgba(232, 247, 255, 0.5);
  line-height: 1.6;
}

/* Game embed page */
.game-frame-wrap {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(62, 232, 255, 0.25);
  background: #000;
  min-height: 70vh;
}

.game-frame-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  display: block;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

/* Mobile nav toggle (simple) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(62, 232, 255, 0.4);
  color: var(--snow);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .nav-main.is-open {
    display: flex;
  }
}

/* —— Reference-inspired content blocks —— */

.section-band {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(12, 35, 51, 0.35), transparent);
}

.section-band--tight {
  padding: 2.25rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}

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

.stat-block {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: rgba(6, 16, 24, 0.65);
  border: 1px solid rgba(62, 232, 255, 0.12);
}

.stat-block b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--aurora-cyan);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stat-block span {
  font-size: 0.88rem;
  color: rgba(232, 247, 255, 0.72);
  line-height: 1.4;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.feature-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(12, 35, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(62, 232, 255, 0.3);
}

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

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 247, 255, 0.75);
  line-height: 1.55;
}

.trust-pillars {
  display: grid;
  gap: 1.25rem;
}

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

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

.trust-pillar {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 10, 16, 0.45);
}

.trust-pillar strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  color: var(--snow);
  margin-bottom: 0.35rem;
}

.trust-pillar strong .ph {
  font-size: 1.35rem;
  color: var(--aurora-cyan);
  flex-shrink: 0;
}

.trust-pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(232, 247, 255, 0.68);
  line-height: 1.5;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(62, 232, 255, 0.15);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: rgba(12, 35, 51, 0.35);
  overflow: hidden;
}

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

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

.faq-list summary::after {
  content: "+";
  color: var(--aurora-cyan);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.faq-list .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: rgba(232, 247, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-list .faq-body p:first-child {
  margin-top: 0;
}

.faq-list .faq-body p:last-child {
  margin-bottom: 0;
}

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

.badge-card {
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(62, 232, 255, 0.35);
  background: rgba(62, 232, 255, 0.05);
}

.badge-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  color: var(--aurora-cyan);
}

.badge-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(232, 247, 255, 0.7);
}

.did-you-know {
  display: grid;
  gap: 1rem;
}

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

.dyk-card {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(155, 125, 255, 0.12), rgba(62, 232, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dyk-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aurora-magenta);
  margin: 0 0 0.5rem;
}

.dyk-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232, 247, 255, 0.88);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--snow);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  background-size: cover;
  background-position: center;
}

.contact-form {
  max-width: 520px;
  margin-top: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.85rem 0 0.35rem;
  color: rgba(232, 247, 255, 0.85);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(62, 232, 255, 0.25);
  background: rgba(4, 10, 16, 0.75);
  color: var(--snow);
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  margin-top: 1rem;
}

.game-detail-block {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 35, 51, 0.4);
}

.game-detail-block h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.game-detail-block > p {
  margin: 0 0 1rem;
  color: rgba(232, 247, 255, 0.78);
  max-width: 65ch;
}

.game-detail-features {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.game-detail-features li {
  margin: 0;
  padding-left: 1.1rem;
  position: relative;
  color: rgba(232, 247, 255, 0.82);
  font-size: 0.95rem;
  list-style: none;
}

.game-detail-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aurora-cyan);
}

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 0.75rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

/* Age gate + cookie bar (compliance-banners.js) */
html.prz-compliance-locked,
html.prz-compliance-locked body {
  overflow: hidden;
}

.prz-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 6, 12, 0.88);
  backdrop-filter: blur(10px);
}

.prz-age-dialog {
  width: 100%;
  max-width: 26rem;
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(62, 232, 255, 0.35);
  background: linear-gradient(165deg, rgba(12, 35, 51, 0.95), rgba(6, 16, 24, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}

.prz-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #041018;
  background: linear-gradient(105deg, var(--aurora-cyan), var(--aurora-violet));
  margin-bottom: 1rem;
}

.prz-age-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.prz-age-text {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  color: rgba(232, 247, 255, 0.88);
  line-height: 1.55;
}

.prz-age-text--small {
  font-size: 0.9rem;
  color: rgba(232, 247, 255, 0.72);
}

.prz-age-text a {
  color: var(--aurora-cyan);
}

.prz-age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.prz-age-actions .btn {
  width: 100%;
  justify-content: center;
}

.prz-age-decline-panel {
  margin-top: 1.25rem;
  text-align: center;
}

.prz-age-decline-panel .btn {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

.prz-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0));
  background: rgba(4, 10, 16, 0.94);
  border-top: 1px solid rgba(62, 232, 255, 0.25);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.prz-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.prz-cookie-text {
  flex: 1 1 16rem;
  min-width: min(100%, 16rem);
}

.prz-cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232, 247, 255, 0.82);
}

.prz-cookie-text a {
  color: var(--aurora-cyan);
}

.prz-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .prz-age-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .prz-age-actions .btn {
    width: auto;
    flex: 1 1 auto;
  }
}
