:root {
  --s7dh-bg-1: #020617;
  --s7dh-bg-2: #050b1f;
  --s7dh-bg-3: #06112a;
  --s7dh-accent-green: #34d399;
  --s7dh-accent-violet: #a78bfa;
  --s7dh-accent-cyan: #22d3ee;
  --s7dh-text: #e2e8f0;
  --s7dh-muted: #94a3b8;
  --s7dh-surface: rgba(255, 255, 255, 0.05);
  --s7dh-border: rgba(255, 255, 255, 0.1);
  --s7dh-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --s7dh-cta: linear-gradient(135deg, #34d399, #22d3ee, #a78bfa);
  --s7dh-cta-text: #020617;
  --s7dh-max: 1180px;
  --s7dh-cookie-h: 48px;
}

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

html {
  scroll-behavior: auto;
}

html:not(.s7dh-age-ls):not(:has(#s7dh-age-ok:checked)) {
  overflow: hidden !important;
}

.s7dh-modal-state {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  appearance: none;
}

label.s7dh-cta-btn,
label.s7dh-ghost-btn {
  cursor: pointer;
}

html:has(#s7dh-age-ok:checked) .s7dh-age-overlay {
  display: none !important;
}

html:has(#s7dh-cookie-ok:checked) .s7dh-cookie-banner {
  display: none !important;
}

html.s7dh-age-ls {
  overflow: auto !important;
}

html.s7dh-age-ls .s7dh-age-overlay {
  display: none !important;
}

html.s7dh-cookie-ls .s7dh-cookie-banner {
  display: none !important;
}

html.s7dh-cookie-ls body:has(#s7dh-cookie-ok:not(:checked)) .s7dh-header {
  top: 0 !important;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--s7dh-text);
  background:
    radial-gradient(circle at top, rgba(52, 211, 153, 0.08), transparent 26%),
    linear-gradient(
      160deg,
      var(--s7dh-bg-1),
      var(--s7dh-bg-2) 52%,
      var(--s7dh-bg-3)
    );
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.s7dh-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.s7dh-aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.s7dh-aurora-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(52, 211, 153, 0.18) 0%,
    transparent 70%
  );
  top: -100px;
  left: -150px;
  animation: s7dhBlob1 18s ease-in-out infinite alternate;
}

.s7dh-aurora-blob-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(167, 139, 250, 0.14) 0%,
    transparent 70%
  );
  top: 30%;
  right: -100px;
  animation: s7dhBlob2 22s ease-in-out infinite alternate;
}

.s7dh-aurora-blob-3 {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(34, 211, 238, 0.16) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: 40%;
  animation: s7dhBlob3 26s ease-in-out infinite alternate;
}

@keyframes s7dhBlob1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(80px, 60px) scale(1.15);
  }
}

@keyframes s7dhBlob2 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-60px, 80px) scale(1.2);
  }
}

@keyframes s7dhBlob3 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, -50px) scale(1.1);
  }
}

