/* Spin Win Lab — aurora glass (mørk mesh + frosted panels + neon accents) */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  --void: #06060d;
  --deep: #0c0e18;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-bright: rgba(255, 255, 255, 0.2);
  --text: #f1f4fb;
  --muted: #a7b0c4;
  --faint: #6b7589;
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.15);
  --fuchsia: #e879f9;
  --fuchsia-dim: rgba(232, 121, 249, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 60px rgba(34, 211, 238, 0.08);
  --glow-a: rgba(34, 211, 238, 0.45);
  --glow-b: rgba(232, 121, 249, 0.35);
  --glow-c: rgba(99, 102, 241, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--void);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 20%, rgba(232, 121, 249, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(34, 211, 238, 0.1), transparent 45%),
    linear-gradient(180deg, var(--void) 0%, var(--deep) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-optical-sizing: auto;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}

a:hover {
  color: #67e8f9;
}

.layout-root {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.04);
}

.site-bg__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.site-bg__chips {
  position: absolute;
  inset: 0;
}

.chip-icon {
  position: absolute;
  left: -5%;
  top: 10%;
  width: min(44vw, 400px);
  height: auto;
  color: rgba(34, 211, 238, 0.14);
  animation: drift 28s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.2));
}

.chip-icon--delay {
  right: -8%;
  left: auto;
  top: 35%;
  color: rgba(232, 121, 249, 0.12);
  animation-delay: -9s;
  animation-duration: 32s;
}

.chip-icon--slow {
  left: 8%;
  bottom: 6%;
  top: auto;
  width: min(38vw, 360px);
  color: rgba(129, 140, 248, 0.1);
  animation-duration: 36s;
  animation-delay: -14s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(18px, -12px) scale(1.02);
  }
  66% {
    transform: translate(-10px, 14px) scale(0.98);
  }
}

.site-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: breathe 14s ease-in-out infinite;
}

.site-bg__orb--a {
  width: min(90vw, 560px);
  height: min(90vw, 560px);
  top: -20%;
  right: -15%;
  background: radial-gradient(circle at 35% 35%, var(--glow-a), transparent 68%);
}

.site-bg__orb--b {
  width: min(75vw, 480px);
  height: min(75vw, 480px);
  bottom: -12%;
  left: -12%;
  background: radial-gradient(circle at 65% 55%, var(--glow-b), transparent 65%);
  animation-delay: -7s;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.site-wrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.35rem 1.15rem 3.25rem;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.75rem;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo-img {
  width: min(168px, 36vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.primary-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem 0.35rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--stroke) transparent;
  padding-bottom: 2px;
}

.primary-nav::-webkit-scrollbar {
  height: 5px;
}

.primary-nav::-webkit-scrollbar-thumb {
  background: var(--stroke);
  border-radius: 4px;
}

.nav-link {
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: var(--glass-strong);
  border-color: var(--stroke);
}

.nav-link.active {
  color: var(--void);
  background: linear-gradient(135deg, var(--cyan) 0%, #67e8f9 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

.main-flow {
  display: flex;
  flex-direction: column;
  gap: 2.35rem;
}

.hero-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.75rem 2rem;
  align-items: stretch;
  padding: 1.5rem 0 0.35rem;
}

.hero-lab__copy {
  padding: 0.35rem 0;
}

.hero-lab__visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(155deg, var(--glass-strong) 0%, var(--glass) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1.35rem 1.2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-lab__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 90% 0%, var(--fuchsia-dim) 0%, transparent 55%);
  pointer-events: none;
}

.hero-lab__stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}

.stat-pill {
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.65rem 0.55rem;
  text-align: left;
}

.stat-pill strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--cyan), #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.stat-pill span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
}

.hero-lab__tagline {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--fuchsia);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--fuchsia), var(--cyan));
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text);
}

.hero-lab h1 {
  font-size: clamp(1.95rem, 4.2vw, 2.75rem);
  margin: 0 0 0.9rem;
  max-width: 20ch;
  background: linear-gradient(120deg, #fff 0%, #c7d2fe 45%, #e9d5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lab p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 52ch;
}

.last-updated {
  font-size: 0.86rem;
  color: var(--faint);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #06b6d4 0%, var(--cyan) 50%, #67e8f9 100%);
  color: #042f2e;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(34, 211, 238, 0.38);
}

.btn-muted {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-muted:hover {
  border-color: var(--stroke-bright);
  background: var(--glass-strong);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-small {
  padding: 0.48rem 0.9rem;
  font-size: 0.82rem;
}

.btn-link {
  background: transparent;
  color: var(--cyan);
  box-shadow: none;
  border: none;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.btn-link:hover {
  transform: none;
  color: #a5f3fc;
  box-shadow: none;
}

.panel,
.disclosure {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  padding: 1.45rem 1.45rem;
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.disclosure {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--cyan), var(--fuchsia)) 1;
  background: linear-gradient(135deg, var(--cyan-dim) 0%, var(--glass) 42%, var(--fuchsia-dim) 100%);
}

.disclosure h2 {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
}

.disclosure p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.disclosure p:last-child {
  margin-bottom: 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
}

.section-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fuchsia);
  font-weight: 600;
}

.section-head__note {
  margin: 0;
  max-width: 42ch;
  color: var(--faint);
  font-size: 0.9rem;
}

.casino-section {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.casino-deck--featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.casino-deck--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 1fr));
  gap: 1rem;
}

