:root {
  --bg: #09090B;
  --surface: #18181B;
  --text: #FAFAFA;
  --muted: #71717A;
  --primary: #22C55E;
  --secondary: #27272A;
  --accent: #4ADE80;
  --border: rgba(34,197,94,0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial Narrow", "Helvetica Condensed", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(74, 222, 128, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #0c0c0f 40%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

.disclosure-banner {
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  color: var(--text);
  background: linear-gradient(to right, rgba(34, 197, 94, 0.15), rgba(39, 39, 42, 0.15));
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 52px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-lockup img {
  width: 36px;
  height: 34px;
  object-fit: contain;
}

.nav-cta {
  margin-left: auto;
  margin-right: 12px;
  padding: 6px 14px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
}

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

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

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

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

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.65);
  z-index: 1100;
  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: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 72px 24px 32px;
  overflow-y: auto;
}

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

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a {
  display: block;
  padding: 12px 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
}

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

.festival {
  position: relative;
}

.promo {
  letter-spacing: -0.03em;
}

.energetic {
  transform: rotate(-0.4deg);
}

.campaign {
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(34, 197, 94, 0.04) 18px,
      rgba(34, 197, 94, 0.04) 19px
    );
}

.loud {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.bold {
  font-weight: 800;
}

.hero {
  position: relative;
  width: 100%;
  padding: 64px 16px 80px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.08), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(74, 222, 128, 0.12), transparent 45%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 65%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--border);
  padding: 48px;
  text-align: center;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-card .hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36ch;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero-card {
    padding: 24px;
  }
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.offers-section {
  position: relative;
  padding: 72px 0;
  margin-top: -28px;
  background-color: var(--secondary);
  background-image:
    linear-gradient(180deg, rgba(9, 9, 11, 0.72), rgba(9, 9, 11, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offers-section::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 8%;
  right: 8%;
  height: 36px;
  background: var(--primary);
  opacity: 0.15;
  transform: skewY(-1.5deg);
  pointer-events: none;
}

.offers-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

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

.offer-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.offer-logo {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-card .offer-name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

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

.offer-card .offer-bonus {
  font-size: clamp(13px, 2.5vw, 16px);
  font-weight: 500;
  color: #ffd700;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.offer-card .offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 4px;
}

.offer-card .offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.offer-card .btn-offer {
  display: inline-block;
  padding: 10px 28px;
  background: #e94560;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
  margin-top: auto;
}

.offer-card .btn-offer:hover {
  background: #ff6b6b;
  color: #fff;
}

.info-block {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.info-block:nth-child(even) {
  background: rgba(24, 24, 27, 0.55);
}

.info-block h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.05;
}

.info-block p {
  color: rgba(250, 250, 250, 0.82);
  margin-bottom: 12px;
  max-width: 70ch;
}

.topic-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.topic-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

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

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

.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.layout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
}

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

.layout-quote {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.pull-quote {
  background: var(--primary);
  color: var(--bg);
  padding: 28px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  display: flex;
  align-items: center;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  border: 1px solid var(--border);
  padding: 14px;
  background: rgba(34, 197, 94, 0.06);
}

.timeline {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item strong {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.check-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.check-list li {
  padding: 12px 14px 12px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

.media-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.stat-band div {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
}

.callout-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.14), rgba(24, 24, 27, 0.9));
  border: 1px solid var(--border);
}

.callout-center p {
  margin-left: auto;
  margin-right: auto;
}

.faq-look {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.faq-item {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.bg-decor-band {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  margin: 16px 0;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand img {
  width: 40px;
  height: 37px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

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

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-requisites {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 28px;
  text-align: center;
}

.modal h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.page-hero {
  padding: 48px 16px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.12), transparent 55%);
}

.page-hero h1 {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.legal-content,
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 16px 64px;
}

.legal-content h2,
.page-content h2 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.legal-content h3,
.page-content h3 {
  margin: 20px 0 8px;
  font-size: 1.1rem;
}

.legal-content p,
.page-content p,
.legal-content li,
.page-content li {
  margin-bottom: 10px;
  color: rgba(250, 250, 250, 0.85);
}

.legal-content ul,
.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

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

.field-error {
  color: #f87171;
  font-size: 0.85rem;
  display: none;
}

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

.form-success {
  display: none;
  padding: 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--border);
  margin-top: 20px;
}

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

.hidden {
  display: none !important;
}

.redirect-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  gap: 16px;
}

.redirect-page .ad-label {
  font-weight: 800;
  color: var(--accent);
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.redirect-notes {
  max-width: 480px;
  color: var(--muted);
  font-size: 0.9rem;
}

.not-found {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 16px;
  gap: 16px;
}

.not-found h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .layout-split,
  .layout-quote,
  .media-row {
    grid-template-columns: 1fr;
  }

  .layout-steps,
  .stat-band,
  .mini-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .offer-logo {
    width: 150px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .decor-img,
  .decor-clip,
  .decor-clip img,
  .bg-decor-band,
  .rail,
  .side-rail,
  .guide-figure,
  .guide-figure img,
  .guide-band,
  .chooser-visual,
  .chooser-visual img,
  .boost-visual,
  .boost-visual img,
  .boost-mosaic,
  .resp-visual,
  .resp-visual img {
    max-width: 100%;
    box-sizing: border-box;
  }

  .decor-img,
  .guide-figure img,
  .chooser-visual img,
  .boost-visual img,
  .resp-visual img {
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .bg-decor-band,
  .guide-band,
  .rail {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    background-size: cover;
    background-position: center;
  }

  .side-rail {
    overflow: hidden;
  }

  .info-block,
  .section-wrap,
  .offers-section,
  .hero {
    overflow-x: hidden;
  }
}

@keyframes pulse-loud {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes slide-up-festival {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes promo-flash {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.04);
  }
}

@keyframes energetic-pop {
  from {
    transform: scale(0.98);
  }
  to {
    transform: scale(1);
  }
}

@keyframes campaign-shift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}

@keyframes bold-hit {
  0%,
  100% {
    letter-spacing: -0.02em;
  }
  50% {
    letter-spacing: -0.01em;
  }
}

.hero-card {
  animation: slide-up-festival 0.7s ease both, energetic-pop 0.6s ease both;
}

.offers-title {
  animation: pulse-loud 3.5s ease-in-out infinite, promo-flash 4s ease-in-out infinite;
}

.campaign {
  animation: campaign-shift 18s linear infinite;
}

.loud {
  animation: bold-hit 5s ease-in-out infinite;
}

.info-block h2 {
  transition: color 0.25s ease;
}

.info-block:hover h2 {
  color: var(--accent);
}