.s7dh-container {
  width: min(calc(100% - 32px), var(--s7dh-max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.s7dh-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.s7dh-header {
  position: sticky;
  top: 16px;
  margin: 16px auto;
  max-width: 900px;
  background: rgba(5, 11, 31, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 12px 28px;
  z-index: 100;
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

body:has(#s7dh-cookie-ok:not(:checked)) .s7dh-header {
  top: var(--s7dh-cookie-h, 48px);
}

.s7dh-header.s7dh-header--compact {
  padding: 8px 22px;
  background: rgba(5, 11, 31, 0.82);
}

.s7dh-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.s7dh-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.s7dh-brand img {
  width: 38px;
  height: 38px;
}

.s7dh-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--s7dh-text);
}

.s7dh-nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--s7dh-muted);
  position: static;
  width: auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.s7dh-nav-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.s7dh-nav-links a:hover,
.s7dh-nav-links a:focus-visible,
.s7dh-footer-links a:hover,
.s7dh-footer-links a:focus-visible,
.s7dh-inline-link:hover,
.s7dh-inline-link:focus-visible {
  color: #ffffff;
}

.s7dh-main-nav {
  position: relative;
  flex: 1;
  min-width: 0;
}

.s7dh-section {
  padding: 72px 0;
}

.s7dh-hero {
  padding-top: 44px;
}

.s7dh-hero-panel {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.s7dh-eyebrow,
.s7dh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--s7dh-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.s7dh-hero h1 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  background: linear-gradient(135deg, #34d399 0%, #22d3ee 45%, #a78bfa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.s7dh-body-copy,
.s7dh-legal-copy p,
.s7dh-card-copy,
.s7dh-guide-copy {
  color: var(--s7dh-text);
  line-height: 1.75;
  font-size: 1.02rem;
}

.s7dh-subline {
  margin: 0 auto 24px;
  max-width: 58ch;
  color: var(--s7dh-muted);
  line-height: 1.7;
  font-size: 1.06rem;
}

.s7dh-trust-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 28px;
}

.s7dh-trust-pill,
.s7dh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--s7dh-text);
  font-size: 0.92rem;
}

.s7dh-cta-btn,
.s7dh-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.s7dh-cta-btn {
  color: var(--s7dh-cta-text);
  background: var(--s7dh-cta);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
}

.s7dh-ghost-btn {
  color: var(--s7dh-text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.s7dh-cta-btn:hover,
.s7dh-ghost-btn:hover {
  transform: translateY(-2px);
}

.s7dh-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.s7dh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.s7dh-section h2,
.s7dh-legal-copy h1 {
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  color: #e2e8f0;
  line-height: 1.1;
}

.s7dh-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.s7dh-section-head p {
  margin: 0;
  color: var(--s7dh-muted);
  line-height: 1.7;
}

.s7dh-compliance-strip {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
}

.s7dh-compliance-strip p {
  margin: 4px 0;
  color: var(--s7dh-text);
  font-size: 0.95rem;
}

.s7dh-score-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.s7dh-score-table th,
.s7dh-score-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.s7dh-score-table th {
  color: var(--s7dh-muted);
  font-weight: 600;
}

.s7dh-score-table tr:last-child td {
  border-bottom: 0;
  font-weight: 700;
}

.s7dh-stat-stack {
  display: grid;
  gap: 16px;
}

.s7dh-stat-card {
  padding: 22px;
}

.s7dh-stat-number {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.s7dh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(0, 280px));
  gap: 24px;
}

.s7dh-card-grid > * {
  min-width: 0;
}

.s7dh-casino-card {
  padding: 22px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}

.s7dh-casino-card:hover {
  border-color: rgba(52, 211, 153, 0.32);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.42);
}

.s7dh-logo-orb {
  border-radius: 50%;

  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

.s7dh-logo-container {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;

  overflow: hidden;
  width: 100%;
  height: 100%;
}

.s7dh-logo-orb img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.s7dh-brand-meta {
  min-width: 0;
  overflow: hidden;
}

.s7dh-card-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.14);
  color: #d1fae5;
  font-size: 0.85rem;
  font-weight: 700;
}

.s7dh-rating-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0 10px;
}

.s7dh-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.s7dh-rating small {
  font-size: 0.95rem;
  color: var(--s7dh-muted);
}

.s7dh-meta-line {
  color: var(--s7dh-muted);
  font-size: 0.94rem;
}

.s7dh-offer {
  margin: 12px 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.55;
}

.s7dh-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.s7dh-pill {
  padding: 7px 10px;
  font-size: 0.82rem;
}

.s7dh-card-copy {
  margin: 10px 0 16px;
  color: var(--s7dh-muted);
  flex: 1;
}

.s7dh-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.s7dh-card-actions span {
  color: var(--s7dh-muted);
  font-size: 0.82rem;
}

.s7dh-note {
  margin-top: 18px;
  color: var(--s7dh-muted);
  font-size: 0.92rem;
}

.s7dh-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.s7dh-badge-card {
  padding: 22px;
}

.s7dh-badge-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: #d1fae5;
}

