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

:root {
  --bg: #1C1917;
  --surface: #292524;
  --text: #FAFAF9;
  --muted: #A8A29E;
  --primary: #92400E;
  --secondary: #CA8A04;
  --accent: #65A30D;
  --border: rgba(250, 250, 249, 0.12);
  --disclosure-bg: #F5F5F4;
  --disclosure-text: #57534E;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --nav-h: 56px;
  --max-w: 1140px;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

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

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

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

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

.disclosure-bar {
  position: relative;
  width: 100%;
  background: var(--disclosure-bg);
  padding: 8px 16px 14px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--disclosure-text);
  flex-shrink: 0;
}

.disclosure-bar__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12px;
  line-height: 0;
  pointer-events: none;
}

.disclosure-bar__wave svg {
  display: block;
  width: 100%;
  height: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  width: 100%;
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  box-shadow: 0 0 8px var(--primary);
  background: var(--primary);
}

.navbar {
  width: 100%;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.nav-desktop {
  display: none;
  list-style: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.25s ease, width 0.25s ease;
}

.nav-desktop a:hover {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

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

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

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

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

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  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 ul {
  list-style: none;
  text-align: center;
}

.nav-drawer li + li {
  margin-top: 28px;
}

.nav-drawer a {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-burger {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28, 25, 23, 0.82) 0%, rgba(41, 37, 36, 0.75) 100%);
}

.hero__blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  opacity: 0.18;
  pointer-events: none;
}

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

.hero__blob--2 {
  width: 200px;
  height: 180px;
  background: var(--accent);
  bottom: -30px;
  left: -40px;
}

.hero__ribbon {
  position: relative;
  z-index: 1;
  background: var(--accent);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  transform: rotate(-2deg);
  width: min(92%, 760px);
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero__headline {
  font-size: clamp(1.15rem, 3.2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  position: relative;
  z-index: 1;
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  color: #fff;
  text-align: center;
  max-width: 620px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 32px 16px 40px;
  }

  .hero__ribbon {
    transform: none;
    height: auto;
    min-height: 52px;
    padding: 12px 16px;
  }
}

.wave-divider {
  width: 100%;
  height: 48px;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

.offers-section {
  padding: 64px 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(145deg, rgba(28, 25, 23, 0.93) 0%, rgba(41, 37, 36, 0.88) 50%, rgba(28, 25, 23, 0.94) 100%);
}

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

.offers-section h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}

.offers-section__sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.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;
}

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

.offer-card__bonus {
  color: #e0e0e0;
  font-size: 13px;
  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-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;
  border-radius: 6px;
  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-sections {
  position: relative;
}

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

.info-block:nth-child(odd) {
  background: var(--bg);
}

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

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

.info-block__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-block h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 16px;
  color: var(--text);
}

.info-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.info-block__blob {
  position: absolute;
  border-radius: 55% 45% 50% 50% / 48% 52% 48% 52%;
  opacity: 0.12;
  pointer-events: none;
}

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

.info-block--split .glass-panel {
  background: rgba(41, 37, 36, 0.65);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.info-block__visual {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

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

.info-block--centered .info-block__inner {
  text-align: center;
  max-width: 720px;
}

.info-block--centered .glass-panel {
  background: rgba(41, 37, 36, 0.55);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
}

.info-block--quote .info-block__inner {
  max-width: 780px;
  border-left: 4px solid var(--accent);
  padding-left: 28px;
}

.info-block--quote .info-block__blob {
  width: 320px;
  height: 260px;
  background: var(--primary);
  top: -60px;
  right: -80px;
}

.info-block--cards .info-block__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-block--cards .info-card {
  background: rgba(28, 25, 23, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.info-block--cards .info-card h3 {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.info-block--cards .info-card p {
  font-size: 14px;
}

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

.info-block--numbered .info-block__num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}

.info-block--diagram .info-block__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.info-block__diagram-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.info-block__diagram-row span {
  font-size: 13px;
  color: var(--muted);
  min-width: 90px;
}

.info-block__diagram-bar {
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
  flex: 1;
}

.info-block--overlap .info-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.info-block--overlap .info-block__text {
  background: rgba(41, 37, 36, 0.85);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  z-index: 2;
  margin-right: -40px;
}

.info-block--overlap .info-block__visual {
  position: relative;
  z-index: 1;
  margin-left: -20px;
}

.info-block--table .info-block__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.info-block--table th,
.info-block--table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-block--table th {
  color: var(--secondary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-block--table td {
  color: var(--muted);
}

.info-block--stack .info-block__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block--stack .info-stack-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(41, 37, 36, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.info-block--stack .info-stack-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.info-block--zigzag .info-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.info-block--zigzag .info-block__visual {
  order: 2;
}

.info-block--pill .info-block__inner {
  background: linear-gradient(135deg, rgba(146, 64, 14, 0.25), rgba(101, 163, 13, 0.15));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px 36px;
}

.info-block--pill .info-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-block--pill .info-pill-tags span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .info-block--split .info-block__inner,
  .info-block--diagram .info-block__inner,
  .info-block--overlap .info-block__inner,
  .info-block--zigzag .info-block__inner,
  .info-block--cards .info-block__inner {
    grid-template-columns: 1fr;
  }

  .info-block--overlap .info-block__text {
    margin-right: 0;
  }

  .info-block--overlap .info-block__visual {
    margin-left: 0;
  }

  .info-block--zigzag .info-block__visual {
    order: 0;
  }

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

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

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

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 280px;
}

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

.footer__links a {
  font-size: 14px;
  color: var(--muted);
}

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

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

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

.footer__legal {
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer__updated {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
}

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

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

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

.modal h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.modal p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.modal__btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.modal__btn--primary {
  background: var(--primary);
  color: #fff;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-settings {
  display: none;
  margin-top: 16px;
  text-align: left;
}

.cookie-settings.open {
  display: block;
}

.cookie-settings label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.page-hero {
  padding: 48px 24px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
  font-size: 15px;
}

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

.page-content h2 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--text);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

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

.contact-form {
  margin-top: 32px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  margin-bottom: 16px;
}

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

.contact-form__error {
  display: none;
  font-size: 13px;
  color: #ef4444;
  margin-top: -12px;
  margin-bottom: 12px;
}

.contact-form__error.visible {
  display: block;
}

.contact-form__submit {
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
}

.contact-success {
  display: none;
  background: rgba(101, 163, 13, 0.15);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

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

.contact-success h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-success p {
  color: var(--muted);
  font-size: 15px;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
  max-width: 520px;
  margin: 0 auto;
}

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

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

.error-page a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

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

.redirect-page__ad {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.redirect-page h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.redirect-page p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

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

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

.redirect-page__compliance a {
  color: var(--secondary);
}

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

@media (max-width: 768px) {
  .offer-card__logo-wrap {
    width: 240px;
    height: 103px;
  }

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

  .info-block {
    padding: 48px 16px;
    overflow: hidden;
  }

  .info-block__visual {
    max-width: 100%;
    width: 100%;
    max-height: 240px;
  }

  .info-block__visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
  }

  .info-block--overlap .info-block__text {
    margin-right: 0;
  }

  .info-block--overlap .info-block__visual {
    margin-left: 0;
    max-width: 100%;
  }

  .hero {
    overflow: hidden;
  }
}
