:root {
  --lp-ink: #12151c;
  --lp-ink-soft: #2a3140;
  --lp-mint: #3dffa8;
  --lp-mint-dim: #1ecf82;
  --lp-coral: #ff5c4d;
  --lp-coral-deep: #e04336;
  --lp-fog: #e6eaf2;
  --lp-paper: #f7f8fc;
  --lp-white: #ffffff;
  --lp-muted: #5c6678;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--lp-ink);
  background: var(--lp-fog);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.age-locked {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(255, 92, 77, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 20% 80%, rgba(61, 255, 168, 0.18) 0%, transparent 50%),
    rgba(14, 17, 24, 0.94);
}

.age-overlay[hidden] {
  display: none;
}

.age-card,
.age-restricted {
  width: 100%;
  max-width: 440px;
  padding: 2rem 1.75rem;
  background: var(--lp-paper);
  border: 2px solid var(--lp-ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--lp-mint);
  text-align: center;
}

.age-restricted {
  box-shadow: 8px 8px 0 var(--lp-coral);
}

.age-card[hidden],
.age-restricted[hidden] {
  display: none;
}

.age-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--lp-white);
  background: var(--lp-coral);
  border: 2px solid var(--lp-ink);
  border-radius: 50%;
}

.age-card-badge-warn {
  background: var(--lp-ink);
  color: var(--lp-coral);
}

.age-card h2,
.age-restricted h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.age-card p,
.age-restricted p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--lp-ink-soft);
}

.age-restricted-note {
  font-size: 0.82rem !important;
  color: var(--lp-muted) !important;
  margin-bottom: 0 !important;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.age-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  border: 2px solid var(--lp-ink);
  border-radius: 999px;
  cursor: pointer;
}

.age-btn-yes {
  background: var(--lp-mint);
  color: var(--lp-ink);
  box-shadow: 3px 3px 0 var(--lp-ink);
}

.age-btn-no {
  background: var(--lp-white);
  color: var(--lp-ink);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  padding: 1rem 0;
  background: var(--lp-ink);
  border-top: 3px solid var(--lp-mint);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 0.88rem;
  color: rgba(230, 234, 242, 0.9);
}

.cookie-inner a {
  color: var(--lp-mint);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  border: 2px solid var(--lp-mint);
  border-radius: 999px;
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--lp-mint);
  color: var(--lp-ink);
}

.cookie-btn-essential {
  background: transparent;
  color: var(--lp-mint);
}

.topbar {
  background: var(--lp-ink);
  color: var(--lp-fog);
  padding: 0.6rem 0;
  border-bottom: 3px solid var(--lp-mint);
}

.topbar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-text {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  max-width: 52rem;
}

.topbar-meta {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-mint);
  white-space: nowrap;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  background: var(--lp-coral);
  color: var(--lp-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.site-navbar {
  background: var(--lp-paper);
  padding: 1rem 0;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 21, 28, 0.08);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.brand-logo:hover .brand-text,
.brand-logo:focus .brand-text {
  color: var(--lp-ink-soft);
}

.brand-icon {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}

.brand-icon svg {
  display: block;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--lp-ink);
  letter-spacing: -0.04em;
}

.brand-text span {
  color: var(--lp-coral);
}

.brand-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.custom-toggler {
  border: 2px solid var(--lp-ink);
  border-radius: 10px;
  padding: 0.4rem;
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--lp-mint);
  box-shadow: none;
}

.custom-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--lp-coral);
  outline-offset: 2px;
}

.custom-toggler .toggler-bar {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--lp-ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-pills-custom {
  gap: 0.25rem;
}

.site-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--lp-ink-soft);
  padding: 0.5rem 1.05rem !important;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--lp-ink);
  background: rgba(61, 255, 168, 0.2);
  border-color: rgba(61, 255, 168, 0.55);
}

.site-navbar .nav-link.active {
  background: var(--lp-ink);
  color: var(--lp-mint);
  border-color: var(--lp-ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 2.9rem;
  background: linear-gradient(160deg, #0e1118 0%, #1a2233 42%, #15241f 100%);
  color: var(--lp-white);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 255, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 168, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  top: -80px;
  right: 8%;
  background: rgba(255, 92, 77, 0.35);
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: 5%;
  background: rgba(61, 255, 168, 0.28);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 36rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  color: var(--lp-white);
}

.hero h1::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--lp-mint), var(--lp-coral));
  border-radius: 4px;
}

.hero h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: rgba(230, 234, 242, 0.86);
  margin: 0;
}

.hero-signal {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.signal-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 2px solid rgba(61, 255, 168, 0.35);
  border-radius: 50%;
}