.s7dh-badge-card h3,
.s7dh-legal-section h2 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
}

.s7dh-badge-card p,
.s7dh-legal-section p,
.s7dh-legal-section li {
  color: var(--s7dh-muted);
  line-height: 1.7;
}

.s7dh-guide {
  padding: 30px;
}

.s7dh-guide-copy a,
.s7dh-legal-section a,
.s7dh-footer a,
.s7dh-rg-list a {
  color: #bbf7d0;
}

.s7dh-rg-panel {
  padding: 30px;
}

.s7dh-rg-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 14px;
}

.s7dh-rg-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--s7dh-text);
}

.s7dh-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.s7dh-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  color: #fecaca;
  font-weight: 700;
}

.s7dh-footer {
  position: relative;
  z-index: 1;
  padding: 30px 0 90px;
}

.s7dh-footer-wrap {
  padding: 28px;
}

.s7dh-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}

.s7dh-footer h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.s7dh-footer p,
.s7dh-footer li {
  color: var(--s7dh-muted);
  line-height: 1.7;
}

.s7dh-footer-links,
.s7dh-footer-plain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.s7dh-footer-base {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--s7dh-muted);
  font-size: 0.92rem;
}

.s7dh-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483645;
  padding: 14px 16px;
  display: none;
}

.s7dh-cookie-banner.s7dh-cookie-banner--visible {
  display: block;
}

.s7dh-cookie-inner {
  width: min(calc(100% - 24px), 860px);
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.s7dh-cookie-actions {
  display: flex;
  gap: 10px;
}

/* ── Age overlay — BULLETPROOF (flex-column) ───── */
.s7dh-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483646 !important;
  background: rgba(2, 6, 23, 0.97) !important;
  overflow: hidden !important;
}

.s7dh-age-box {
  margin-block: auto;
  max-width: 440px;
  width: 90%;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  text-align: center;
  color: #e2e8f0;
}

.s7dh-age-box h2 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
}

.s7dh-age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.s7dh-legal-hero {
  padding-top: 30px;
}

.s7dh-legal-copy {
  padding: 34px;
}

.s7dh-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.s7dh-legal-section {
  margin-top: 28px;
}

.s7dh-legal-section ul {
  margin: 0;
  padding-left: 18px;
}

.s7dh-callout {
  margin: 18px 0;
  padding: 18px;
  border-left: 4px solid rgba(52, 211, 153, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.s7dh-two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .s7dh-grid-2,
  .s7dh-grid-3,
  .s7dh-footer-grid {
    grid-template-columns: 1fr;
  }

  .s7dh-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .s7dh-nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(5, 11, 31, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .s7dh-nav-menu.is-open {
    display: flex;
  }

  .s7dh-nav-links {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .s7dh-nav-links a {
    padding: 10px 0;
  }

  .s7dh-header {
    border-radius: 30px;
  }
}

@media (max-width: 720px) {
  .s7dh-section {
    padding: 56px 0;
  }

  .s7dh-hero-panel,
  .s7dh-guide,
  .s7dh-rg-panel,
  .s7dh-footer-wrap,
  .s7dh-legal-copy {
    padding: 24px;
  }

  .s7dh-two-col-list {
    grid-template-columns: 1fr;
  }
}

/* ── Ultra-narrow ≤550px ───────────────────────── */
@media (max-width: 550px) {
  .s7dh-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .s7dh-card {
    min-width: 0 !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .s7dh-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
  }
  .s7dh-hero .s7dh-trust-bar {
    flex-direction: column;
    gap: 8px;
  }
  .s7dh-section {
    padding: 48px 16px !important;
  }
  .s7dh-nav-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    top: 100%;
    border-radius: 0 0 16px 16px;
  }
  .s7dh-header-inner {
    position: relative !important;
  }
  .s7dh-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ── Ultra-narrow ≤380px ───────────────────────── */
@media (max-width: 380px) {
  .s7dh-card {
    padding: 14px !important;
  }
  .s7dh-cta-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 14px 12px !important;
  }

  .s7dh-hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }
}
