:root {
  --ink: #151a24;
  --slate: #2a3344;
  --cobalt: #1a56db;
  --cobalt-deep: #123ea3;
  --sky: #dbe7ff;
  --amber: #e8a017;
  --amber-soft: #fff1cc;
  --stone: #edf1f7;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #667085;
  --line: #d5dde8;
  --shadow: 0 18px 48px rgba(21, 26, 36, 0.1);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--stone) 100%);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--amber-soft);
  color: var(--ink);
  font-size: 0.8rem;
  border-bottom: 2px solid var(--amber);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
}

.topbar-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 1.6rem;
  padding: 0 0.45rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--amber);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.topbar p {
  margin: 0;
  font-weight: 500;
  color: var(--slate);
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 60;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--cobalt);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-tld {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cobalt);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
  z-index: 60;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 1px;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cobalt);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--cobalt-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2.75rem;
  background:
    linear-gradient(135deg, #102a6b 0%, #1a56db 42%, #2f6fff 70%, #f0b429 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 700px;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(21, 26, 36, 0.35);
  border-radius: 6px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.hero h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.98rem, 1.9vw, 1.12rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}

.listing {
  padding: 2.75rem 0 3.5rem;
}

.listing-head {
  margin-bottom: 1.75rem;
  max-width: 640px;
}

.listing-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.65rem;
  background: var(--sky);
  border: 1.5px solid var(--cobalt);
  border-radius: 4px;
  color: var(--cobalt-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.listing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.listing-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(21, 26, 36, 0.12);
  overflow: hidden;
}

.offer-featured {
  border-color: var(--cobalt);
  box-shadow: 5px 5px 0 rgba(26, 86, 219, 0.28);
  background:
    linear-gradient(90deg, rgba(26, 86, 219, 0.06) 0%, var(--white) 28%);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 110px minmax(140px, 1.2fr) minmax(180px, 1.4fr) 88px 150px;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.1rem;
}

.offer-rank span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.offer-featured .offer-rank span {
  background: var(--cobalt);
  color: var(--white);
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.45rem 0.5rem;
  background: linear-gradient(160deg, #1a2130 0%, #0f131b 100%);
  border: 1.5px solid #2c3548;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.offer-logo img {
  width: 100%;
  max-width: 108px;
  height: 48px;
  object-fit: contain;
}

.offer-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.offer-name strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-bonus {
  min-width: 0;
}

.offer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.offer-bonus p {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.35;
}

.offer-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--amber);
  background: var(--amber-soft);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.offer-featured .score-ring {
  border-color: var(--cobalt);
  background: var(--sky);
  color: var(--cobalt-deep);
}

.offer-score .offer-label {
  margin-bottom: 0;
}

.offer-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 2px solid var(--ink);
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
  white-space: nowrap;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  background: var(--cobalt);
  color: var(--white);
  outline: none;
}

.offer-disclaimer {
  padding: 0.7rem 1.1rem 0.85rem;
  border-top: 1px dashed var(--line);
  background: #f3f6fb;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.offer-featured .offer-disclaimer {
  background: rgba(26, 86, 219, 0.06);
  border-top-color: rgba(26, 86, 219, 0.25);
}

@media (max-width: 1100px) {
  .offer-row {
    grid-template-columns: 56px 96px minmax(120px, 1fr) minmax(150px, 1.2fr) 80px 130px;
    gap: 0.7rem 0.75rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    border-bottom: 2px solid var(--ink);
    box-shadow: var(--shadow);
    padding: 0.85rem 1rem 1.15rem;
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 0.85rem;
    border-radius: 6px;
    background: var(--paper);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    background: var(--sky);
    color: var(--cobalt-deep);
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .topbar p {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .hero {
    padding: 1.75rem 0 2rem;
  }

  .hero-copy {
    padding: 1.15rem 1.15rem;
    box-shadow: 4px 4px 0 rgba(21, 26, 36, 0.3);
  }

  .listing {
    padding: 2.1rem 0 2.75rem;
  }

  .offer-row {
    grid-template-columns: 48px 1fr auto;
    grid-template-areas:
      "rank logo score"
      "rank name name"
      "bonus bonus bonus"
      "cta cta cta";
    gap: 0.65rem 0.75rem;
    padding: 0.95rem;
  }

  .offer-rank { grid-area: rank; align-self: start; }
  .offer-logo { grid-area: logo; max-width: 140px; }
  .offer-name { grid-area: name; }
  .offer-bonus { grid-area: bonus; }
  .offer-score { grid-area: score; }
  .offer-cta { grid-area: cta; justify-content: stretch; }

  .offer-rank span {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .score-ring {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
  }

  .btn-visit {
    box-shadow: 2px 2px 0 var(--ink);
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark svg {
    width: 28px;
    height: 28px;
  }

  .navbar {
    min-height: 68px;
  }

  .offer-row {
    grid-template-columns: 42px 1fr auto;
  }

  .offer-disclaimer {
    font-size: 0.68rem;
    padding: 0.65rem 0.9rem 0.8rem;
  }
}

.section {
  padding: 3rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.65rem;
  background: var(--sky);
  border: 1.5px solid var(--cobalt);
  border-radius: 4px;
  color: var(--cobalt-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-head h2,
.trust-copy h2,
.safeplay-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.section-head p,
.trust-copy > p,
.safeplay-inner p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 54ch;
}

.how {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.25rem 1.2rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 rgba(21, 26, 36, 0.12);
}

.step-num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--cobalt);
  letter-spacing: 0.04em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: center;
}

.trust-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--amber);
  border: 1px solid var(--ink);
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.trust-stat {
  padding: 1.1rem 0.9rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--cobalt);
}

.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-stat span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.safeplay {
  padding-top: 0;
}

.safeplay-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(120deg, #102a6b, #1a56db 55%, #2f6fff);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 5px 0 rgba(21, 26, 36, 0.2);
}

.safeplay-inner .section-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--amber-soft);
}

