:root {
  --bg: #120D02;
  --surface: #1F1704;
  --text: #FFFAF0;
  --muted: #D4A373;
  --primary: #FF9F1C;
  --secondary: #FFBF69;
  --accent: #2EC4B6;
  --border: rgba(255, 159, 28, 0.2);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent);
  transition: color 0.25s ease;
}

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

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.disclosure-banner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 16px 10px 20px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  color: #1a1208;
  background: #fffef8;
  border-left: 4px solid #f59e0b;
  position: relative;
  z-index: 2100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg);
}

.header-top {
  background: #0a0701;
  border-bottom: 1px solid var(--border);
}

.header-top__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.header-top__email a {
  color: var(--muted);
  text-decoration: none;
}

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

.header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 2px 8px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.header-main {
  height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-main__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

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

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--surface);
  z-index: 960;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 72px 28px 32px;
  border-left: 1px solid var(--border);
  overflow-y: auto;
}

.nav-drawer.active {
  transform: translateX(0);
}

.nav-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}

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

.nav-drawer li {
  border-bottom: 1px solid var(--border);
}

.nav-drawer a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

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

.hero-split {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.hero-block {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.hero-block--left {
  background: var(--primary);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 36px 32px;
}

.hero-block--right {
  background: var(--secondary);
  min-height: 240px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 28px;
}

.hero-block--right .hero-decor-wrap {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: min(200px, 45%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-block--right .hero-decor-wrap img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  filter: grayscale(20%);
}

.hero-block h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--bg);
  margin: 0;
  max-width: 520px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--bg);
  margin: 0;
  max-width: 280px;
  text-align: right;
  font-weight: 600;
  line-height: 1.45;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 13, 2, 0.92) 0%, rgba(31, 23, 4, 0.88) 100%);
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 8px;
}

.offers-header p {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.offer-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 360px;
}

.offer-card__logo-wrap {
  background: #fff;
  width: 280px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card__name {
  font-size: 1.15rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.offer-bonus-group {
  margin-bottom: 14px;
}

.offer-card__bonus {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 4px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.offer-card__terms {
  display: block;
  font-size: 11px;
  color: #9ca3af;
}

.offer-card__desc {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 14px;
  line-height: 1.45;
}

.offer-cta {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  background: #ffd700;
  color: #1a1a2e;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: auto;
}

.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.info-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

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

.decor-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.decor-frame img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

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

.info-1__grid h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 16px;
}

.info-2__band {
  border-left: 4px solid var(--primary);
  padding: 28px 32px;
  background: rgba(255, 159, 28, 0.06);
  border-radius: 0 6px 6px 0;
}

.info-2__band h2 {
  margin-bottom: 14px;
}

.info-3__columns {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.info-3__visual {
  background: var(--bg);
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.info-4__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}

.info-card strong {
  display: block;
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 14px;
}

.info-5__timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 20px;
}

.info-5__timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border);
}

.info-5__step {
  position: relative;
  margin-bottom: 20px;
  padding-left: 16px;
}

.info-5__step::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
}

.info-6__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-6__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.info-pill {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--muted);
}

.info-7__quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.info-7__quote h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.info-7__quote p {
  font-size: 1.05rem;
  color: var(--muted);
}

.info-8__zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-8__block {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.info-8__block:nth-child(odd) {
  transform: translateY(12px);
}

.info-9__checklist {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
}

.info-9__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.info-9__list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.info-9__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.info-10__feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-10__item {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.info-10__item span {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.site-footer {
  background: #0a0701;
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  flex-shrink: 0;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-badges a,
.footer-badges span {
  display: block;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

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

.footer-copy {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal__box h2 {
  margin-bottom: 12px;
  color: var(--primary);
}

.modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: background 0.25s ease, color 0.25s ease;
}

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

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

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

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie.active {
  transform: translateY(0);
}

.cookie p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

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

.page-main {
  padding: 48px 0 72px;
}

.prose {
  max-width: 760px;
}

.prose h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 20px;
  color: var(--primary);
}

.prose h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--secondary);
}

.prose h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 15px;
}

.prose ul {
  padding-left: 20px;
}

.prose a {
  color: var(--accent);
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-error {
  display: none;
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
}

.field-error.active {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(46, 196, 182, 0.12);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--text);
}

.form-success.active {
  display: block;
}

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

.redirect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 480px;
  text-align: center;
}

.ad-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.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.9s linear infinite;
}

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

.redirect-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

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

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .header-top {
    display: none;
  }

  :root {
    --header-h: 56px;
  }

  .nav-desktop {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-block--left,
  .hero-block--right {
    min-height: 200px;
  }

  .info-1__grid,
  .info-3__columns,
  .info-6__split,
  .info-8__zigzag,
  .info-9__checklist {
    grid-template-columns: 1fr;
  }

  .info-4__cards {
    grid-template-columns: 1fr;
  }

  .info-10__feature {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-8__block:nth-child(odd) {
    transform: none;
  }
}

@media (max-width: 480px) {
  .info-10__feature {
    grid-template-columns: 1fr;
  }

  .hero-split {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-decor-wrap {
    width: min(140px, 38%);
    max-width: calc(100% - 24px);
    overflow: hidden;
  }

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

  .decor-frame {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-frame img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
  }

  .offer-card__logo-wrap {
    width: 240px;
    height: 96px;
  }

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