:root {
  --bg: #0F0A13;
  --surface: #1A1224;
  --text: #FDF2F8;
  --muted: #F9A8D4;
  --primary: #EC4899;
  --secondary: #A78BFA;
  --accent: #F472B6;
  --border: rgba(253,242,248,0.12);
  --clean: clean;
  --sterile: sterile;
  --precise: precise;
  --analytical: analytical;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(168deg, var(--bg) 0%, var(--surface) 45%, rgba(15, 10, 19, 1) 100%),
    radial-gradient(ellipse 65% 50% at 85% 5%, rgba(236, 72, 153, 0.14) 0%, transparent 55%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  white-space: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(253, 242, 248, 0.02) 79px,
      rgba(253, 242, 248, 0.02) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(167, 139, 250, 0.025) 79px,
      rgba(167, 139, 250, 0.025) 80px
    );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(167, 139, 250, 0.07) 0%, transparent 42%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.clean {
  letter-spacing: 0.04em;
}

.sterile {
  border: 1px solid var(--border);
}

.precise {
  font-variant-numeric: tabular-nums;
}

.analytical {
  font-feature-settings: "tnum" 1;
}

.disclosure-banner {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: 0;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  min-height: 68px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--accent);
}

.logo-link img {
  width: 48px;
  height: 10px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 19, 0.85);
  z-index: 190;
}

.nav-overlay.open {
  display: block;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 24px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-mobile a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1;
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.page-main h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.page-main h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--accent);
}

.page-main h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.page-main p {
  margin-bottom: 14px;
  color: var(--text);
}

.page-main ul {
  margin: 0 0 16px 20px;
}

.page-main li {
  margin-bottom: 8px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text);
  text-decoration: none;
}

.footer-brand img {
  width: 48px;
  height: 10px;
  object-fit: contain;
}

.footer-brand span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-requisites {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 10, 19, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.active {
  display: flex;
}

.age-gate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
}

.age-gate-card h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.age-gate-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--accent);
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--muted);
  transform: scale(1.03);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.offers-section {
  position: relative;
  background-image: linear-gradient(rgba(15, 10, 19, 0.88), rgba(26, 18, 36, 0.92)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offers-header {
  text-align: center;
  margin-bottom: 36px;
}

.offers-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.offers-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}

.offer-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.offer-card-logo {
  width: 180px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-bonus {
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  hyphens: auto;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 22px;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}

.offer-cta:hover {
  background: #16a34a;
  transform: scale(1.04);
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--primary);
}

.email-error {
  display: none;
  font-size: 12px;
  color: var(--accent);
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.go-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.go-box {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
}

.go-ad {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.go-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-box h1 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.go-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.go-compliance {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.go-compliance a {
  color: var(--accent);
}

.not-found {
  text-align: center;
  padding: 80px 24px;
}

.not-found h1 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.not-found p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .site-header {
    clip-path: none;
    min-height: 60px;
  }
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn-primary,
  .cookie-actions .btn-secondary {
    width: 100%;
  }

  .age-gate-actions {
    width: 100%;
  }

  .offer-card-logo {
    width: 160px;
    height: 56px;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-img,
  .decor-wrap img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
  }

  .decor-wrap {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
  }

  .offers-section {
    background-size: cover;
    overflow: hidden;
  }

  .footer-badges {
    max-width: 100%;
    overflow: hidden;
  }
}
