@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --ink: #0c1a24;
  --ink-soft: #243844;
  --mist: #eef4f6;
  --paper: #f7fafb;
  --jade: #1f8a7a;
  --jade-deep: #14685c;
  --gold: #b8923a;
  --gold-soft: #d4b56a;
  --line: rgba(12, 26, 36, 0.1);
  --white: #ffffff;
  --topbar-bg: #0c1a24;
  --shadow: 0 12px 40px rgba(12, 26, 36, 0.08);
  --radius: 14px;
  --max: 1180px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Sora', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(31, 138, 122, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(184, 146, 58, 0.1), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.age-locked {
  overflow: hidden;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  background: var(--topbar-bg);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(212, 181, 106, 0.25);
}

.topbar a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(247, 250, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--ink) 0%, #163447 55%, var(--jade-deep) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(12, 26, 36, 0.22);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--ink);
  background: rgba(31, 138, 122, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 0 2.6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 26, 36, 0.92) 0%, rgba(20, 104, 92, 0.88) 52%, rgba(12, 26, 36, 0.9) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 181, 106, 0.22), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(31, 138, 122, 0.25), transparent 40%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.015) 12px,
      rgba(255, 255, 255, 0.015) 13px
    );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}

.listing {
  padding: 2.75rem 0 3.25rem;
}

.listing-head {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.listing-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.listing-lead {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.listing-board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(12, 26, 36, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 26, 36, 0.06);
}

.offer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jade), var(--gold-soft));
}

.offer:nth-child(1)::before {
  background: linear-gradient(180deg, var(--gold), #f0d78a);
}

.offer:nth-child(2)::before {
  background: linear-gradient(180deg, #8ea0ad, #d7e0e6);
}

.offer:nth-child(3)::before {
  background: linear-gradient(180deg, #b87333, #e2b07a);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 118px minmax(150px, 1.2fr) minmax(180px, 1.35fr) 88px 168px;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1rem 1.15rem 1rem 1.35rem;
}

.offer-rank span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(31, 138, 122, 0.14), rgba(184, 146, 58, 0.12));
  border: 1px solid rgba(12, 26, 36, 0.08);
}

.offer:nth-child(1) .offer-rank span {
  background: linear-gradient(145deg, rgba(184, 146, 58, 0.28), rgba(240, 215, 138, 0.35));
  color: #6d5214;
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  background:
    linear-gradient(160deg, #0f2430 0%, #163847 55%, #1a4d45 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-logo img {
  width: 100%;
  max-width: 108px;
  height: 42px;
  object-fit: contain;
}

.offer-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.offer-name strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.offer-name span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.offer-bonus {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.offer-bonus em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jade-deep);
}

.offer-bonus strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.offer-score {
  display: flex;
  justify-content: center;
}

.score-ring {
  --score: 9;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 0 58%, transparent 59%),
    conic-gradient(var(--jade) calc(var(--score) * 10%), rgba(12, 26, 36, 0.1) 0);
  box-shadow: inset 0 0 0 1px rgba(12, 26, 36, 0.06);
}

.score-ring strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.score-ring small {
  position: absolute;
  bottom: 12px;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.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: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--jade) 0%, var(--jade-deep) 55%, #0f4f46 100%);
  box-shadow: 0 8px 18px rgba(31, 138, 122, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-visit:hover {
  background: linear-gradient(135deg, #24a090 0%, var(--jade) 50%, var(--jade-deep) 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 138, 122, 0.34);
}

.offer-disclaimer {
  margin: 0 1.15rem 1rem 1.35rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: rgba(12, 26, 36, 0.035);
  border: 1px dashed rgba(12, 26, 36, 0.12);
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.band {
  padding: 2.6rem 0;
}

.band-alt {
  background:
    linear-gradient(180deg, rgba(12, 26, 36, 0.04), rgba(31, 138, 122, 0.06));
  border-block: 1px solid var(--line);
}

.band-head {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 26, 36, 0.08);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #6d5214;
  background: linear-gradient(145deg, rgba(184, 146, 58, 0.28), rgba(240, 215, 138, 0.35));
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem 2rem;
  align-items: center;
}

.split-lead {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 52ch;
}

.checks {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.checks li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 26, 36, 0.08);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.checks li::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--jade), var(--gold-soft));
  box-shadow: 0 0 0 4px rgba(31, 138, 122, 0.12);
}

.play-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 1.5rem;
  padding: 1.5rem 1.4rem;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(12, 26, 36, 0.94), rgba(20, 104, 92, 0.9));
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(12, 26, 36, 0.14);
}

