:root {
  --ink: #0a1628;
  --ink-soft: #1a2d45;
  --teal: #0d7377;
  --teal-bright: #14919b;
  --gold: #d4a017;
  --gold-soft: #e8c547;
  --sand: #f3efe6;
  --mist: #e8eef2;
  --white: #ffffff;
  --text: #1c2b3a;
  --muted: #5a6b7d;
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.topbar {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-soft) 55%, #0d3d42 100%);
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.55rem 0;
  border-bottom: 2px solid var(--gold);
}

.topbar-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  text-align: center;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.35rem;
  padding: 0 0.4rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.72rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.site-navbar {
  background: var(--white);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
}

.brand-icon {
  display: flex;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-tld {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
}

.custom-toggler {
  border: none;
  padding: 0.45rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--mist);
  border-radius: 8px;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.25);
}

.custom-toggler .toggler-line {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.9rem !important;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--teal);
  background: rgba(13, 115, 119, 0.08);
}

.navbar-nav .nav-link.active {
  color: var(--teal);
  background: rgba(13, 115, 119, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0 2.5rem;
  background: linear-gradient(135deg, var(--ink) 0%, #12304a 42%, #0d4f52 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(212, 160, 23, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(20, 145, 155, 0.28), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.015) 18px,
      rgba(255, 255, 255, 0.015) 19px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

.hero h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.55;
  color: rgba(232, 238, 242, 0.88);
  margin: 0;
  max-width: 42rem;
}

.listing-section {
  padding: 2.75rem 0 3.25rem;
  background:
    linear-gradient(180deg, #ebe4d6 0%, var(--sand) 28%, #f7f3ea 100%);
}

.listing-head {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.listing-eyebrow {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 4px;
}

.listing-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.listing-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.listing-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.offer-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 28px rgba(10, 22, 40, 0.07);
  position: relative;
}

.offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.offer-card--gold::before {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.offer-card--teal::before {
  background: linear-gradient(180deg, var(--teal-bright), var(--teal));
}

.offer-row {
  display: grid;
  grid-template-columns: 56px 110px minmax(120px, 1.1fr) minmax(160px, 1.4fr) 100px 150px;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem 1.1rem 1.4rem;
}

.offer-col {
  min-width: 0;
}

.offer-col--rank {
  display: flex;
  justify-content: center;
}

.offer-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  background: var(--mist);
  border: 2px solid rgba(10, 22, 40, 0.08);
}

.offer-card--gold .offer-rank {
  background: linear-gradient(145deg, #fff6d6, #f0d78a);
  border-color: rgba(212, 160, 23, 0.45);
  color: #6b4e00;
}

.offer-card--teal .offer-rank {
  background: linear-gradient(145deg, #d9f4f5, #9ed5d8);
  border-color: rgba(13, 115, 119, 0.35);
  color: #064e51;
}

.offer-col--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0.35rem 0.5rem;
  background:
    linear-gradient(135deg, #f8fafb 0%, #eef3f6 100%);
  border-radius: 12px;
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.offer-col--logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.offer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.offer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.offer-bonus {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--teal);
  line-height: 1.3;
}

.offer-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.offer-score em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.offer-col--cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border: 1px solid rgba(107, 78, 0, 0.2);
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.28);
  text-align: center;
  white-space: nowrap;
}

.btn-visit:hover,
.btn-visit:focus {
  color: var(--ink);
  filter: brightness(1.05);
}

.offer-card--teal .btn-visit {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal) 100%);
  border-color: rgba(6, 78, 81, 0.25);
  box-shadow: 0 6px 16px rgba(13, 115, 119, 0.28);
}

.offer-card--teal .btn-visit:hover,
.offer-card--teal .btn-visit:focus {
  color: var(--white);
}

.offer-disclaimer {
  padding: 0.7rem 1.25rem 0.85rem 1.4rem;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.04), rgba(13, 115, 119, 0.06));
  border-top: 1px dashed rgba(10, 22, 40, 0.12);
}

.offer-disclaimer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.15rem 0 1.85rem;
  background: linear-gradient(135deg, var(--ink) 0%, #12304a 42%, #0d4f52 100%);
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(212, 160, 23, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(20, 145, 155, 0.28), transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}

.page-hero p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(232, 238, 242, 0.88);
}

.page-section {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, #ebe4d6 0%, var(--sand) 40%, #f7f3ea 100%);
}

.page-content {
  max-width: 760px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.06);
  padding: 1.75rem 1.85rem 2rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.01em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.25rem 0 0.45rem;
}

.page-content p,
.page-content li {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-content p {
  margin: 0 0 0.9rem;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover,
.page-content a:focus {
  color: var(--ink);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.1), rgba(212, 160, 23, 0.12));
  border: 1px solid rgba(13, 115, 119, 0.25);
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus {
  color: var(--teal);
  text-decoration: none;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  margin-top: 0;
}

.site-footer {
  background: linear-gradient(180deg, #0c1a2e 0%, var(--ink) 55%, #061018 100%);
  color: rgba(232, 238, 242, 0.78);
  font-size: 0.86rem;
  padding: 2.75rem 0 1.5rem;
  margin-top: auto;
  border-top: 3px solid var(--teal);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(232, 238, 242, 0.1);
}

.footer-brand .brand-name--footer {
  color: var(--white);
  font-size: 1.15rem;
}

.footer-tagline {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  line-height: 1.55;
  color: rgba(232, 238, 242, 0.65);
  font-size: 0.88rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(232, 238, 242, 0.78);
  font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--gold-soft);
}

.footer-responsible {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(232, 238, 242, 0.1);
}

.footer-responsible > p {
  margin: 0 0 1rem;
  max-width: 52rem;
  line-height: 1.55;
}

.footer-age-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 52rem;
}

