:root {
  --color-bg: #070b12;
  --color-surface: #0f1624;
  --color-elevated: #141d2e;
  --color-border: rgba(148, 163, 184, 0.18);
  --color-text: #e8edf7;
  --color-muted: #94a3b8;
  --color-accent: #22d3ee;
  --color-accent-strong: #06b6d4;
  --color-violet: #818cf8;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-brand: "Unbounded", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 50px rgba(2, 6, 23, 0.55);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(34, 211, 238, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(129, 140, 248, 0.14), transparent 50%), var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-shell__main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar {
  position: relative;
  z-index: 100;
  background: rgba(15, 22, 36, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  position: relative;
  z-index: 2;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 50;
  min-width: 0;
  flex: 1 1 auto;
  order: 1;
}

.navbar__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(34, 211, 238, 0.22));
}

.navbar__glyph {
  display: block;
}

.navbar__headline {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.navbar__headline-line1 {
  font-size: clamp(0.72rem, 1.1vw + 0.55rem, 0.95rem);
  background: linear-gradient(105deg, #f1f5f9 0%, #a5f3fc 55%, #e0e7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.navbar__headline-line2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.12em;
  font-size: clamp(0.62rem, 0.9vw + 0.48rem, 0.82rem);
  font-weight: 600;
}

.navbar__headline-accent {
  color: var(--color-accent);
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.navbar__headline-dot {
  color: var(--color-text);
}

.navbar__headline-tld {
  color: var(--color-muted);
  font-weight: 600;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, var(--color-elevated), #0c1220);
  z-index: 50;
  flex-shrink: 0;
  order: 2;
  position: relative;
}

.navbar__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.navbar__toggle--open .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle--open .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__toggle--open .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__dropdown {
  order: 3;
  flex: 1 0 100%;
  width: 100%;
}

.navbar__nav {
  display: flex;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar__item {
  margin: 0;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  border: 1px solid transparent;
}

.navbar__link:hover {
  color: var(--color-text);
  background: rgba(148, 163, 184, 0.08);
}

.navbar__link--active {
  color: var(--color-text);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(129, 140, 248, 0.12));
  border-color: rgba(34, 211, 238, 0.25);
}

.navbar__backdrop {
  display: none;
}

@media (min-width: 861px) {
  .navbar__inner {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .navbar__brand {
    flex: 0 1 auto;
    order: 1;
  }

  .navbar__toggle {
    display: none;
    order: 3;
  }

  .navbar__dropdown {
    display: contents;
  }

  .navbar__nav {
    order: 2;
    margin-left: auto;
  }

  .navbar__list {
    flex-direction: row;
  }
}

@media (max-width: 860px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__brand {
    flex: 1 1 auto;
    max-width: calc(100% - 52px);
  }

  .navbar__dropdown {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar__dropdown--open {
    grid-template-rows: 1fr;
  }

  .navbar__dropdown:not(.navbar__dropdown--open) .navbar__nav {
    visibility: hidden;
  }

  .navbar__dropdown--open .navbar__nav {
    visibility: visible;
  }

  .navbar__nav {
    min-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0.35rem 0 0;
    padding: 0.35rem 0 0.85rem;
    border-top: 1px solid rgba(34, 211, 238, 0.28);
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.98), rgba(8, 12, 22, 0.96));
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 22px 40px rgba(2, 6, 23, 0.45);
  }

  .navbar__dropdown--open .navbar__nav {
    box-shadow: 0 22px 48px rgba(2, 6, 23, 0.55), 0 0 0 1px rgba(34, 211, 238, 0.12);
  }

  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .navbar__item {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .navbar__item:last-child {
    border-bottom: none;
  }

  .navbar__link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.95rem 0.35rem 0.95rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    border-left: 3px solid transparent;
  }

  .navbar__link:hover {
    border-left-color: rgba(34, 211, 238, 0.45);
    background: rgba(34, 211, 238, 0.06);
  }

  .navbar__link--active {
    border-left-color: var(--color-accent);
    background: rgba(34, 211, 238, 0.1);
  }

  .navbar__backdrop {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 5.25rem;
    bottom: 0;
    z-index: 1;
    background: rgba(2, 6, 23, 0.62);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
}

.hero {
  padding: 1.75rem 1.25rem 2.25rem;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(20, 29, 46, 0.95), rgba(15, 22, 36, 0.92));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw + 0.6rem, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(120deg, #f8fafc, #a5f3fc 45%, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 0.6vw + 0.85rem, 1.1rem);
  color: var(--color-muted);
  max-width: 62ch;
  line-height: 1.55;
}

.offers {
  padding: 0 1.25rem 2.75rem;
}

.offers__intro {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
  text-align: center;
}

.offers__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.5vw + 0.9rem, 1.85rem);
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, #f8fafc, #67e8f9 42%, #a5b4fc 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offers__lede {
  margin: 0 auto;
  max-width: 46ch;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.offers__list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.offers__card {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(20, 29, 46, 0.55), rgba(10, 14, 24, 0.85));
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.35);
  overflow: hidden;
  position: relative;
}

.offers__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: linear-gradient(180deg, #22d3ee, #6366f1);
  opacity: 0.85;
}

.offers__card:nth-child(2)::before {
  background: linear-gradient(180deg, #a78bfa, #22d3ee);
}

.offers__card:nth-child(3)::before {
  background: linear-gradient(180deg, #34d399, #38bdf8);
}

.offers__card:nth-child(4)::before {
  background: linear-gradient(180deg, #fb7185, #818cf8);
}

.offer__row {
  display: grid;
  grid-template-columns: 2.5rem minmax(7rem, 9.5rem) minmax(6rem, 1.1fr) minmax(11rem, 1.55fr) 4rem minmax(6.5rem, auto);
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.95rem 1rem 0.95rem 1.15rem;
}

.offer__cell {
  min-width: 0;
}

.offer__cell--rank {
  display: flex;
  justify-content: center;
}

.offer__rank {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-bg);
  background: linear-gradient(135deg, #22d3ee, #818cf8);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

.offer__cell--logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(7.75rem, 100%);
  max-height: 4rem;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.6);
}

.offer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.offer__bonus {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.offer__score {
  display: flex;
  justify-content: center;
}

.offer__score-ring {
  --score-deg: 180deg;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from -90deg, #22d3ee 0deg, #6366f1 var(--score-deg), rgba(30, 41, 59, 0.9) var(--score-deg), rgba(30, 41, 59, 0.9) 360deg);
  display: grid;
  place-items: center;
  box-shadow: 0 0 22px rgba(99, 102, 241, 0.2);
}

.offer__score-inner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #1a2438, #070b12);
  display: grid;
  place-items: center;
}

.offer__score-value {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-text);
}

.offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #042f2e;
  background: linear-gradient(120deg, #5eead4, #22d3ee, #a5b4fc);
  box-shadow: 0 6px 22px rgba(34, 211, 238, 0.35);
  white-space: nowrap;
}

.offer__cta:hover {
  filter: brightness(1.08);
}

.offer__cta:active {
  transform: scale(0.98);
}

.offer__disclaimer {
  margin: 0;
  padding: 0.65rem 1rem 0.85rem 1.15rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--color-muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.35), transparent);
}

