:root {
  --color-bg: #f8f6f3;
  --color-bg-hero: #ede9fe;
  --color-surface: #ffffff;
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-accent: #e11d48;
  --color-violet: #a855f7;
  --color-text: #1c1917;
  --color-text-muted: #57534e;
  --color-border: #e7e5e4;
  --color-topbar: #1e1b4b;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(99, 102, 241, 0.08);
  --shadow-nav: 0 1px 0 #e7e5e4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent);
}

.container {
  max-width: 1100px;
}

.topbar {
  background: var(--color-topbar);
  padding: 0.45rem 0;
}

.topbar__text {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
  color: #c7d2fe;
  letter-spacing: 0.01em;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  padding: 0.08rem 0.4rem;
  margin-right: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  background: var(--color-accent);
  border-radius: 3px;
  vertical-align: middle;
}

.topbar a {
  color: #fda4af;
  font-weight: 600;
  margin-left: 0.3rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  background: var(--color-surface);
  box-shadow: var(--shadow-nav);
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.brand__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.brand__dot {
  color: var(--color-primary);
}

.brand__tagline {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.navbar-toggler {
  border: 1.5px solid var(--color-border);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2828, 25, 23, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  gap: 0.35rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-primary-dark) !important;
  border-color: var(--color-border);
  background-color: #fafaf9;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.65rem;
    background: #fafaf9;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
  }

  .navbar-nav {
    gap: 0.2rem;
  }

  .nav-link {
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius-sm);
  }
}

.hero {
  padding: 2.25rem 0 2.75rem;
  background:
    linear-gradient(160deg, var(--color-bg-hero) 0%, var(--color-bg) 55%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.hero__inner {
  max-width: 680px;
  padding: 0.25rem 0 0 1.35rem;
  border-left: 4px solid var(--color-primary);
}

.hero__label {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  background: rgba(99, 102, 241, 0.12);
  border-radius: 999px;
}

.hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
}

@media (max-width: 575.98px) {
  .topbar__text {
    font-size: 0.65rem;
    line-height: 1.55;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .brand__icon {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 1.75rem 0 2.25rem;
  }

  .hero__inner {
    padding-left: 1rem;
    border-left-width: 3px;
  }
}

.listing {
  padding: 2.5rem 0 3.5rem;
}

.listing__header {
  margin-bottom: 1.75rem;
}

.listing__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
}

.listing__desc {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.offer__row {
  display: grid;
  grid-template-columns: 52px 130px 1fr 1.4fr 90px 140px;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
}

.offer__col {
  min-width: 0;
}

.offer__label {
  display: none;
}

.offer__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.offer__img {
  display: block;
  width: 100%;
  max-width: 120px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.offer__name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.offer__bonus {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary-dark);
}

.offer__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  background: linear-gradient(145deg, #fafaf9 0%, #f5f5f4 100%);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.offer__score-value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.offer__score-max {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 1px;
}

.offer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-accent) 0%, #be123c 100%);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer__btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.offer__disclaimer {
  padding: 0.65rem 1.35rem;
  background: #fafaf9;
  border-top: 1px dashed var(--color-border);
}

.offer__disclaimer p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #78716c;
}

@media (max-width: 991.98px) {
  .offer__row {
    grid-template-columns: 48px 1fr auto auto;
    grid-template-rows: auto auto auto;
    gap: 0.75rem 1rem;
    padding: 1.1rem 1.15rem;
  }

  .offer__col--rank {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
  }

  .offer__col--logo {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .offer__col--name {
    grid-column: 2;
    grid-row: 2;
  }

  .offer__col--score {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }

  .offer__col--cta {
    grid-column: 4;
    grid-row: 1;
    align-self: center;
  }

  .offer__col--bonus {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-top: 0.65rem;
    border-top: 1px solid var(--color-border);
  }

  .offer__label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
  }

  .offer__col--rank .offer__label,
  .offer__col--logo .offer__label,
  .offer__col--score .offer__label,
  .offer__col--cta .offer__label {
    display: none;
  }

  .offer__rank {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .offer__btn {
    width: auto;
    min-width: 110px;
    padding: 0.6rem 0.85rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  .listing {
    padding: 2rem 0 3rem;
  }

  .offer__row {
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .offer__col--rank {
    grid-row: 1;
  }

  .offer__col--logo {
    grid-column: 2;
    grid-row: 1;
  }

  .offer__col--name {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .offer__col--score {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .offer__score {
    padding: 0.35rem 0.55rem;
  }

  .offer__score-value {
    font-size: 1.15rem;
  }

  .offer__col--cta {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
  }

  .offer__col--bonus {
    grid-row: 4;
  }

  .offer__rank {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .offer__disclaimer {
    padding: 0.6rem 1.15rem;
  }
}

body.is-restricted .topbar,
body.is-restricted .site-header,
body.is-restricted main,
body.is-restricted .site-footer,
body.is-restricted .cookie-banner {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate[hidden],
.age-restricted[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
}

.age-gate__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.age-gate__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), #be123c);
  border-radius: 50%;
}

.age-gate__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
}

.age-gate__text,
.age-gate__question {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.age-gate__question {
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__btn {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.age-gate__btn--yes {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.age-gate__btn--yes:hover {
  transform: translateY(-1px);
}

.age-gate__btn--no {
  color: var(--color-text-muted);
  background: #f5f5f4;
  border: 1.5px solid var(--color-border);
}

.age-restricted {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, #1e1b4b 0%, #0f172a 100%);
}

.age-restricted__inner {
  max-width: 480px;
  text-align: center;
}

.age-restricted__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: var(--color-accent);
  border-radius: 50%;
}

.age-restricted__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
}

.age-restricted__text,
.age-restricted__help {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #c7d2fe;
}

.age-restricted__help a {
  color: #fda4af;
  text-decoration: underline;
}

.age-restricted__help a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.cookie-banner__text a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cookie-banner__btn {
  padding: 0.6rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.cookie-banner__link:hover {
  color: var(--color-primary-dark);
}

.site-footer {
  padding: 2.75rem 0 2rem;
  background: var(--color-topbar);
  color: #c7d2fe;
}

.footer__disclaimers {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.footer__disclaimer {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #a5b4fc;
}

.footer__disclaimer a {
  color: #fda4af;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__disclaimer a:hover {
  color: #fff;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(199, 210, 254, 0.15);
  border-bottom: 1px solid rgba(199, 210, 254, 0.15);
}

.footer__badge-link,
.footer__badge-static {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__badge-img {
  display: block;
  width: auto;
  max-width: 140px;
  height: 40px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer__badge-link:hover .footer__badge-img {
  opacity: 1;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e0e7ff;
}

.footer__nav a:hover {
  color: #fda4af;
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
  color: #818cf8;
}

.page-content {
  padding: 2.5rem 0 3.5rem;
}

.page-content__inner {
  max-width: 720px;
}

.page-content__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
}

.page-content__updated {
  margin: 0 0 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.page-content h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.page-content p,
.page-content li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.page-content a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-form__input,
.contact-form__textarea {
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .age-gate__dialog {
    padding: 1.5rem 1.25rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }

  .footer__badges {
    gap: 0.85rem 1rem;
  }

  .footer__badge-img {
    max-width: 110px;
    height: 32px;
  }
}
