:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #F97316;
  --secondary: #FB923C;
  --accent: #22C55E;
  --border: rgba(250, 250, 250, 0.12);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  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(--primary);
}

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

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  border-radius: 4px;
}

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

.disclosure-bar {
  width: 100%;
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #0a0a0a;
  box-shadow: 0 1px 6px rgba(249, 115, 22, 0.35);
  border-bottom: 1px solid var(--border);
}

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

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar__links a {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.navbar__links a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

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

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

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

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

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(10, 10, 10, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.nav-overlay a {
  color: var(--text);
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  padding: 14px 24px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-overlay a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  overflow: hidden;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(249, 115, 22, 0.15) 100%);
}

.hero__blob {
  position: absolute;
  border-radius: 50% 40% 60% 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.hero__blob--1 {
  width: 320px;
  height: 280px;
  background: var(--primary);
  top: -60px;
  right: -80px;
}

.hero__blob--2 {
  width: 260px;
  height: 240px;
  background: var(--accent);
  bottom: -40px;
  left: -60px;
}

.hero__card {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero__card h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.hero__card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.wave-divider {
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0,24 C200,48 400,0 600,24 C800,48 1000,0 1200,24 L1200,48 L0,48 Z' fill='%231414'/%3E%3C/svg%3E") center / cover no-repeat;
}

.offers {
  position: relative;
  padding: 64px 0 72px;
  background: var(--surface);
  overflow: hidden;
}

.offers__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.88)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.offers .wrap {
  position: relative;
  z-index: 1;
}

.offers h2 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.85rem;
}

.offers__sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 36px;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

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

.offer-card__body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  text-align: center;
}

.offer-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #0b1f33;
  margin: 0;
}

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

.offer-card__bonus {
  font-size: 15px;
  font-weight: 600;
  color: #003566;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.offer-card__terms {
  font-size: 11px;
  color: #6b7a8d;
  margin: 0;
}

.offer-card__cta {
  margin-top: auto;
  display: inline-block;
  background: #38BDF8;
  color: #020617;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: center;
}

.offer-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}

.info {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

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

.info__blob {
  position: absolute;
  border-radius: 60% 40% 50% 70%;
  filter: blur(50px);
  opacity: 0.2;
  pointer-events: none;
}

.info__blob--orange {
  background: var(--primary);
  width: 200px;
  height: 180px;
}

.info__blob--green {
  background: var(--accent);
  width: 180px;
  height: 160px;
}

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

.layout-split__aside {
  position: relative;
}

.layout-split__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}

.layout-split__img-wrap img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.layout-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.layout-banner__decor {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.layout-banner__inner {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.92) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
}

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

.layout-zigzag--reverse {
  direction: rtl;
}

.layout-zigzag--reverse > * {
  direction: ltr;
}

.layout-zigzag__visual {
  border-radius: 24px;
  overflow: hidden;
  max-width: 480px;
}

.layout-zigzag__visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

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

.layout-cards__item {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 0.9rem;
}

.layout-accent {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, transparent 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
}

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

.layout-numbered {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.layout-numbered__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.layout-float {
  position: relative;
  padding-left: 200px;
  min-height: 240px;
}

.layout-float__img-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  overflow: hidden;
  max-width: 180px;
}

.layout-float__img-wrap img {
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.layout-timeline {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-left: 2px solid var(--primary);
}

.layout-timeline li {
  position: relative;
  padding: 0 0 20px 28px;
  color: var(--muted);
}

.layout-timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.layout-cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.layout-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.layout-cta__inner {
  position: relative;
  z-index: 1;
  padding: 48px;
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}

.layout-quote {
  border-left: 4px solid var(--primary);
  padding: 24px 32px;
  background: rgba(249, 115, 22, 0.06);
  border-radius: 0 16px 16px 0;
  font-style: italic;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 12px 0 0;
}

.footer__links h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 12px;
}

.footer__links a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s ease;
}

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

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer__badges img {
  height: 48px;
  width: auto;
}

.footer__se-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 900px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 16px 0 0;
}

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

.modal.active {
  display: flex;
}

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

.modal__box h2 {
  margin: 0 0 12px;
}

.modal__box p {
  color: var(--muted);
  margin: 0 0 24px;
}

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

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

.cookie.active {
  display: flex;
}

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

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

.btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.btn--primary:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

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

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

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

.prose {
  max-width: 760px;
}

.prose h1 {
  margin: 0 0 24px;
}

.prose h2 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
}

.prose p {
  color: var(--muted);
  margin: 0 0 16px;
}

.prose ul {
  color: var(--muted);
  padding-left: 24px;
  margin: 0 0 16px;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: var(--text);
}

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

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

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

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

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

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

.form-success {
  display: none;
  padding: 32px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  margin-top: 24px;
}

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

.form-success h2 {
  margin: 0 0 8px;
  color: var(--accent);
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

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

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

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

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

.ad-flag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.redirect__meta {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.redirect__meta p {
  margin: 6px 0;
}

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

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

.error-page h1 {
  font-size: 4rem;
  color: var(--primary);
  margin: 0 0 12px;
}

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: flex;
  }

  .layout-split,
  .layout-zigzag,
  .layout-columns {
    grid-template-columns: 1fr;
  }

  .layout-zigzag--reverse {
    direction: ltr;
  }

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

  .layout-float {
    padding-left: 0;
    padding-top: 0;
  }

  .layout-float__img-wrap {
    position: static;
    transform: none;
    max-width: 280px;
    margin: 0 auto 24px;
  }

  .layout-numbered {
    flex-direction: column;
    gap: 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__card {
    max-width: 90%;
    padding: 24px;
  }

  .hero {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .offers__grid {
    grid-template-columns: 1fr;
  }

  .offer-card__logo {
    width: 260px;
    height: 100px;
  }

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

  .cookie {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie__actions {
    justify-content: stretch;
  }

  .cookie__actions .btn {
    flex: 1;
  }
}

@media (max-width: 375px) {
  body {
    overflow-x: hidden;
  }

  .wrap {
    padding: 0 16px;
  }

  .hero {
    padding: 32px 16px;
    min-height: 280px;
  }

  .layout-split__img-wrap,
  .layout-zigzag__visual,
  .layout-float__img-wrap,
  .layout-banner {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .layout-split__img-wrap img,
  .layout-zigzag__visual img,
  .layout-float__img-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 200px;
  }

  .info {
    overflow-x: hidden;
  }

  .info__blob {
    max-width: 45vw;
  }

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

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