@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap");

:root {
  --ink: #071525;
  --navy: #0b1f33;
  --slate: #1a3348;
  --mist: #e8f1f4;
  --fog: #f4f8fa;
  --emerald: #1dbf73;
  --emerald-deep: #149a5a;
  --gold: #d4a84b;
  --gold-soft: #f0d9a0;
  --text: #1c2b36;
  --muted: #5a6f7d;
  --white: #ffffff;
  --line: rgba(11, 31, 51, 0.1);
  --shadow: 0 12px 40px rgba(7, 21, 37, 0.12);
  --radius: 14px;
  --max: 1180px;
  --topbar-h: 36px;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--fog);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: var(--mist);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: var(--topbar-h);
  text-align: center;
  padding: 0.45rem 0;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.15rem;
  padding: 0 0.35rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.topbar__text {
  color: rgba(232, 241, 244, 0.92);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  flex-shrink: 0;
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--slate) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(11, 31, 51, 0.22);
}

.brand__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--emerald);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--fog);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--mist);
  border-color: rgba(29, 191, 115, 0.35);
  outline: none;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--navy);
  background: rgba(29, 191, 115, 0.1);
  outline: none;
}

.nav-menu a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--slate));
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(29, 191, 115, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(212, 168, 75, 0.14), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, #12304a 48%, #0d2438 100%);
  color: var(--white);
  padding: 2.75rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(29, 191, 115, 0.16);
  border: 1px solid rgba(29, 191, 115, 0.35);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.98rem, 1.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(232, 241, 244, 0.88);
  max-width: 560px;
}

.site-main {
  flex: 1;
}

.listing {
  padding: 2.75rem 0 3.5rem;
  background:
    linear-gradient(180deg, #eef4f7 0%, var(--fog) 28%, var(--fog) 100%);
}

.listing__head {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.listing__head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.listing__head p {
  color: var(--muted);
  font-size: 0.98rem;
}

.listing__grid {
  display: grid;
  grid-template-columns: 56px 110px minmax(140px, 1.1fr) minmax(180px, 1.4fr) 84px 150px;
  gap: 0.85rem 1rem;
  align-items: center;
}

.listing__grid--labels {
  margin-bottom: 0.65rem;
  padding: 0 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer {
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 10px 28px rgba(7, 21, 37, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer:hover {
  border-color: rgba(29, 191, 115, 0.35);
  box-shadow: 0 14px 34px rgba(7, 21, 37, 0.1);
}

.offer--featured {
  border-color: rgba(212, 168, 75, 0.45);
  background:
    linear-gradient(135deg, rgba(212, 168, 75, 0.08), transparent 42%),
    var(--white);
  box-shadow: 0 14px 36px rgba(212, 168, 75, 0.12);
}

.offer__row {
  padding: 1rem 1.15rem;
}

.offer__rank {
  display: flex;
  justify-content: center;
}

.offer__rank-num {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(160deg, #e8f1f4, #d7e6ec);
}

.offer--featured .offer__rank-num {
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), #e8c56a);
}

.offer__logo {
  width: 110px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0f2740, #1a3a55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}

.offer__name h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.25;
}

.offer__label {
  display: inline-flex;
  margin-top: 0.3rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.offer__bonus-value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--emerald-deep);
  line-height: 1.3;
}

.offer__bonus-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.offer__score {
  display: flex;
  justify-content: center;
}

.score-ring {
  --score: 9;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 59%),
    conic-gradient(var(--emerald) calc(var(--score) * 10%), #d8e4ea 0);
  box-shadow: inset 0 0 0 1px rgba(11, 31, 51, 0.06);
}

.score-ring span {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.offer__cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  box-shadow: 0 8px 18px rgba(29, 191, 115, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(29, 191, 115, 0.36);
  outline: none;
}

.offer__disclaimer {
  padding: 0.7rem 1.15rem 0.85rem;
  border-top: 1px dashed rgba(11, 31, 51, 0.12);
  background: linear-gradient(90deg, rgba(11, 31, 51, 0.03), rgba(29, 191, 115, 0.04));
}

.offer__disclaimer p {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(29, 191, 115, 0.16), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, #12304a 48%, #0d2438 100%);
  color: var(--white);
  padding: 2.25rem 0 2.4rem;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.page-hero p {
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(232, 241, 244, 0.88);
  max-width: 560px;
}

.page-content {
  padding: 2.5rem 0 3.25rem;
}

.page-content__wrap {
  max-width: 820px;
}

.page-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 1.75rem 0 0.7rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  margin: 1.25rem 0 0.5rem;
}

.page-content p,
.page-content li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.page-content p + p {
  margin-top: 0.85rem;
}

.page-content ul,
.page-content ol {
  margin: 0.75rem 0 1rem 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content a {
  color: var(--emerald-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover,
.page-content a:focus-visible {
  color: var(--navy);
  outline: none;
}

.content-card {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: 0 10px 28px rgba(7, 21, 37, 0.05);
}

.content-card--accent {
  background: linear-gradient(135deg, rgba(29, 191, 115, 0.08), rgba(255, 255, 255, 0.95));
  border-color: rgba(29, 191, 115, 0.22);
}

.content-card strong {
  color: var(--navy);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.faq-item {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(11, 31, 51, 0.08);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.platform-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.platform-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(11, 31, 51, 0.08);
}

.platform-point__num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), #e8c56a);
}

.platform-point h3 {
  margin: 0 0 0.3rem;
}

.platform-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.2);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--gold-soft) !important;
  filter: brightness(1.05);
}

.site-footer {
  margin-top: auto;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(29, 191, 115, 0.12), transparent 55%),
    linear-gradient(180deg, #0a1a2b 0%, var(--ink) 100%);
  color: rgba(232, 241, 244, 0.78);
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer strong {
  color: var(--white);
  font-weight: 700;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--emerald);
  outline: none;
}

.footer-age {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid rgba(212, 168, 75, 0.28);
}

.footer-age__badge {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), #e8c56a);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.25), 0 8px 18px rgba(212, 168, 75, 0.25);
}

.footer-age p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(232, 241, 244, 0.9);
}

.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(255, 255, 255, 0.08);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 48px;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-badge:hover,
.footer-badge:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(29, 191, 115, 0.35);
  outline: none;
}

.footer-badge img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 320px;
}

