@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Unbounded:wght@500;600;700;800&display=swap');

:root {
  --ink: #10131a;
  --ink-soft: #2a3140;
  --paper: #e8ecf1;
  --paper-hot: #f7f8fa;
  --line: #c5ccd6;
  --muted: #5e6778;
  --signal: #ff4f1a;
  --signal-deep: #d63a0c;
  --aqua: #00b3a6;
  --aqua-deep: #008f85;
  --night: #0a0c10;
  --night-2: #151922;
  --glass: rgba(10, 12, 16, 0.62);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 179, 166, 0.08), transparent 42%),
    radial-gradient(circle at 100% 12%, rgba(255, 79, 26, 0.07), transparent 38%),
    linear-gradient(180deg, var(--paper) 0%, #dfe5ec 100%);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--night);
  color: #c9d0db;
  font-size: 0.78rem;
  border-bottom: 3px solid var(--signal);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  text-align: center;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  flex-shrink: 0;
}

.topbar__text {
  color: #aeb6c4;
}

.topbar__text strong {
  color: #fff;
  font-weight: 700;
}

.navbar {
  background: var(--paper-hot);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--ink);
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
  position: relative;
}

.brand__icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--aqua);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.brand__icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: var(--ink);
  position: relative;
  z-index: 1;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--aqua-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.7rem 0.95rem;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--ink);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: #f4f6f8;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.78) 42%, rgba(10, 12, 16, 0.35) 72%, rgba(10, 12, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.45), transparent 55%);
}

.hero__shape {
  position: absolute;
  right: -4%;
  top: -20%;
  width: min(42vw, 420px);
  height: 140%;
  background: linear-gradient(180deg, rgba(0, 179, 166, 0.22), rgba(255, 79, 26, 0.12));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 2.6rem 0 2.8rem;
  max-width: 38rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.9rem;
}

.hero__eyebrow::before {
  content: '';
  width: 1.6rem;
  height: 3px;
  background: var(--signal);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--signal);
}

.hero h2 {
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  color: #c5cdd8;
  max-width: 34rem;
}

.hero__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 18px;
  background: var(--paper);
  clip-path: polygon(0 100%, 0 40%, 8% 100%, 16% 35%, 24% 100%, 32% 45%, 40% 100%, 48% 30%, 56% 100%, 64% 50%, 72% 100%, 80% 38%, 88% 100%, 96% 42%, 100% 100%);
  z-index: 3;
}

.site-main {
  padding: 2.25rem 0 3.25rem;
}

.listing__head {
  margin-bottom: 1.6rem;
  max-width: 38rem;
}

.listing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 0.55rem;
}

.listing__eyebrow::before {
  content: '';
  width: 1.35rem;
  height: 3px;
  background: var(--signal);
}

.listing__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.listing__lead {
  color: var(--muted);
  font-size: 1rem;
}

.listing__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  background: var(--paper-hot);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(225deg, rgba(0, 179, 166, 0.12), transparent 68%);
  pointer-events: none;
}

.offer:nth-child(1) {
  border-left-color: var(--signal);
}

.offer:nth-child(2) {
  border-left-color: var(--aqua);
}

.offer:nth-child(3) {
  border-left-color: #3d4a63;
}

.offer__row {
  display: grid;
  grid-template-columns: 3.4rem 5.5rem minmax(8rem, 1.1fr) minmax(10rem, 1.5fr) 5.5rem auto;
  align-items: center;
  gap: 1rem 1.15rem;
  padding: 1.05rem 1.15rem 0.95rem;
  position: relative;
  z-index: 1;
}

.offer__rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.offer__logo {
  width: 5.5rem;
  height: 3.4rem;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 0.35rem;
}

.offer__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.28rem;
}

.offer__name strong,
.offer__bonus strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.offer__name strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.offer__score strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.offer__score em {
  font-style: normal;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--signal-deep);
  line-height: 1;
}

