:root {
  --ink: #07131f;
  --ink-soft: #122436;
  --mist: #e8eef4;
  --paper: #f5f8fb;
  --teal: #1f9e8f;
  --teal-deep: #147a6e;
  --gold: #c9a35a;
  --muted: #6b7c8f;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 40px rgba(7, 19, 31, 0.18);
  --radius: 14px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 200;
  background: rgba(245, 248, 251, 0.96);
  border-bottom: 1px solid rgba(18, 36, 54, 0.08);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.65rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  z-index: 2;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #12384a 0%, #1f9e8f 58%, #c9a35a 130%);
  box-shadow: 0 8px 20px rgba(31, 158, 143, 0.28);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #f5f8fb;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.brand__tag {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 36, 54, 0.12);
  border-radius: 12px;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  position: relative;
}

.nav-toggle__bars {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
  pointer-events: none;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle__bars span:nth-child(1) {
  top: 0;
}

.nav-toggle__bars span:nth-child(2) {
  top: 5px;
}

.nav-toggle__bars span:nth-child(3) {
  top: 10px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  background: rgba(31, 158, 143, 0.12);
  color: var(--teal-deep);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #f3f7fb;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  z-index: 0;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(5, 14, 24, 0.88) 0%, rgba(7, 28, 40, 0.72) 42%, rgba(8, 42, 38, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.2) 0%, rgba(7, 19, 31, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0 3rem;
  max-width: 44rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 28, 36, 0.45);
  color: #d7ebe7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero__eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 158, 143, 0.25);
}

.hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero h2 {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(232, 238, 244, 0.9);
  max-width: 38rem;
}

.listings {
  padding: 3.2rem 0 3.6rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 158, 143, 0.08), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(201, 163, 90, 0.08), transparent 30%),
    var(--paper);
}

.listings__head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.listings__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listings__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.listings__intro {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
}

.listings__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  background: #fff;
  border: 1px solid rgba(18, 36, 54, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 19, 31, 0.05);
}

.offer--featured {
  border-color: rgba(31, 158, 143, 0.35);
  box-shadow:
    0 14px 34px rgba(31, 158, 143, 0.12),
    0 0 0 1px rgba(201, 163, 90, 0.18);
}

.offer--featured .offer__row {
  background:
    linear-gradient(90deg, rgba(31, 158, 143, 0.08) 0%, rgba(255, 255, 255, 0) 28%),
    #fff;
}

.offer__row {
  display: grid;
  grid-template-columns: 56px 140px minmax(140px, 1.2fr) minmax(160px, 1.3fr) 88px 150px;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.offer__rank {
  display: flex;
  justify-content: center;
}

.offer__rank-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(145deg, #163247 0%, #1f9e8f 100%);
  box-shadow: 0 8px 18px rgba(31, 158, 143, 0.25);
}

.offer--featured .offer__rank-num {
  background: linear-gradient(145deg, #8d6b2a 0%, #c9a35a 55%, #1f9e8f 140%);
  color: #1a1306;
}

.offer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  height: 64px;
  padding: 0.35rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f3f7fa 0%, #e8eef4 100%);
  border: 1px solid rgba(18, 36, 54, 0.06);
  overflow: hidden;
}

.offer__logo img {
  display: block;
  width: 100%;
  max-width: 148px;
  height: 100%;
  max-height: 56px;
  object-fit: contain;
}

.offer__name h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.offer__name p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.offer__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer__bonus strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 800;
}

.offer__score-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 158, 143, 0.1);
  border: 1px solid rgba(31, 158, 143, 0.18);
}

.offer__score-value span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
}

.offer__score-value small {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.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.7rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #147a6e 0%, #1f9e8f 55%, #2bb3a2 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: 0 10px 22px rgba(31, 158, 143, 0.28);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  outline: none;
}

.offer__disclaimer {
  padding: 0.7rem 1.1rem 0.85rem;
  background: #f7fafc;
  border-top: 1px dashed rgba(18, 36, 54, 0.12);
}

.offer__disclaimer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #738496;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #f3f7fb;
  background:
    radial-gradient(circle at 14% 20%, rgba(31, 158, 143, 0.28), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(201, 163, 90, 0.2), transparent 36%),
    linear-gradient(145deg, #07131f 0%, #0d2740 48%, #0a3a34 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 2.4rem 0 2.5rem;
  max-width: 44rem;
}

.page-hero__eyebrow {
  margin: 0 0 0.75rem;
  color: #9fd9d1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  color: rgba(232, 238, 244, 0.88);
  font-size: 1.02rem;
  line-height: 1.65;
}

.page-section {
  padding: 2.6rem 0 3.2rem;
}

.page-panel {
  background: #fff;
  border: 1px solid rgba(18, 36, 54, 0.08);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 28px rgba(7, 19, 31, 0.04);
}

.page-panel + .page-panel {
  margin-top: 1rem;
}

.page-content h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-content h3 {
  margin: 1.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.page-content p,
.page-content li {
  color: #405468;
  line-height: 1.7;
}

.page-content p {
  margin: 0 0 0.95rem;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.page-content li + li {
  margin-top: 0.4rem;
}

.page-content a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-card {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(31, 158, 143, 0.08), rgba(201, 163, 90, 0.08)),
    #f7fafc;
  border: 1px solid rgba(31, 158, 143, 0.14);
}

.contact-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-card a {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-deep);
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-intro {
  margin-bottom: 1rem;
}

.review-card {
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18, 36, 54, 0.08);
  box-shadow: 0 10px 24px rgba(7, 19, 31, 0.04);
}

.review-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.review-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.review-card__score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 158, 143, 0.1);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 800;
}

.review-card__score small {
  color: var(--muted);
  font-size: 0.72rem;
}