@media (max-width: 960px) {
  .offer__row {
    grid-template-columns: 2.5rem minmax(6.75rem, 9rem) 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.6rem 0.75rem;
  }

  .offer__logo {
    max-width: min(7.25rem, 100%);
    max-height: 3.5rem;
  }

  .offer__cell--rank {
    grid-column: 1;
    grid-row: 1;
  }

  .offer__cell--logo {
    grid-column: 2;
    grid-row: 1;
  }

  .offer__cell--score {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .offer__cell--name {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .offer__cell--bonus {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .offer__cell--cta {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .offer__cta {
    width: 100%;
    padding: 0.7rem 1rem;
  }
}

.page {
  padding: 2.5rem 1.25rem 3rem;
}

.page__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.page__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.content-page {
  padding: 2rem 1.25rem 2.5rem;
}

.content-page__inner {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 1.75rem 2.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(20, 29, 46, 0.75), rgba(10, 14, 24, 0.92));
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.content-page__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw + 0.8rem, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-text);
}

.content-page__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.content-page__section {
  margin-bottom: 1.5rem;
}

.content-page__section:last-child {
  margin-bottom: 0;
}

.content-page__h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #a5f3fc;
}

.content-page__section p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.content-page__section p:last-child {
  margin-bottom: 0;
}

.content-page__list {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-page__list li {
  margin-bottom: 0.4rem;
}

.content-page__mailto {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-accent);
  word-break: break-all;
}

.content-page__mailto:hover {
  color: #a5f3fc;
}

.content-page__code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  color: #e2e8f0;
  background: rgba(34, 211, 238, 0.1);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .content-page {
    padding-inline: 1rem;
  }

  .content-page__inner {
    padding: 1.35rem 1.1rem 1.6rem;
  }
}

  .navbar__glyph {
    width: 34px;
    height: 34px;
  }

  .navbar__brand {
    gap: 0.45rem;
  }
}