.offer__cta {
  justify-self: end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-visit:hover {
  background: var(--signal);
  color: #fff;
}

.offer__disclaimer {
  border-top: 1px dashed var(--line);
  background: rgba(16, 19, 26, 0.03);
  padding: 0.65rem 1.15rem 0.75rem;
  position: relative;
  z-index: 1;
}

.offer__disclaimer p {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.how {
  margin-top: 3rem;
}

.how__head {
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

.how__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.how__item {
  background: var(--paper-hot);
  border: 1px solid var(--line);
  border-top: 3px solid var(--aqua);
  padding: 1.25rem 1.15rem 1.35rem;
}

.how__item:nth-child(2) {
  border-top-color: var(--signal);
}

.how__item:nth-child(3) {
  border-top-color: #3d4a63;
}

.how__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--aqua-deep);
  margin-bottom: 0.7rem;
}

.how__item h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.how__item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.why {
  margin-top: 2.5rem;
}

.why__panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--night);
  color: #c5cdd8;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.why__panel::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: linear-gradient(225deg, rgba(255, 79, 26, 0.28), transparent 70%);
  pointer-events: none;
}

.why__copy {
  position: relative;
  z-index: 1;
}

.why__copy .listing__eyebrow {
  color: var(--aqua);
}

.why__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.65rem;
}

.why__copy p {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 34rem;
}

.why__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.why__list li {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--signal);
}

.play-safe {
  margin-top: 2.5rem;
}

.play-safe__inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.2rem;
  background: var(--paper-hot);
  border: 1px solid var(--line);
  border-left: 4px solid var(--signal);
}

.play-safe__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.play-safe__inner h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.play-safe__inner p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.play-safe__link {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-deep);
  border-bottom: 2px solid var(--signal);
  padding-bottom: 0.15rem;
  white-space: nowrap;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(10, 12, 16, 0.94), rgba(21, 25, 34, 0.88)),
    url('/assets/images/hero-bg.jpg') center / cover no-repeat;
  color: #f4f6f8;
  padding: 2.1rem 0 2.2rem;
  border-bottom: 3px solid var(--signal);
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.7rem;
}

.page-hero__eyebrow::before {
  content: '';
  width: 1.35rem;
  height: 3px;
  background: var(--signal);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.55rem;
}

.page-hero p {
  max-width: 38rem;
  color: #c5cdd8;
  font-size: 1rem;
  line-height: 1.55;
}

.page-content {
  padding: 2.25rem 0 3rem;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 1.75rem 0 0.65rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.prose p {
  margin-bottom: 0.9rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  color: var(--aqua-deep);
  text-decoration: underline;
}

.prose strong {
  color: var(--ink);
  font-weight: 700;
}

.contact-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.2rem;
  background: var(--paper-hot);
  border: 1px solid var(--line);
  border-left: 4px solid var(--aqua);
  max-width: 28rem;
}

.contact-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-card a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.contact-card a:hover {
  color: var(--signal-deep);
}

.site-footer {
  background: var(--night);
  color: #8e97a8;
  padding: 2.4rem 0 1.4rem;
  font-size: 0.86rem;
  border-top: 3px solid var(--aqua);
  margin-top: 0.5rem;
}

.footer-safe {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-safe h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #f0f2f5;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.footer-safe p {
  line-height: 1.55;
  font-size: 0.88rem;
}