.casino-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(165deg, var(--glass-strong) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(14px);
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.casino-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 80% at 100% 0%, var(--cyan-dim), transparent 55%);
  pointer-events: none;
}

.casino-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(34, 211, 238, 0.08);
}

.casino-card--featured {
  border-color: rgba(34, 211, 238, 0.25);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08) 0%, var(--glass) 55%);
  min-height: 100%;
}

.casino-card__badge {
  align-self: flex-start;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(90deg, var(--fuchsia), #c084fc);
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(232, 121, 249, 0.35);
}

.brand-logo-wrap {
  position: relative;
  z-index: 1;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--stroke);
}

.brand-logo {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: brightness(1.06);
}

.casino-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.casino-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-pill {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  background: rgba(0, 0, 0, 0.22);
}

.casino-card__foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.split-band--reverse .panel:first-child {
  order: 2;
}

.split-band--reverse .panel:last-child {
  order: 1;
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.steps li {
  margin-bottom: 0.52rem;
}

.steps li::marker {
  color: var(--fuchsia);
}

.panel h2 {
  margin: 0 0 0.7rem;
  font-size: 1.22rem;
}

.panel h3 {
  margin: 0.9rem 0 0.38rem;
  font-size: 1rem;
}

.panel p,
.panel li {
  color: var(--muted);
  font-size: 0.94rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--stroke);
  margin-left: 0.4rem;
  padding-left: 1.2rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.32rem;
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--fuchsia));
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15), 0 0 18px rgba(232, 121, 249, 0.35);
}

.timeline-date {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 0.32rem;
}

.timeline-item h3 {
  margin: 0 0 0.38rem;
  font-size: 1.03rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-details {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(12px);
  padding: 0;
  overflow: hidden;
}

.faq-details summary {
  cursor: pointer;
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.95rem 1.05rem;
  color: var(--text);
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details[open] summary {
  border-bottom: 1px solid var(--stroke);
  background: rgba(34, 211, 238, 0.06);
}

.faq-details p {
  margin: 0;
  padding: 0.85rem 1.05rem 1.05rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.help-strip {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: linear-gradient(125deg, rgba(34, 211, 238, 0.12) 0%, rgba(99, 102, 241, 0.1) 50%, rgba(232, 121, 249, 0.08) 100%);
  backdrop-filter: blur(16px);
  padding: 1.45rem 1.45rem;
  box-shadow: var(--shadow-glow);
}

.help-strip h2 {
  margin: 0 0 0.48rem;
  font-size: 1.22rem;
}

.help-strip p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.help-strip .btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.help-strip .btn-muted {
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
}

.hero.compact {
  padding: 0.45rem 0 0.35rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--stroke);
}

.hero.compact h1 {
  font-size: clamp(1.6rem, 3.3vw, 2.05rem);
  margin: 0.3rem 0 0.6rem;
  background: linear-gradient(120deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero.compact p {
  color: var(--muted);
  margin: 0 0 0.48rem;
  max-width: 60ch;
}

.footer {
  margin-top: 2.85rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--stroke);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem 1.1rem;
}

.footer-brand {
  grid-column: span 5;
}

.footer-disclosure {
  grid-column: span 3;
}

.footer-regs {
  grid-column: span 4;
}

.footer-nav {
  grid-column: span 12;
  border-top: 1px solid var(--stroke);
  padding-top: 1.15rem;
}

.footer-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.footer-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.32rem;
  margin: 0 0 0.6rem;
}

.footer-lead,
.footer-meta,
.footer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 0.58rem;
  line-height: 1.55;
}

.footer-heading {
  font-family: "Outfit", sans-serif;
  font-size: 0.94rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.reg-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.reg-links--large {
  gap: 1.15rem;
}

.reg-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.86rem;
}

.reg-links--large li a {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.reg-links li a:hover {
  color: var(--cyan);
}

.reg-links__label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reg-logo {
  width: auto;
  height: 72px;
  max-width: 220px;
  min-width: 120px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 8px;
}

.reg-links--large .reg-logo {
  height: 80px;
  max-width: 260px;
  padding: 8px 10px;
}

.footer-nav ul {
  margin: 0.3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--cyan);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--faint);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.22rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.75rem;
  font: inherit;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.form-note {
  margin-top: 0.7rem;
  color: var(--faint);
  font-size: 0.86rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 13, 0.78);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 1000;
}