.signal-ring:nth-child(1) {
  width: 100%;
  height: 100%;
}

.signal-ring:nth-child(2) {
  width: 68%;
  height: 68%;
  border-color: rgba(255, 92, 77, 0.45);
}

.signal-ring:nth-child(3) {
  width: 38%;
  height: 38%;
  border-color: rgba(61, 255, 168, 0.7);
}

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--lp-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(61, 255, 168, 0.2);
}

.listing {
  padding: 2.75rem 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(61, 255, 168, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(255, 92, 77, 0.08) 0%, transparent 50%),
    var(--lp-fog);
}

.listing-head {
  margin-bottom: 1.5rem;
}

.listing-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-coral);
}

.listing-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: -0.04em;
  color: var(--lp-ink);
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.offer-block {
  background: var(--lp-white);
  border: 2px solid var(--lp-ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(18, 21, 28, 0.08);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 130px minmax(120px, 1.1fr) minmax(160px, 1.4fr) 100px 170px;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.15rem;
  background:
    linear-gradient(90deg, rgba(61, 255, 168, 0.08) 0%, transparent 18%),
    var(--lp-paper);
}

.offer-col {
  min-width: 0;
}

.offer-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  background: var(--lp-mint);
  border: 2px solid var(--lp-ink);
  border-radius: 14px;
}

.offer-col-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0.35rem 0.5rem;
  background: var(--lp-white);
  border: 1.5px solid rgba(18, 21, 28, 0.12);
  border-radius: 12px;
}

.offer-col-img img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.offer-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  line-height: 1.25;
}

.offer-bonus {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lp-ink);
  line-height: 1.35;
}

.offer-score {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.offer-score span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  color: var(--lp-coral);
  line-height: 1;
}

.offer-col-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 170px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--lp-ink);
  background: var(--lp-mint);
  border: 2px solid var(--lp-ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--lp-ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-visit:hover,
.btn-visit:focus {
  background: var(--lp-coral);
  color: var(--lp-white);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--lp-ink);
}

.offer-disclaimer {
  padding: 0.7rem 1.15rem 0.85rem;
  background: var(--lp-ink);
  border-top: 2px solid var(--lp-ink);
}

.offer-disclaimer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(230, 234, 242, 0.78);
}

.offer-block:nth-child(2) .offer-row {
  background:
    linear-gradient(90deg, rgba(255, 92, 77, 0.08) 0%, transparent 18%),
    var(--lp-paper);
}

.offer-block:nth-child(2) .offer-rank {
  background: var(--lp-coral);
  color: var(--lp-white);
}

.offer-block:nth-child(2) .btn-visit {
  background: var(--lp-ink);
  color: var(--lp-mint);
}

.offer-block:nth-child(2) .btn-visit:hover,
.offer-block:nth-child(2) .btn-visit:focus {
  background: var(--lp-mint);
  color: var(--lp-ink);
}

.offer-block:nth-child(3) .offer-row {
  background:
    linear-gradient(90deg, rgba(18, 21, 28, 0.06) 0%, transparent 18%),
    var(--lp-paper);
}

.offer-block:nth-child(3) .offer-rank {
  background: var(--lp-ink);
  color: var(--lp-mint);
}

.offer-block:nth-child(3) .offer-score span {
  color: var(--lp-ink);
}

.site-footer {
  background: var(--lp-ink);
  color: rgba(230, 234, 242, 0.85);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--lp-mint);
}

.footer-resp {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(61, 255, 168, 0.2);
}

.footer-resp h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--lp-mint);
}

.footer-resp p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 52rem;
}

.footer-age-line,
.footer-bottom-age {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-age-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--lp-white);
  background: var(--lp-coral);
  border: 2px solid var(--lp-mint);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 92, 77, 0.25);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(61, 255, 168, 0.2);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 56px;
  padding: 0.4rem 0.65rem;
  border: 1.5px solid rgba(61, 255, 168, 0.35);
  border-radius: 12px;
}

.footer-badge img {
  display: block;
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-badge-static {
  cursor: default;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-mint);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(230, 234, 242, 0.85);
  transition: color 0.15s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--lp-mint);
}

.footer-brand-col p {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(230, 234, 242, 0.7);
  max-width: 22rem;
}

.footer-brand .brand-text {
  font-size: 1.15rem;
  color: var(--lp-white);
}

.footer-affiliate {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(61, 255, 168, 0.08);
  border: 1px solid rgba(61, 255, 168, 0.22);
  border-radius: 12px;
}