.footer-safe strong {
  color: #fff;
  font-family: var(--font-body);
  font-size: inherit;
  letter-spacing: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-badges__item {
  display: grid;
  place-items: center;
  width: 7.2rem;
  height: 3.2rem;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-badges__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer .brand__name {
  color: #f0f2f5;
}

.brand--footer .brand__tag {
  color: var(--aqua);
}

.footer-brand p {
  margin-top: 0.85rem;
  max-width: 16rem;
  line-height: 1.5;
  font-size: 0.88rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0f2f5;
  margin-bottom: 0.85rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: #a7b0c0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-disclosure {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--aqua);
  margin-bottom: 1.1rem;
}

.footer-disclosure p {
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-disclosure strong {
  color: #f0f2f5;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-age {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-age__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.footer-age p {
  font-size: 0.82rem;
  line-height: 1.5;
  padding-top: 0.2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: #7d8798;
}

body.is-locked {
  overflow: hidden;
}

.age-gate,
.age-block {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 8, 12, 0.88);
}

.age-gate[hidden],
.age-block[hidden],
.cookie-bar[hidden] {
  display: none !important;
}

.age-gate__panel,
.age-block__panel {
  width: min(100%, 420px);
  background: var(--paper-hot);
  border: 1px solid var(--line);
  border-top: 4px solid var(--signal);
  padding: 1.6rem 1.4rem 1.35rem;
  text-align: center;
}

.age-gate__badge,
.age-block__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.age-gate__panel h2,
.age-block__panel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.age-gate__panel p,
.age-block__panel p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.age-gate__actions {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.age-gate__btn {
  min-height: 2.75rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
}

.age-gate__btn--yes {
  background: var(--ink);
  color: #fff;
}

.age-gate__btn--yes:hover {
  background: var(--signal);
}

.age-gate__btn--no {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.age-gate__note,
.age-block__help {
  font-size: 0.75rem !important;
  margin-bottom: 0 !important;
}

.age-block__help a {
  color: var(--aqua-deep);
  text-decoration: underline;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: var(--night-2);
  border-top: 3px solid var(--aqua);
  padding: 0.95rem 0;
  color: #c5cdd8;
}

.cookie-bar__inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-bar__inner p {
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 46rem;
}

.cookie-bar__inner a {
  color: var(--aqua);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-bar__btn {
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  border: 0;
  cursor: pointer;
  background: var(--aqua);
  color: var(--night);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-bar__btn:hover {
  background: #19c9bb;
}

.cookie-bar__link {
  font-size: 0.82rem;
  color: #aeb6c4;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .how__grid {
    grid-template-columns: 1fr;
  }

  .why__panel,
  .footer-safe,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    justify-content: flex-start;
  }

  .offer__row {
    grid-template-columns: 3rem 5rem 1fr auto;
    grid-template-areas:
      "rank logo name cta"
      "rank logo bonus cta"
      "score score score score";
  }

  .offer__rank { grid-area: rank; }
  .offer__logo { grid-area: logo; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__score {
    grid-area: score;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .offer__score .offer__label { margin-bottom: 0; }
  .offer__cta {
    grid-area: cta;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .topbar__inner {
    flex-wrap: wrap;
    padding: 0.6rem 0;
  }

  .topbar__text {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.65rem 1rem 1rem;
    background: var(--paper-hot);
    border-bottom: 2px solid var(--ink);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem 0.75rem;
    border-left: 3px solid transparent;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.is-active,
  .nav-menu a:hover {
    border-left-color: var(--signal);
    background: rgba(255, 79, 26, 0.06);
  }

  .hero {
    min-height: 250px;
  }

  .hero__inner {
    padding: 2.1rem 0 2.4rem;
  }

  .hero__shape {
    opacity: 0.55;
    width: 55vw;
  }

  .offer__row {
    grid-template-columns: 2.6rem 4.4rem 1fr;
    grid-template-areas:
      "rank logo name"
      "rank logo bonus"
      "score score score"
      "cta cta cta";
    gap: 0.7rem 0.85rem;
    padding: 1rem 0.9rem 0.85rem;
  }

  .offer__rank { grid-area: rank; font-size: 1.15rem; }
  .offer__logo { grid-area: logo; width: 4.4rem; height: 2.9rem; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__score {
    grid-area: score;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.7rem;
    background: rgba(16, 19, 26, 0.04);
    border: 1px solid var(--line);
  }
  .offer__score .offer__label { margin-bottom: 0; }
  .offer__cta {
    grid-area: cta;
    justify-self: stretch;
  }
  .btn-visit {
    width: 100%;
    clip-path: none;
  }

  .offer__disclaimer {
    padding: 0.6rem 0.9rem 0.7rem;
  }

  .play-safe__inner {
    flex-wrap: wrap;
  }

  .play-safe__link {
    margin-left: 0;
    width: 100%;
  }

  .cookie-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar__actions {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