.review-card p {
  margin: 0 0 0.7rem;
  color: #405468;
  line-height: 1.65;
}

.review-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: auto;
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 158, 143, 0.16), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(201, 163, 90, 0.12), transparent 28%),
    #07131f;
  color: rgba(232, 238, 244, 0.78);
  padding: 3rem 0 1.6rem;
  font-size: 0.92rem;
}

.site-footer a {
  color: rgba(232, 238, 244, 0.82);
  transition: color 0.15s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

.site-footer strong,
.site-footer h3 {
  color: #fff;
  font-family: var(--font-display);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  margin: 0;
  max-width: 34rem;
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.footer-col h3 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-play {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-play h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.footer-play > p {
  margin: 0 0 1.1rem;
  max-width: 56rem;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 48px;
  padding: 0.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-badge--static {
  pointer-events: none;
}

.footer-affiliate {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-affiliate p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.86rem;
  color: rgba(232, 238, 244, 0.7);
}

.footer-age {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  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: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #c9a35a 0%, #e0c07a 100%);
  color: #1a1306;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 0 4px rgba(201, 163, 90, 0.22);
}

.footer-age p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.86rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(232, 238, 244, 0.58);
}

.footer-bottom p {
  margin: 0;
}

.age-gate,
.age-block {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 10, 16, 0.78);
  backdrop-filter: blur(8px);
}

.age-gate[hidden],
.age-block[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.age-gate__dialog,
.age-block__panel {
  width: min(100%, 440px);
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 158, 143, 0.18), transparent 42%),
    #0d1b29;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  color: #e8eef4;
  text-align: center;
}

.age-gate__badge,
.age-block__badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #c9a35a 0%, #e0c07a 100%);
  color: #1a1306;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 0 0 5px rgba(201, 163, 90, 0.2);
}

.age-gate__dialog h2,
.age-block__panel h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.age-gate__dialog p,
.age-block__panel p {
  margin: 0 0 1.35rem;
  line-height: 1.6;
  color: rgba(232, 238, 244, 0.82);
}

.age-gate__actions {
  display: grid;
  gap: 0.65rem;
}

.age-gate__btn {
  min-height: 48px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
}

.age-gate__btn--yes {
  background: linear-gradient(135deg, #147a6e 0%, #1f9e8f 55%, #2bb3a2 100%);
  color: #fff;
}

.age-gate__btn--no {
  background: rgba(255, 255, 255, 0.06);
  color: #e8eef4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.age-block__panel {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 163, 90, 0.16), transparent 40%),
    #120d0a;
}

body.is-locked {
  overflow: hidden;
}

body.is-age-blocked .site-header,
body.is-age-blocked main,
body.is-age-blocked .site-footer,
body.is-age-blocked .cookie-banner {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
}

.cookie-banner__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: #102233;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #e8eef4;
}

.cookie-banner__copy {
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  color: #fff;
}

.cookie-banner__copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(232, 238, 244, 0.8);
}

.cookie-banner__copy a {
  color: #7ad4c8;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, #147a6e 0%, #1f9e8f 100%);
  color: #fff;
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.08);
  color: #e8eef4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(18, 36, 54, 0.1);
    box-shadow: var(--shadow);
    z-index: 300;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    white-space: normal;
  }

  .brand__tag {
    display: none;
  }

  .hero__inner {
    padding: 2.2rem 0 2.4rem;
  }

  .listings {
    padding: 2.5rem 0 3rem;
  }

  .offer__row {
    grid-template-columns: 44px minmax(96px, 120px) 1fr;
    grid-template-areas:
      "rank logo name"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.85rem 0.75rem;
    align-items: center;
  }

  .offer__rank {
    grid-area: rank;
    justify-content: flex-start;
    align-self: start;
  }

  .offer__logo {
    grid-area: logo;
    width: 100%;
    min-height: 56px;
    height: 56px;
  }

  .offer__name {
    grid-area: name;
    min-width: 0;
  }

  .offer__name h3 {
    font-size: 1rem;
  }

  .offer__name p {
    font-size: 0.78rem;
  }

  .offer__bonus {
    grid-area: bonus;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(31, 158, 143, 0.06);
    border: 1px solid rgba(31, 158, 143, 0.12);
  }

  .offer__score {
    grid-area: score;
    align-self: center;
  }

  .offer__cta {
    grid-area: cta;
    justify-content: stretch;
    width: 100%;
  }

  .btn-visit {
    min-height: 48px;
    font-size: 0.88rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .offer__row {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "rank name"
      "logo logo"
      "bonus bonus"
      "score score"
      "cta cta";
    gap: 0.7rem;
    padding: 0.9rem;
  }

  .offer__rank {
    align-self: center;
  }

  .offer__rank-num {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .offer__logo {
    height: 60px;
    min-height: 60px;
  }

  .offer__score-value {
    width: fit-content;
  }

  .offer__cta {
    width: 100%;
  }

  .btn-visit {
    width: 100%;
  }

  .offer__disclaimer {
    padding: 0.65rem 0.9rem 0.8rem;
  }

  .offer__disclaimer p {
    font-size: 0.68rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-age {
    flex-direction: column;
  }

  .footer-badges {
    gap: 0.55rem;
  }

  .footer-badge {
    width: calc(50% - 0.3rem);
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 0.95rem;
  }

  .hero__inner {
    padding: 1.9rem 0 2.1rem;
  }

  .site-footer {
    padding: 2.4rem 0 1.3rem;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .offer__row {
    grid-template-columns: 52px 120px minmax(120px, 1fr) minmax(140px, 1.1fr) 80px 132px;
    gap: 0.7rem;
  }

  .nav-menu a {
    padding: 0.45rem 0.55rem;
    font-size: 0.84rem;
  }
}
