:root {
  --night: #05060F;
  --deep: #0A0D20;
  --panel: #111634;
  --panel-2: #171D42;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #EEF1FF;
  --muted: #A3ABD0;
  --gold: #F0B34E;
  --violet: #7B5CFF;
  --cyan: #56E0E0;
  --shell: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--night);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: #0A0D20;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.topbar {
  background: linear-gradient(90deg, #0D1030 0%, #191F4C 50%, #0D1030 100%);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding-block: 7px;
}

.topbar__notice {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.topbar__badge {
  flex: none;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 21px;
  padding-inline: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF4D6D, #C81E4B);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
  color: var(--muted);
}

.topbar__meta li {
  position: relative;
  white-space: nowrap;
}

.topbar__meta li + li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border-radius: 50%;
  background: var(--line-strong);
}

.topbar__meta a {
  color: var(--cyan);
  font-weight: 600;
  border-bottom: 1px dotted rgba(86, 224, 224, 0.5);
  transition: color 0.2s var(--ease);
}

.topbar__meta a:hover {
  color: #fff;
}

.header {
  position: relative;
  z-index: 40;
  background: rgba(10, 13, 32, 0.96);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: none;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 13px;
  background: radial-gradient(120% 120% at 30% 10%, #2A2270 0%, #12163A 60%, #0C1030 100%);
  border: 1px solid rgba(240, 179, 78, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 10px 26px -12px rgba(123, 92, 255, 0.9);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.brand:hover .brand__mark {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: "Sora", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.brand__name em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #FFE0A3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__tag {
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  position: relative;
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover,
.nav__link.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav__link:hover::after,
.nav__link.is-current::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold);
}

.burger__box {
  display: block;
  position: relative;
  width: 22px;
  height: 15px;
}

.burger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}

.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 6.5px; }
.burger__bar:nth-child(3) { top: 13px; }

.burger[aria-expanded="true"] .burger__bar:nth-child(1) {
  top: 6.5px;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__bar:nth-child(3) {
  top: 6.5px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 12% -30%, rgba(123, 92, 255, 0.38), transparent 62%),
    radial-gradient(760px 340px at 92% -10%, rgba(86, 224, 224, 0.16), transparent 60%),
    linear-gradient(180deg, #0A0D20 0%, #070A1A 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(70% 90% at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -120px;
  right: -70px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.14), rgba(123, 92, 255, 0.08) 45%, transparent 70%);
  box-shadow: inset -34px 18px 60px -20px rgba(240, 179, 78, 0.25);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 58px 62px;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(240, 179, 78, 0.35);
  background: rgba(240, 179, 78, 0.08);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(240, 179, 78, 0.8);
}

.hero__title {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 800;
  color: #fff;
}

.hero__title span {
  background: linear-gradient(100deg, var(--gold) 0%, #FFE6B0 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin-top: 16px;
  max-width: 720px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.98rem, 1.6vw, 1.09rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--muted);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #D6DBF5;
  font-size: 13px;
  font-weight: 600;
}

.hero__chips li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

@media (max-width: 1024px) {
  .nav__link {
    padding-inline: 12px;
    font-size: 14.5px;
  }
}

@media (max-width: 900px) {
  .burger {
    display: inline-flex;
    order: 3;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 39;
    display: none;
    padding: 10px 22px 20px;
    background: #0C1029;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 50px -24px rgba(0, 0, 0, 0.95);
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid transparent;
  }

  .nav__link:hover,
  .nav__link.is-current {
    border-color: var(--line);
  }

  .nav__link::after {
    left: 16px;
    right: auto;
    bottom: 10px;
    width: 26px;
  }
}

@media (max-width: 760px) {
  .topbar {
    font-size: 12px;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-block: 9px;
  }

  .topbar__notice {
    align-items: flex-start;
  }

  .topbar__badge {
    margin-top: 2px;
  }

  .header__inner {
    min-height: 70px;
  }

  .hero__inner {
    padding-block: 42px 46px;
  }
}