@media (max-width: 480px) {
  .navbar__inner {
    padding-inline: 1rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero__inner {
    padding: 1.1rem 1.1rem 1.25rem;
  }

  .offers {
    padding-inline: 1rem;
  }
}

.agegate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 211, 238, 0.12), transparent 55%), rgba(4, 8, 16, 0.92);
  backdrop-filter: blur(16px);
}

.agegate--blocked {
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(251, 113, 133, 0.12), transparent 50%), rgba(6, 10, 18, 0.94);
}

.agegate__panel {
  width: min(26rem, 100%);
  padding: 1.75rem 1.5rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(165deg, rgba(20, 29, 46, 0.98), rgba(10, 14, 24, 0.99));
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.65), 0 0 0 1px rgba(34, 211, 238, 0.08);
}

.agegate__panel--narrow {
  text-align: center;
}

.agegate__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.agegate__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw + 0.6rem, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.agegate__text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.agegate__hint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-muted);
  opacity: 0.9;
}

.agegate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.agegate__btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.agegate__btn--primary {
  color: #042f2e;
  background: linear-gradient(120deg, #5eead4, #22d3ee);
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35);
}

.agegate__btn--primary:hover {
  filter: brightness(1.06);
}

.agegate__btn--ghost {
  color: var(--color-muted);
  background: rgba(148, 163, 184, 0.08);
  border-color: var(--color-border);
}

.agegate__btn--ghost:hover {
  color: var(--color-text);
  background: rgba(148, 163, 184, 0.12);
}

.cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 0.75rem 1rem 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(7, 11, 18, 0.97), rgba(15, 22, 36, 0.92));
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  box-shadow: 0 -16px 48px rgba(2, 6, 23, 0.55);
}

.cookiebar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

.cookiebar__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.cookiebar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookiebar__btn {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookiebar__btn--primary {
  color: #042f2e;
  background: linear-gradient(120deg, #5eead4, #22d3ee);
}

.cookiebar__btn--ghost {
  color: var(--color-muted);
  background: rgba(148, 163, 184, 0.1);
  border-color: var(--color-border);
}

.cookiebar__btn--ghost:hover {
  color: var(--color-text);
}

@media (max-width: 560px) {
  .cookiebar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookiebar__actions {
    justify-content: stretch;
  }

  .cookiebar__btn {
    flex: 1;
    text-align: center;
  }
}

.site-footer {
  margin-top: auto;
  padding: 2.5rem 1.25rem 6.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 10, 18, 0.55) 12%, #070b12 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer__shell {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.site-footer__strip {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(15, 22, 36, 0.65);
}

.site-footer__strip--accent {
  border-color: rgba(34, 211, 238, 0.22);
  background: linear-gradient(125deg, rgba(34, 211, 238, 0.08), rgba(129, 140, 248, 0.06));
}

.site-footer__strip-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.site-footer__strip-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  padding: 0.35rem 0;
}

.site-footer__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(12, 18, 30, 0.85);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.site-footer__badge:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.45);
  transform: translateY(-2px);
}

.site-footer__badge--static {
  cursor: default;
}

.site-footer__badge--static:hover {
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: none;
  transform: none;
}

.site-footer__badge-img {
  display: block;
  max-width: min(7.5rem, 28vw);
  height: auto;
  max-height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  padding-top: 0.25rem;
}

.site-footer__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
}

.site-footer__link:hover {
  color: var(--color-text);
}

.site-footer__col--wide {
  grid-column: span 1;
}

.site-footer__blurb {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.site-footer__affiliate {
  margin: 0;
  padding: 1rem 1.1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-muted);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(148, 163, 184, 0.28);
  background: rgba(8, 12, 22, 0.5);
}

.site-footer__affiliate strong {
  color: var(--color-text);
  font-weight: 600;
}

.site-footer__agebar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: radial-gradient(120% 80% at 0% 50%, rgba(34, 211, 238, 0.12), transparent 55%), rgba(10, 14, 24, 0.9);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.08);
}

.site-footer__age-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 18px rgba(34, 211, 238, 0.45));
}

.site-footer__age-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.site-footer__age-text strong {
  color: #a5f3fc;
  font-weight: 700;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.65);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-inline: 1rem;
    padding-bottom: 7rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__agebar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