.footer-affiliate p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(230, 234, 242, 0.75);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(61, 255, 168, 0.2);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(230, 234, 242, 0.55);
}

@media (max-width: 1199.98px) {
  .offer-row {
    grid-template-columns: 56px 110px minmax(100px, 1fr) minmax(140px, 1.3fr) 90px 150px;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.65rem;
    background: var(--lp-white);
    border-radius: 16px;
    border: 2px solid var(--lp-ink);
  }

  .site-navbar .nav-link {
    padding: 0.7rem 1rem !important;
    border-radius: 12px;
  }

  .topbar-meta {
    width: 100%;
    text-align: center;
  }

  .topbar-text {
    font-size: 0.74rem;
    justify-content: center;
    text-align: center;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-signal {
    width: 100px;
    height: 100px;
    margin-left: auto;
  }

  .offer-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "num name img"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.85rem 0.75rem;
    padding: 1rem;
  }

  .offer-col-num { grid-area: num; align-self: center; }
  .offer-col-img {
    grid-area: img;
    width: 110px;
    height: 52px;
    justify-self: end;
  }
  .offer-col-name { grid-area: name; align-self: center; }
  .offer-col-bonus {
    grid-area: bonus;
    padding: 0.7rem 0.85rem;
    background: rgba(18, 21, 28, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(18, 21, 28, 0.08);
  }
  .offer-col-score { grid-area: score; align-self: center; }
  .offer-col-cta {
    grid-area: cta;
    justify-content: stretch;
    align-self: center;
  }

  .btn-visit {
    max-width: none;
    min-width: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .brand-text {
    font-size: 1.05rem;
  }

  .brand-icon svg {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 2rem 0 2.25rem;
  }

  .topbar-grid {
    justify-content: center;
  }

  .hero-signal {
    display: none;
  }

  .listing {
    padding: 2rem 0 2.5rem;
  }

  .offer-block {
    box-shadow: 4px 4px 0 rgba(18, 21, 28, 0.08);
    border-radius: 14px;
  }

  .offer-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num img"
      "name name"
      "bonus bonus"
      "score score"
      "cta cta";
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .offer-rank {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
    border-radius: 12px;
  }

  .offer-col-img {
    width: 100%;
    max-width: none;
    height: 56px;
    justify-self: stretch;
  }

  .offer-col-img img {
    max-height: 40px;
  }

  .offer-name {
    font-size: 1.05rem;
  }

  .offer-bonus {
    font-size: 0.9rem;
  }

  .offer-col-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .offer-col-score .offer-label {
    margin-bottom: 0;
  }

  .offer-score {
    margin-left: auto;
  }

  .btn-visit {
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .offer-disclaimer {
    padding: 0.75rem 0.9rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-age-line,
  .footer-bottom-age {
    align-items: flex-start;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 2.4rem;
  background: linear-gradient(160deg, #0e1118 0%, #1a2233 42%, #15241f 100%);
  color: var(--lp-white);
}

.page-hero .hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 255, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 168, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.page-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-mint);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: rgba(230, 234, 242, 0.86);
}

.page-main {
  padding: 2.5rem 0 3.25rem;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(61, 255, 168, 0.1) 0%, transparent 55%),
    var(--lp-fog);
}

.page-panel {
  background: var(--lp-white);
  border: 2px solid var(--lp-ink);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 6px 6px 0 rgba(18, 21, 28, 0.08);
}

.page-panel + .page-panel {
  margin-top: 1.15rem;
}

.page-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
}

.page-panel h3 {
  margin: 1.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
}

.page-panel p,
.page-panel li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--lp-ink-soft);
}

.page-panel p {
  margin: 0 0 0.9rem;
}

.page-panel p:last-child {
  margin-bottom: 0;
}

.page-panel ul {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.page-panel li {
  margin-bottom: 0.4rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  background: var(--lp-mint);
  border: 2px solid var(--lp-ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--lp-ink);
}

.contact-email:hover,
.contact-email:focus {
  background: var(--lp-coral);
  color: var(--lp-white);
}

.page-cta {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.75rem 1.2rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--lp-mint);
  background: var(--lp-ink);
  border: 2px solid var(--lp-ink);
  border-radius: 999px;
}

.page-cta:hover,
.page-cta:focus {
  background: var(--lp-mint);
  color: var(--lp-ink);
}

@media (max-width: 575.98px) {
  .page-panel {
    padding: 1.25rem 1rem;
    border-radius: 14px;
    box-shadow: 4px 4px 0 rgba(18, 21, 28, 0.08);
  }

  .page-main {
    padding: 2rem 0 2.5rem;
  }
}