@media (max-width: 520px) {
  .shell {
    padding-inline: 16px;
  }

  .nav {
    padding-inline: 16px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 11px;
  }

  .brand__name {
    font-size: 18.5px;
  }

  .brand__tag {
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .hero__glow {
    width: 240px;
    height: 240px;
    top: -100px;
    right: -90px;
  }

  .hero__lead {
    margin-top: 14px;
  }

  .hero__chips {
    gap: 8px;
    margin-top: 22px;
  }

  .hero__chips li {
    padding: 7px 12px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .brand__name {
    font-size: 17px;
  }

  .topbar__meta {
    flex-wrap: wrap;
    gap: 14px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__title {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  color: #fff;
}

.section__text {
  margin-top: 12px;
  max-width: 660px;
  color: var(--muted);
  font-size: 15px;
}

.listing {
  padding-block: 62px 74px;
  background: linear-gradient(180deg, #070A1A 0%, #090C22 55%, #070A1A 100%);
}

.listing__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.listing__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #C9D0F0;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.listing__note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3CE59A;
  box-shadow: 0 0 0 4px rgba(60, 229, 154, 0.16);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table__head,
.offer__row {
  display: grid;
  grid-template-columns: 62px minmax(190px, 1.8fr) minmax(150px, 1.2fr) 112px 196px;
  align-items: center;
  gap: 18px;
}

.table__head {
  padding: 0 24px 2px;
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 29, 66, 0.85) 0%, rgba(14, 18, 46, 0.85) 100%);
  box-shadow: 0 24px 40px -30px rgba(0, 0, 0, 0.9);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.offer:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 55px -30px rgba(123, 92, 255, 0.75);
}

.offer--top {
  border-color: rgba(240, 179, 78, 0.5);
  background:
    radial-gradient(600px 160px at 8% 0%, rgba(240, 179, 78, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(28, 32, 72, 0.9) 0%, rgba(15, 19, 48, 0.9) 100%);
}

.offer--top:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 55px -30px rgba(240, 179, 78, 0.7);
}

.offer__ribbon {
  position: absolute;
  top: -11px;
  left: 24px;
  z-index: 2;
  padding: 4px 13px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--gold), #FFD98A);
  color: #14172E;
  font-family: "Sora", sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px -8px rgba(240, 179, 78, 0.9);
}

.offer__row {
  padding: 22px 24px;
}

.offer__rank span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.offer--top .offer__rank span {
  border-color: rgba(240, 179, 78, 0.55);
  background: linear-gradient(160deg, rgba(240, 179, 78, 0.28), rgba(240, 179, 78, 0.05));
  color: var(--gold);
}

.offer__brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.offer__logo {
  flex: none;
  display: grid;
  place-items: center;
  width: 92px;
  height: 62px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.offer__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  color: var(--muted);
  font-size: 11px;
}

.offer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.offer__name {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.offer__tag {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(123, 92, 255, 0.16);
  border: 1px solid rgba(123, 92, 255, 0.3);
  color: #C3B6FF;
  font-size: 11.5px;
  font-weight: 600;
}

.offer__bonus {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cell__label {
  display: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer__bonus-value {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.offer__bonus-extra {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
}

.offer__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ring {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--cyan) 0%, var(--gold) calc(var(--score) * 1%), rgba(255, 255, 255, 0.08) 0);
}

.ring__inner {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0D1130;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.offer__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

.btn--primary {
  background: linear-gradient(100deg, var(--gold) 0%, #FFD98A 55%, #FFC15E 100%);
  color: #14172E;
  box-shadow: 0 14px 28px -14px rgba(240, 179, 78, 0.9);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 34px -14px rgba(240, 179, 78, 1);
}

.offer__cta-note {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.offer__disclaimer {
  padding: 13px 24px 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.11);
  color: #8F97BC;
  font-size: 11.8px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .table__head,
  .offer__row {
    grid-template-columns: 54px minmax(160px, 1.7fr) minmax(140px, 1.1fr) 96px 168px;
    gap: 14px;
  }

  .offer__logo {
    width: 80px;
    height: 56px;
  }

  .offer__name {
    font-size: 16.5px;
  }

  .offer__bonus-value {
    font-size: 15.5px;
  }

  .btn {
    padding-inline: 14px;
    font-size: 13.5px;
  }
}

@media (max-width: 980px) {
  .table__head {
    display: none;
  }

  .offer__row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "rank brand"
      "bonus score"
      "cta cta";
    gap: 18px 16px;
    padding: 24px 20px 20px;
  }

  .offer__rank { grid-area: rank; }
  .offer__brand { grid-area: brand; }
  .offer__bonus { grid-area: bonus; }
  .offer__score { grid-area: score; }
  .offer__cta { grid-area: cta; }

  .cell__label {
    display: block;
    margin-bottom: 2px;
  }

  .offer__score {
    align-items: flex-end;
    text-align: right;
  }

  .offer__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .offer__cta .btn {
    flex: 1 1 auto;
    max-width: 320px;
    padding-block: 15px;
    font-size: 15px;
  }

  .offer__cta-note {
    text-align: right;
  }

  .offer__disclaimer {
    padding-inline: 20px;
  }
}

@media (max-width: 760px) {
  .listing {
    padding-block: 48px 56px;
  }

  .listing__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .offer__row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand rank"
      "bonus score"
      "cta cta";
    gap: 16px 12px;
    padding: 20px 16px 18px;
  }

  .offer__rank span {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 15px;
  }

  .offer__brand {
    gap: 12px;
  }

  .offer__logo {
    width: 66px;
    height: 50px;
    padding: 6px;
  }

  .offer__name {
    font-size: 15.5px;
  }

  .offer__tag {
    font-size: 10.5px;
    padding: 2px 8px;
  }

  .offer__bonus-value {
    font-size: 15px;
  }

  .offer__bonus-extra {
    font-size: 12px;
  }

  .ring {
    width: 56px;
    height: 56px;
  }

  .ring__inner {
    width: 45px;
    height: 45px;
    font-size: 14.5px;
  }

  .offer__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .offer__cta .btn {
    max-width: none;
    width: 100%;
  }

  .offer__cta-note {
    text-align: center;
  }

  .offer__ribbon {
    left: 16px;
    font-size: 9.5px;
  }

  .offer__disclaimer {
    padding: 12px 16px 14px;
    font-size: 11.2px;
  }
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: #E6EAFF;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.footer {
  position: relative;
  padding-block: 58px 26px;
  background: linear-gradient(180deg, #080B1C 0%, #05070F 100%);
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer__brand .brand__mark {
  margin-bottom: 16px;
}

.footer__name {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer__name em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #FFE0A3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__blurb {
  margin-top: 12px;
  max-width: 380px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.footer__title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  position: relative;
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.footer__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s var(--ease);
}

.footer__list a:hover {
  color: #fff;
  padding-left: 14px;
}

.footer__list a:hover::before {
  width: 9px;
}

.footer__safer {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.footer__safer-text p {
  max-width: 640px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer__badges li {
  display: grid;
  place-items: center;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.footer__badges img {
  display: block;
  width: 112px;
  height: 32px;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s var(--ease);
}

.footer__badges a:hover img {
  opacity: 1;
}

.footer__strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.footer__strip p {
  color: #98A0C4;
  font-size: 12.5px;
  line-height: 1.75;
}

.footer__strip strong {
  color: #DCE1FA;
  font-weight: 700;
}

.footer__strip-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(123, 92, 255, 0.4);
  background: rgba(123, 92, 255, 0.16);
  color: #C3B6FF;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.footer__strip-icon--age {
  border-color: rgba(255, 77, 109, 0.5);
  background: linear-gradient(135deg, rgba(255, 77, 109, 0.28), rgba(200, 30, 75, 0.18));
  color: #FF8DA3;
  font-size: 14px;
  box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #7C84A8;
  font-size: 12px;
}

.footer__bottom p:last-child {
  max-width: 620px;
  text-align: right;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: rgba(4, 6, 16, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}

html.age-ok .age-gate {
  display: none;
}

html:not(.age-ok) body {
  overflow: hidden;
}

.age-gate__panel {
  width: 100%;
  max-width: 520px;
  margin: auto;
  padding: 38px 34px 30px;
  border-radius: 24px;
  border: 1px solid rgba(240, 179, 78, 0.35);
  background:
    radial-gradient(700px 220px at 20% -10%, rgba(123, 92, 255, 0.3), transparent 65%),
    linear-gradient(180deg, #141A3D 0%, #0C1027 100%);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.age-gate__mark {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FF4D6D, #C81E4B);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 30px -14px rgba(255, 77, 109, 0.9);
}

.age-gate__mark--blocked {
  background: linear-gradient(135deg, #6B7290, #3D4463);
  box-shadow: none;
}

.age-gate__title {
  font-size: clamp(1.4rem, 3.6vw, 1.85rem);
  color: #fff;
}

.age-gate__text {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.age-gate__actions .btn {
  width: 100%;
}

.age-gate__small {
  margin-top: 18px;
  color: #7C84A8;
  font-size: 12px;
  line-height: 1.65;
}

.age-gate__small a {
  color: var(--cyan);
  font-weight: 600;
}

.age-gate__small a:hover {
  color: #fff;
}

.age-gate__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.age-gate__links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: #D6DBF5;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.age-gate__links a:hover {
  border-color: var(--cyan);
  color: #fff;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: rgba(11, 15, 38, 0.98);
  border-top: 1px solid rgba(240, 179, 78, 0.35);
  box-shadow: 0 -24px 50px -30px rgba(0, 0, 0, 0.95);
}

.cookie[hidden] {
  display: none;
}

.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-block: 16px;
}

.cookie__text strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

.cookie__text p {
  max-width: 720px;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.65;
}

.cookie__text a {
  color: var(--cyan);
  font-weight: 600;
  border-bottom: 1px dotted rgba(86, 224, 224, 0.5);
}

.cookie__text a:hover {
  color: #fff;
}

.cookie__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.cookie__actions .btn {
  padding: 12px 20px;
  font-size: 13.5px;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 32px 24px;
  }

  .footer__safer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__badges {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .footer {
    padding-block: 46px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__blurb {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer__bottom p:last-child {
    max-width: none;
    text-align: left;
  }

  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie__actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__badges li {
    padding: 8px 12px;
  }

  .footer__badges img {
    width: 92px;
    height: 28px;
  }

  .footer__strip {
    gap: 12px;
  }

  .footer__strip-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 13px;
  }

  .age-gate__panel {
    padding: 30px 20px 24px;
    border-radius: 20px;
  }

  .age-gate__mark {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 17px;
  }

  .cookie__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 280px at 18% -30%, rgba(123, 92, 255, 0.34), transparent 64%),
    radial-gradient(560px 260px at 88% 0%, rgba(86, 224, 224, 0.13), transparent 66%),
    linear-gradient(180deg, #0A0D20 0%, #080B1D 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 90%);
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.page-hero__glow {
  position: absolute;
  top: -140px;
  right: 3%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 1px solid rgba(240, 179, 78, 0.14);
  box-shadow: inset 35px -18px 80px rgba(123, 92, 255, 0.14);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 54px 58px;
}

.page-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 800px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
}

.page-hero__inner > p:last-child {
  max-width: 700px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.7;
}

.content-section {
  padding-block: 58px 72px;
  background: linear-gradient(180deg, #070A1A 0%, #090C20 50%, #070A1A 100%);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: start;
  gap: 58px;
}

.prose {
  min-width: 0;
}

.prose section + section,
.prose section + .callout,
.prose .callout + section {
  margin-top: 42px;
}

.prose h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
}

.prose p {
  color: #AAB2D2;
  font-size: 15px;
  line-height: 1.85;
}

.prose p + p {
  margin-top: 13px;
}

.prose a {
  color: var(--cyan);
  font-weight: 600;
  border-bottom: 1px dotted rgba(86, 224, 224, 0.5);
  transition: color 0.2s var(--ease);
}

.prose a:hover {
  color: #fff;
}

.prose ul,
.prose ol {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 16px;
  color: #AAB2D2;
  font-size: 14.5px;
  line-height: 1.75;
}

.prose ul li,
.prose ol li {
  position: relative;
  padding-left: 27px;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  transform: rotate(45deg);
}

.prose ol {
  counter-reset: prose-list;
  list-style: none;
}

.prose ol li {
  counter-increment: prose-list;
}

.prose ol li::before {
  content: counter(prose-list);
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(123, 92, 255, 0.18);
  color: #C3B6FF;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.legal-copy section {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 132px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    radial-gradient(220px 90px at 0% 0%, rgba(123, 92, 255, 0.12), transparent 72%),
    rgba(255, 255, 255, 0.035);
}

.info-card strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.info-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.content-aside {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(17, 22, 52, 0.76);
}

.content-aside__label {
  margin-bottom: 7px;
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.content-aside a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.content-aside a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.callout {
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(86, 224, 224, 0.3);
  background:
    linear-gradient(110deg, rgba(86, 224, 224, 0.09), rgba(123, 92, 255, 0.08)),
    rgba(17, 22, 52, 0.72);
}

.callout strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.callout--warning {
  margin-bottom: 42px;
  border-color: rgba(240, 179, 78, 0.38);
  background:
    linear-gradient(110deg, rgba(240, 179, 78, 0.1), rgba(255, 77, 109, 0.06)),
    rgba(17, 22, 52, 0.72);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(240, 179, 78, 0.32);
  background: rgba(240, 179, 78, 0.07);
}

.contact-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold), #FFD98A);
  color: #14172E;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.contact-card > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-card__label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card a {
  overflow-wrap: anywhere;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  border-bottom: 0;
}

.email-link {
  overflow-wrap: anywhere;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.prose .support-grid a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.prose .support-grid a:hover {
  border-color: rgba(86, 224, 224, 0.42);
  background: rgba(86, 224, 224, 0.07);
}

.support-grid strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.support-grid span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .page-hero__inner {
    padding-block: 44px 48px;
  }

  .content-section {
    padding-block: 46px 56px;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .content-aside {
    position: static;
    grid-row: 1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .content-aside__label {
    width: 100%;
  }

  .content-aside a {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }
}

@media (max-width: 560px) {
  .page-hero__inner {
    padding-block: 38px 42px;
  }

  .content-section {
    padding-block: 38px 48px;
  }

  .info-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
  }

  .prose section + section,
  .prose section + .callout,
  .prose .callout + section {
    margin-top: 34px;
  }

  .callout,
  .contact-card {
    padding: 18px;
  }
}