.play-panel .listing-title {
  color: #fff;
  margin-bottom: 0.45rem;
}

.play-panel p {
  max-width: 54ch;
  font-size: 0.95rem;
  line-height: 1.6;
}

.play-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-soft,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.btn-soft {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), #f0d78a);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.site-footer {
  margin-top: auto;
  padding: 2.4rem 0 1.6rem;
  background: linear-gradient(180deg, #0c1a24 0%, #122633 100%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(212, 181, 106, 0.22);
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-age-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 181, 106, 0.22);
}

.footer-age-row p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.age-pill {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, #f6e7b2, var(--gold) 45%, #8a6418 100%);
  box-shadow: 0 0 0 4px rgba(212, 181, 106, 0.28), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.age-pill img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.age-pill-lg {
  width: 68px;
  height: 68px;
}

.age-pill-lg img {
  width: 38px;
  height: 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(240px, 1.4fr);
  gap: 1.5rem;
}

.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.22rem 0;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-play p {
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0;
  background: transparent;
}

.footer-badges img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-badges a:last-child img {
  height: 44px;
  filter: drop-shadow(0 0 10px rgba(212, 181, 106, 0.55));
}

.footer-affiliate {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.footer-age-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: rgba(184, 146, 58, 0.12);
  border: 1px solid rgba(212, 181, 106, 0.35);
}

.footer-age-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 181, 106, 0.7));
}

.footer-age-disclaimer p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

.footer-age-disclaimer strong {
  color: var(--gold-soft);
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.age-overlay,
.age-block {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 16, 24, 0.82);
}

.age-modal,
.age-block-inner {
  width: min(100%, 460px);
  text-align: center;
  padding: 2rem 1.5rem 1.6rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #122633, #0c1a24);
  border: 1px solid rgba(212, 181, 106, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.86);
}

.age-modal .age-pill,
.age-block-inner .age-pill {
  margin: 0 auto 1rem;
}

.age-modal h2,
.age-block-inner h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.age-modal p,
.age-block-inner p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.age-block-inner a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.age-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.age-yes,
.cookie-accept {
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--jade), var(--jade-deep));
}

.age-no,
.cookie-reject {
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: #0c1a24;
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(12, 26, 36, 0.28);
  border: 1px solid rgba(212, 181, 106, 0.22);
}

.cookie-bar p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-bar a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.age-overlay[hidden],
.age-block[hidden],
.cookie-bar[hidden] {
  display: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1.8rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 26, 36, 0.92) 0%, rgba(20, 104, 92, 0.88) 52%, rgba(12, 26, 36, 0.9) 100%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  max-width: 54ch;
}

.page-content {
  padding: 2.2rem 0 3rem;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.6rem 0 0.55rem;
  color: var(--ink);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.prose p + p {
  margin-top: 0.75rem;
}

.prose ul {
  margin: 0.7rem 0 0.9rem 1.15rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.prose a {
  color: var(--jade-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-card {
  margin-top: 1.2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 26, 36, 0.08);
  max-width: 520px;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-card a {
  color: var(--jade-deep);
  font-weight: 700;
  font-size: 1.05rem;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 26, 36, 0.08);
}

.review-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jade-deep);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 800px;
}

.faq-item {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 26, 36, 0.08);
}

.faq-item h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.faq-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.85rem 1rem 1.1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .hero {
    padding: 2rem 0 2.2rem;
  }

  .offer-row {
    grid-template-columns: 54px 1fr;
    grid-template-areas:
      "rank name"
      "logo logo"
      "bonus bonus"
      "score cta";
  }

  .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; justify-content: flex-start; }
  .offer-cta { grid-area: cta; }

  .offer-logo {
    justify-content: flex-start;
    max-width: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-play {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    left: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .offer-row {
    grid-template-columns: 56px 100px minmax(130px, 1fr) minmax(150px, 1.1fr) 80px 150px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  .topbar {
    font-size: 0.72rem;
    padding: 0.6rem 0.75rem;
  }

  .offer-row {
    padding: 0.95rem 0.9rem 0.85rem 1.05rem;
  }

  .offer-disclaimer {
    margin: 0 0.9rem 0.9rem 1.05rem;
    font-size: 0.7rem;
  }

  .btn-visit {
    font-size: 0.8rem;
    min-height: 44px;
  }

  .footer-age-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-age-disclaimer {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    flex-direction: column;
  }
}
