:root {
  --bg: #0D0208;
  --surface: #210B16;
  --text: #FAE6FA;
  --muted: #D482A3;
  --primary: #FF3864;
  --secondary: #FFB8DE;
  --accent: #2DE2E2;
  --border: rgba(255, 56, 100, 0.2);
  --disclosure-bg: #FAE6FA;
  --disclosure-text: #210B16;
  --max-w: 1200px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

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

.disclosure-banner {
  background: var(--disclosure-bg);
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.disclosure-banner__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  max-width: 100%;
}

.disclosure-banner__icon {
  font-size: 12px;
  flex-shrink: 0;
  line-height: 1;
}

.disclosure-banner__text {
  font-size: 12px;
  color: var(--disclosure-text);
  line-height: 1.45;
  text-align: center;
  letter-spacing: -0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__marquee {
  height: 20px;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: block;
}

.site-header__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.site-header__marquee-track span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
  line-height: 20px;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header__main {
  height: 56px;
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo img {
  height: 32px;
  width: auto;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header__nav a {
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-drawer__list a {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.nav-drawer__list a:hover {
  color: var(--primary);
}

.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero__title {
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--text);
  flex: 1;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: var(--muted);
  letter-spacing: -0.02em;
  line-height: 1.5;
  max-width: 420px;
  text-align: right;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--surface);
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 2, 8, 0.88);
  pointer-events: none;
}

.offers-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-section__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.offers-section__intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.offer-card__logo-wrap {
  width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  font-size: 0.875rem;
  color: #fbbf24;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: #B6C2E2;
}

.offer-card__desc {
  font-size: 12px;
  color: #B6C2E2;
  line-height: 1.5;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #3B82F6;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  margin-top: auto;
  font-family: inherit;
  letter-spacing: -0.02em;
}

.offer-card__btn:hover {
  background: #3B82F6;
  color: #0f172a;
}

.info-sections {
  background: var(--bg);
}

.info-block {
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.info-block__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-block__index {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.info-block__kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.info-block__title {
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text);
}

.info-block__text {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.info-block__rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.layout-img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.layout-img-wrap--narrow {
  max-width: 420px;
  margin-top: 24px;
}

.layout-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.layout-pullquote {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

.layout-pullquote__aside {
  border-left: 3px solid var(--primary);
  padding-left: 16px;
}

.layout-pullquote__aside strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--primary);
  line-height: 1;
}

.layout-pullquote__aside span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.layout-headline-bar__rule {
  width: 80px;
  height: 3px;
  background: var(--primary);
  margin: 12px 0 20px;
}

.layout-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.layout-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 24px;
}

.layout-checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.layout-checklist__mark {
  color: var(--accent);
  font-weight: 800;
}

.layout-bg-photo {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
  position: relative;
}

.layout-bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 2, 8, 0.95) 40%, rgba(13, 2, 8, 0.4) 100%);
}

.layout-bg-photo__content {
  position: relative;
  z-index: 1;
  padding: 32px;
  max-width: 640px;
}

.layout-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.layout-stats-row__item {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 8px;
}

.layout-stats-row__item:last-child {
  border-right: none;
}

.layout-stats-row__item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.layout-stats-row__item span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.layout-mosaic__sidebar {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--surface);
}

.layout-mosaic__sidebar h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}

.layout-mosaic__sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.layout-mosaic__sidebar li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 12px;
  border-left: 2px solid var(--primary);
  letter-spacing: -0.02em;
}

.layout-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.layout-bento__main {
  grid-row: span 2;
  border: 1px solid var(--border);
  padding: 32px;
}

.layout-bento__side {
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--surface);
}

.layout-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.layout-centered .layout-img-wrap {
  margin: 24px auto 0;
}

.layout-glow-prose {
  border-left: 4px solid var(--primary);
  padding-left: 32px;
  max-width: 720px;
}

.layout-numbered-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

.layout-numbered-row__num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--primary);
  line-height: 1;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.site-footer__brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 360px;
  letter-spacing: -0.02em;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.site-footer__links a {
  color: var(--text);
  font-size: 0.8125rem;
  letter-spacing: -0.02em;
}

.site-footer__links a:hover {
  color: var(--primary);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.site-footer__badge img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.site-footer__badge:hover img {
  opacity: 1;
}

.site-footer__legal {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.site-footer__disclosure {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

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

.site-footer__cookie-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 2, 8, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 440px;
  width: 100%;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.modal__text {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--secondary);
  color: var(--bg);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 900;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
  letter-spacing: -0.02em;
}

.cookie-banner__text a {
  color: var(--primary);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subpage-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: 56px;
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

.subpage-header__logo img {
  height: 32px;
  width: auto;
}

.content-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.content-page h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.content-page h2 {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 32px 0 12px;
  color: var(--text);
}

.content-page p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.content-page ul {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 16px 20px;
}

.content-page li {
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.contact-form label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-family: inherit;
  border-radius: 4px;
  letter-spacing: -0.02em;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--primary);
  display: none;
}

.form-error.is-visible {
  display: block;
}

.contact-success {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  margin-top: 16px;
}

.contact-success p {
  color: var(--text);
  margin: 0;
}

.page-404 {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.page-404__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
}

.page-404__code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404__text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}

.redirect-page__box {
  text-align: center;
  max-width: 440px;
}

.redirect-page__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-page h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.redirect-page__text {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.redirect-page__ad {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.redirect-page__ad a {
  color: var(--primary);
}

@media (min-width: 900px) {
  .site-header__nav {
    display: flex;
  }

  .burger-btn {
    display: none;
  }
}

@media (max-width: 899px) {
  .site-header__marquee {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
    padding: 16px;
    text-align: center;
  }

  .hero__subtitle {
    text-align: center;
    max-width: 100%;
  }

  .layout-split,
  .layout-columns-2,
  .layout-mosaic,
  .layout-bento,
  .layout-pullquote,
  .layout-numbered-row {
    grid-template-columns: 1fr;
  }

  .layout-img-wrap {
    max-width: 100%;
    width: 100%;
  }

  .layout-img-wrap--narrow {
    max-width: 100%;
  }

  .layout-img-wrap img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
  }

  .layout-bg-photo {
    max-width: 100%;
    min-height: 200px;
  }

  .offer-card__logo-wrap {
    width: 200px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .layout-stats-row {
    grid-template-columns: 1fr;
  }

  .layout-stats-row__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }

  .layout-stats-row__item:last-child {
    border-bottom: none;
  }

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

  .site-footer__links {
    align-items: flex-start;
  }
}