.footer-age-inline p {
  margin: 0;
  line-height: 1.5;
}

.footer-age-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.35rem;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

.footer-age-badge--lg {
  min-width: 3.1rem;
  height: 3.1rem;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow:
    0 0 0 3px rgba(212, 160, 23, 0.35),
    0 0 18px rgba(212, 160, 23, 0.35);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(232, 238, 242, 0.1);
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.footer-badge-link img {
  display: block;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-badge-link--static {
  cursor: default;
}

.footer-badge-link--static img {
  max-height: 40px;
}

.footer-disclosure {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(232, 238, 242, 0.1);
}

.footer-disclosure p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(232, 238, 242, 0.58);
}

.footer-age-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.12), rgba(13, 115, 119, 0.12));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 12px;
}

.footer-age-bar p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(243, 239, 230, 0.88);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 0.35rem;
}

.footer-copy {
  margin: 0;
  font-weight: 600;
  color: rgba(232, 238, 242, 0.85);
}

.footer-copy-sub {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(232, 238, 242, 0.5);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.is-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(13, 115, 119, 0.22), transparent 70%),
    rgba(6, 12, 20, 0.92);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-panel {
  width: 100%;
  max-width: 440px;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(165deg, #12253c 0%, #0a1628 100%);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  text-align: center;
  color: var(--mist);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2);
}

.age-gate-badge--alert {
  background: linear-gradient(145deg, #f07167, #c44536);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.25);
}

.age-gate-panel h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.age-gate-panel p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(232, 238, 242, 0.82);
}

.age-gate-help {
  font-size: 0.85rem !important;
  color: rgba(232, 238, 242, 0.65) !important;
}

.age-gate-help a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.age-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}

.age-btn--yes {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.age-btn--no {
  color: var(--mist);
  background: transparent;
  border: 1px solid rgba(232, 238, 242, 0.28);
}

.age-btn--yes:hover,
.age-btn--yes:focus {
  filter: brightness(1.06);
}

.age-btn--no:hover,
.age-btn--no:focus {
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, #12253c, #0a1628);
  border: 1px solid rgba(13, 115, 119, 0.45);
  border-radius: 16px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  color: var(--mist);
}

.cookie-copy {
  min-width: 0;
  flex: 1;
}

.cookie-copy strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.cookie-copy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(232, 238, 242, 0.72);
}

.cookie-copy a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.55rem;
}

.cookie-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn--accept {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.cookie-btn--reject {
  color: var(--mist);
  background: transparent;
  border: 1px solid rgba(232, 238, 242, 0.3);
}

.cookie-btn--accept:hover,
.cookie-btn--accept:focus {
  filter: brightness(1.06);
}

.cookie-btn--reject:hover,
.cookie-btn--reject:focus {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1199.98px) {
  .offer-row {
    grid-template-columns: 48px 96px minmax(110px, 1fr) minmax(140px, 1.3fr) 90px 140px;
    gap: 0.7rem 0.85rem;
    padding: 1rem 1.1rem 1rem 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .topbar-text {
    gap: 0.35rem 0.5rem;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: var(--mist);
    border-radius: var(--radius);
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 1rem !important;
  }

  .hero {
    padding: 2rem 0 1.85rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tld {
    font-size: 0.85rem;
  }

  .listing-section {
    padding: 2.15rem 0 2.5rem;
  }

  .offer-card {
    border-radius: 16px;
  }

  .offer-row {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas:
      "rank logo name"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.85rem 0.75rem;
    padding: 1rem 1rem 1rem 1.15rem;
    align-items: center;
  }

  .offer-col--rank {
    grid-area: rank;
    justify-content: center;
    align-self: center;
  }

  .offer-col--logo {
    grid-area: logo;
    width: 88px;
    height: 56px;
    padding: 0.3rem;
  }

  .offer-col--logo img {
    max-height: 40px;
  }

  .offer-col--name {
    grid-area: name;
    min-width: 0;
  }

  .offer-col--bonus {
    grid-area: bonus;
    padding: 0.75rem 0.85rem;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.07), rgba(212, 160, 23, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(13, 115, 119, 0.12);
  }

  .offer-col--score {
    grid-area: score;
    align-self: center;
  }

  .offer-col--cta {
    grid-area: cta;
    justify-content: stretch;
    width: 100%;
  }

  .offer-name {
    font-size: 1.05rem;
    word-break: break-word;
  }

  .offer-bonus {
    font-size: 0.92rem;
    word-break: break-word;
  }

  .offer-rank {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1rem;
  }

  .btn-visit {
    white-space: normal;
    line-height: 1.2;
    padding: 0.7rem 0.75rem;
  }

  .offer-disclaimer {
    padding: 0.65rem 1rem 0.8rem 1.15rem;
  }

  .offer-disclaimer p {
    font-size: 0.7rem;
    word-break: break-word;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .topbar-text {
    justify-content: flex-start;
    text-align: left;
  }

  .offer-row {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "rank name"
      "logo logo"
      "bonus bonus"
      "score score"
      "cta cta";
    gap: 0.7rem;
    padding: 0.9rem 0.85rem 0.95rem 1rem;
  }

  .offer-col--rank {
    justify-content: flex-start;
  }

  .offer-col--logo {
    width: 100%;
    height: 64px;
  }

  .offer-col--logo img {
    max-height: 44px;
  }

  .offer-col--score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.75rem;
    background: var(--mist);
    border-radius: 10px;
  }

  .offer-score em {
    font-size: 1.4rem;
  }

  .btn-visit {
    min-height: 3rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-age-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .age-gate-panel {
    padding: 1.6rem 1.25rem 1.4rem;
  }

  .page-content {
    padding: 1.25rem 1.1rem 1.5rem;
  }

  .contact-email {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }
}