.safeplay-inner h2 {
  color: var(--white);
}

.safeplay-inner p {
  color: rgba(255, 255, 255, 0.88);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.15rem;
  border-radius: 8px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--white);
  color: var(--cobalt-deep);
  outline: none;
}

.btn-outline.dark {
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--white);
}

.btn-outline.dark:hover,
.btn-outline.dark:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  background: #0f131b;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1rem;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #151a24;
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
}

.footer-play {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 620px;
}

.footer-play strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.footer-play p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.45rem 0.65rem;
  background: #1c2433;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-main {
  padding: 2.4rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand-link .brand-name {
  color: var(--white);
}

.footer-brand-link .brand-tld {
  color: var(--amber);
}

.footer-brand > p {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  max-width: 34ch;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--amber);
  outline: none;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem 0 1.6rem;
  background: #0b0e14;
}

.footer-legal p {
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 0.7rem;
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.82);
}

.footer-copy {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600;
}

.age-gate,
.age-block {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(15, 19, 27, 0.82);
}

.age-gate[hidden],
.age-block[hidden],
.cookie-bar[hidden] {
  display: none !important;
}

.age-gate-card,
.age-block-card {
  width: min(100%, 440px);
  padding: 1.6rem 1.45rem;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 8px 8px 0 rgba(21, 26, 36, 0.35);
  text-align: center;
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 1.8rem;
  margin-bottom: 0.85rem;
  padding: 0 0.6rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--amber);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.age-gate-card h2,
.age-block-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.age-gate-card p,
.age-block-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.age-gate-actions {
  display: grid;
  gap: 0.65rem;
}

.age-gate-actions .btn-visit,
.age-gate-actions .btn-outline {
  width: 100%;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1900;
  background: #151a24;
  border-top: 2px solid var(--amber);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
}

.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.cookie-bar p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  max-width: 70ch;
}

.cookie-bar a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-actions .btn-visit,
.cookie-actions .btn-outline {
  min-width: 110px;
}

body.gate-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badges {
    justify-content: flex-start;
  }

  .safeplay-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn-visit,
  .cookie-actions .btn-outline {
    flex: 1;
  }

  .section {
    padding: 2.25rem 0;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.15rem;
  background: linear-gradient(135deg, #102a6b 0%, #1a56db 42%, #2f6fff 70%, #f0b429 100%);
}

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 1.2rem 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(21, 26, 36, 0.35);
  border-radius: 6px;
}

.page-hero-inner .hero-eyebrow {
  margin-bottom: 0.7rem;
}

.page-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.page-hero-inner p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 54ch;
}

.page-content {
  padding: 2.5rem 0 3.25rem;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1.75rem 0 0.65rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--slate);
  margin: 1.25rem 0 0.45rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.prose p + p {
  margin-top: 0.85rem;
}

.prose ul,
.prose ol {
  margin: 0.7rem 0 0.9rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
}

.prose a:hover,
.prose a:focus-visible {
  color: var(--cobalt-deep);
}

.contact-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.3rem;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(21, 26, 36, 0.12);
  max-width: 480px;
}

.contact-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-card a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cobalt);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--cobalt-deep);
  text-decoration: underline;
  outline: none;
}

.blog-list,
.platform-cards {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.blog-card,
.platform-card {
  padding: 1.2rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 rgba(21, 26, 36, 0.1);
}

.blog-card h2,
.platform-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.blog-meta {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--sky);
  color: var(--cobalt-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card p,
.platform-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.platform-card .score-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  font-size: 0.88rem;
}

.platform-card .score-inline strong {
  color: var(--cobalt-deep);
  font-family: var(--font-display);
}

@media (max-width: 860px) {
  .page-hero {
    padding: 1.6rem 0 1.8rem;
  }

  .page-content {
    padding: 1.85rem 0 2.5rem;
  }
}