.brand--footer .brand__name {
  color: var(--white);
}

.brand--footer .brand__tag {
  color: var(--emerald);
}

.footer-col h3 {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(232, 241, 244, 0.82);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--emerald);
}

.footer-disclosure,
.footer-responsible {
  margin-bottom: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-disclosure {
  background: rgba(29, 191, 115, 0.08);
  border: 1px solid rgba(29, 191, 115, 0.18);
}

.footer-responsible {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

body.is-locked {
  overflow: hidden;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 21, 37, 0.78);
}

.overlay[hidden],
.cookie-consent[hidden] {
  display: none !important;
}

.overlay__card {
  width: min(100%, 440px);
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(29, 191, 115, 0.14), transparent 55%),
    var(--white);
  box-shadow: 0 24px 60px rgba(7, 21, 37, 0.35);
  text-align: center;
}

.overlay__card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.overlay__card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.age-gate__badge,
.age-restricted__icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), #e8c56a);
  box-shadow: 0 10px 24px rgba(212, 168, 75, 0.35);
}

.age-restricted__icon {
  background: linear-gradient(145deg, #d95b5b, #b83d3d);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(184, 61, 61, 0.3);
}

.age-restricted__help {
  font-size: 0.85rem !important;
}

.age-gate__actions,
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  box-shadow: 0 8px 18px rgba(29, 191, 115, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
  outline: none;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
}

.cookie-consent__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f2740, #12324d);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(7, 21, 37, 0.4);
  color: rgba(232, 241, 244, 0.9);
}

.cookie-consent__copy {
  flex: 1;
}

.cookie-consent__copy h2 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cookie-consent__copy p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(232, 241, 244, 0.82);
}

.cookie-consent__copy a {
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-consent__actions {
  flex-shrink: 0;
  margin-top: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .listing__grid--labels {
    display: none;
  }

  .listing__grid,
  .offer__row {
    grid-template-columns: 48px 96px 1fr;
    grid-template-areas:
      "rank logo name"
      "bonus bonus bonus"
      "score score cta";
  }

  .offer__rank { grid-area: rank; }
  .offer__logo { grid-area: logo; width: 96px; height: 50px; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__score { grid-area: score; justify-content: flex-start; }
  .offer__cta { grid-area: cta; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions .btn-primary,
  .cookie-consent__actions .btn-secondary {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .topbar__inner {
    flex-wrap: wrap;
    padding: 0.55rem 0;
  }

  .topbar__text {
    font-size: 0.75rem;
  }

  .brand__tag {
    display: none;
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .hero {
    padding: 2.1rem 0 2.35rem;
  }

  .listing {
    padding: 2rem 0 2.75rem;
  }

  .listing__grid,
  .offer__row {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "rank name"
      "logo logo"
      "bonus bonus"
      "score cta";
    gap: 0.75rem;
  }

  .offer__row {
    padding: 0.95rem 0.9rem;
  }

  .offer__logo {
    width: 100%;
    max-width: 160px;
    height: 54px;
  }

  .offer__cta {
    justify-content: stretch;
  }

  .btn-visit {
    width: 100%;
  }

  .offer__disclaimer {
    padding: 0.65rem 0.9rem 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    justify-content: center;
  }

  .age-gate__actions {
    flex-direction: column;
  }

  .age-gate__actions .btn-primary,
  .age-gate__actions .btn-secondary {
    width: 100%;
  }

  .cookie-consent {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }
}
