:root {
  --bg-deep: #0b0612;
  --bg-panel: #120a1c;
  --ink: #f4f1ff;
  --muted: #b9b0cf;
  --gold: #f0c14b;
  --gold-dim: #c4932a;
  --violet: #7c3aed;
  --teal: #14f5c9;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(124, 58, 237, 0.35), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(20, 245, 201, 0.12), transparent 50%),
    linear-gradient(165deg, #07040d, #0b0612 40%, #08050f);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: none;
}

.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;
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(11, 6, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240, 193, 75, 0.12);
}

.navbar {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar__brand img {
  width: 200px;
  height: 48px;
  max-width: min(200px, 52vw);
  object-fit: contain;
}

.navbar__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 193, 75, 0.35);
  background: rgba(18, 10, 28, 0.9);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.navbar__toggle-bar {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.navbar__nav {
  display: flex;
  align-items: center;
}

.navbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
  background: transparent;
}

.navbar__link:hover {
  border-color: rgba(240, 193, 75, 0.35);
  background: rgba(124, 58, 237, 0.12);
}

.site-main {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 1.1rem 3rem;
}

.hero {
  position: relative;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  padding: 1.75rem 1.5rem 1.85rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(18, 10, 28, 0.92));
  border: 1px solid rgba(240, 193, 75, 0.22);
  box-shadow: var(--shadow-soft);
}

.hero__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background: radial-gradient(circle at 30% 20%, rgba(20, 245, 201, 0.22), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(240, 193, 75, 0.18), transparent 40%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.hero__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 899px) {
  .navbar__toggle {
    display: inline-flex;
  }

  .navbar__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.75rem 1.1rem 1rem;
    background: rgba(11, 6, 18, 0.97);
    border-bottom: 1px solid rgba(240, 193, 75, 0.15);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
    display: none;
  }

  .navbar__nav.is-open {
    display: block;
  }

  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .navbar__link {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-md);
  }

  body.nav-open .navbar__toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 2rem 2rem 2.1rem;
  }
}

.offers-section {
  margin-top: 2rem;
}

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-row {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(18, 10, 28, 0.95), rgba(11, 6, 18, 0.98));
  border: 1px solid rgba(240, 193, 75, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.offer-rank {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 0.25rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 2;
}

.offer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: flex-start;
}

.offer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 75px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.offer-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.offer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.offer-stars {
  display: inline-flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
}

.star--full {
  color: var(--gold);
}

.star--empty {
  color: #4a4a6a;
}

.star--half {
  color: var(--gold);
}

.offer-rating-count {
  font-size: 0.75rem;
  color: var(--muted);
}

.offer-bonus-headline {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}

.offer-bonus-full {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(240, 193, 75, 0.35);
}

.offer-btn:hover {
  box-shadow: 0 6px 24px rgba(240, 193, 75, 0.5);
}

.offer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 193, 75, 0.1);
}

.offer-section-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.offer-payments {
  min-width: 0;
}

.offer-payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.offer-payment-badge {
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 999px;
}

.offer-payment-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  border: 1px solid rgba(240, 193, 75, 0.15);
}

.offer-payment-img img {
  height: 20px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
}

.offer-terms {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(240, 193, 75, 0.08);
  font-size: 0.68rem;
  color: var(--muted);
  opacity: 0.8;
  line-height: 1.45;
}

.responsible-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(124, 58, 237, 0.1);
  border-left: 3px solid var(--violet);
  border-radius: var(--radius-md);
}

.responsible-note p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.responsible-note a {
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 768px) {
  .offer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-logo-wrap {
    margin: 0 auto;
    width: 100px;
    height: 65px;
  }

  .offer-header {
    justify-content: center;
  }

  .offer-bonus-headline {
    font-size: 1rem;
  }

  .offer-bonus-full {
    font-size: 0.82rem;
  }

  .offer-cta {
    align-items: center;
    margin-top: 0.75rem;
  }

  .offer-payments-list {
    justify-content: center;
  }

  .offer-terms {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .offer-row {
    padding: 1.5rem 1.75rem;
  }

  .offer-logo-wrap {
    width: 130px;
    height: 85px;
  }

  .offer-btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  .offer-bonus-headline {
    font-size: 1.15rem;
  }
}

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(11, 6, 18, 0.95), rgba(7, 4, 13, 1));
  border-top: 1px solid rgba(240, 193, 75, 0.15);
}

.footer-inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 2.5rem 1.1rem 1.5rem;
}

.footer-responsible {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.footer-age-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #c1121f, #7f0d16);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(193, 18, 31, 0.4);
}

.footer-responsible-content h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-responsible-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-disclaimers {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240, 193, 75, 0.1);
}

.footer-disclaimer-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  align-items: center;
}

.footer-disclaimer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.footer-disclaimer-link img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240, 193, 75, 0.1);
}

.footer-column h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-affiliate {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(240, 193, 75, 0.08);
  border: 1px solid rgba(240, 193, 75, 0.15);
  border-radius: var(--radius-md);
}

.footer-affiliate p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer-affiliate strong {
  color: var(--gold);
}

.footer-age-warning {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(193, 18, 31, 0.1);
  border: 1px solid rgba(193, 18, 31, 0.25);
  border-radius: var(--radius-md);
}

.footer-age-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #c1121f, #7f0d16);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.footer-age-warning p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 193, 75, 0.08);
}

.footer-bottom p {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.8;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-responsible {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-age-warning {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer-link img {
    height: 26px;
  }
}

.page-content {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.page-content h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.content-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(18, 10, 28, 0.95), rgba(11, 6, 18, 0.98));
  border: 1px solid rgba(240, 193, 75, 0.12);
  border-radius: var(--radius-lg);
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.content-section h3 {
  margin: 1rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.content-section p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section strong {
  color: var(--ink);
}

.contact-email {
  padding: 0.75rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--violet);
}

@media (max-width: 768px) {
  .content-section {
    padding: 1.25rem;
  }

  .content-section h2 {
    font-size: 1.05rem;
  }

  .content-section p {
    font-size: 0.88rem;
  }
}