.modal-card {
  max-width: 520px;
  background: linear-gradient(165deg, var(--glass-strong) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(22px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), var(--shadow-glow);
  padding: 1.45rem 1.4rem;
}

.modal-card h2 {
  margin: 0 0 0.58rem;
}

.modal-card p {
  color: var(--muted);
  margin: 0 0 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(12, 14, 24, 0.82);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  padding: 1rem 1.15rem;
  z-index: 950;
}

.cookie-banner p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.prefs {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.48rem;
}

.prefs label {
  color: var(--muted);
  font-size: 0.85rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Skjult overskrift til skærmlæsere */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Site-wide compliance-bannere */
.compliance-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.compliance-stack--top {
  margin-top: 0;
}

.compliance-banner {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(12px);
}

.compliance-banner--age {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.14) 0%, var(--glass) 55%);
  border-color: rgba(239, 68, 68, 0.35);
}

.compliance-banner__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 3.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--void);
  background: linear-gradient(145deg, #fca5a5 0%, #ef4444 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
}

.compliance-banner__text {
  flex: 1;
  min-width: min(100%, 280px);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.compliance-banner__text strong {
  color: var(--text);
}

.compliance-banner__brand {
  font-weight: 700;
  color: var(--cyan);
}

.compliance-banner--rg {
  background: linear-gradient(120deg, var(--cyan-dim) 0%, var(--glass) 70%);
}

.compliance-banner__lead {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.compliance-banner__lead strong {
  color: var(--text);
}

.compliance-banner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.compliance-banner__links--row {
  margin-top: 0.5rem;
}

.compliance-banner__link {
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.compliance-banner__link:hover {
  text-decoration: underline;
}

.compliance-banner--footer-wide {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  margin-bottom: 1.75rem;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(135deg, rgba(232, 121, 249, 0.1) 0%, rgba(34, 211, 238, 0.08) 100%);
  border-color: rgba(232, 121, 249, 0.28);
}

.compliance-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fuchsia), var(--cyan));
  opacity: 0.85;
  box-shadow: 0 8px 24px rgba(232, 121, 249, 0.25);
}

.compliance-banner__title {
  margin: 0 0 0.35rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.compliance-banner__sub {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Forside: grid med ansvar-kort */
.rg-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.rg-banner-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 1.15rem 1.1rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}

.rg-banner-card--age {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.1) 0%, var(--glass) 65%);
}

.rg-banner-card--limits {
  border-color: rgba(34, 211, 238, 0.3);
}

.rg-banner-card--help {
  border-color: rgba(232, 121, 249, 0.3);
  background: linear-gradient(165deg, rgba(232, 121, 249, 0.08) 0%, var(--glass) 60%);
}

.rg-banner-card__kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.rg-banner-card__title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--text);
}

.rg-banner-card--age .rg-banner-card__title {
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: #fca5a5;
}

.rg-banner-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.rg-banner-card__cta {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  font-weight: 600;
}

/* Forside: dobbelt stribe under casino */
.compliance-inline {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.25rem 0 1.5rem;
}

.compliance-inline__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  font-size: 0.88rem;
  line-height: 1.45;
}

.compliance-inline__strip strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.45);
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.compliance-inline__strip--warn {
  background: rgba(127, 29, 29, 0.2);
  border-color: rgba(248, 113, 113, 0.35);
  color: var(--muted);
}

.compliance-inline__strip--info {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.22);
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-lab {
    grid-template-columns: 1fr;
  }

  .hero-lab__visual {
    order: -1;
  }

  .casino-deck--featured {
    grid-template-columns: 1fr;
  }

  .split-band,
  .split-band--reverse .panel:first-child,
  .split-band--reverse .panel:last-child {
    grid-template-columns: 1fr;
    order: unset;
  }

  .footer-brand,
  .footer-disclosure,
  .footer-regs {
    grid-column: span 12;
  }

  .topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .logo {
    justify-self: start;
  }

  .primary-nav {
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .rg-banner-grid {
    grid-template-columns: 1fr;
  }

  .compliance-banner--footer-wide {
    grid-template-columns: 1fr;
  }

  .compliance-banner__icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  .hero-lab__stat-row {
    grid-template-columns: 1fr;
  }

  .chip-icon {
    opacity: 0.45;
  }

  .brand-logo {
    height: 60px;
    max-width: 240px;
  }

  .brand-logo-wrap {
    min-height: 88px;
  }

  .reg-logo {
    height: 64px;
    max-width: 200px;
  }

  .reg-links--large .reg-logo {
    height: 68px;
    max-width: 220px;
  }
}

/* Statisk HTML: korttitler og hjælpere */
.casino-card__title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.casino-card--featured .casino-card__title {
  font-size: 1.15rem;
}

.casino-deck--grid-spaced {
  margin-top: 1rem;
}

.panel-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.panel-note--last {
  margin-bottom: 0 !important;
}
