:root {
  --bg: #FFF0F0;
  --surface: #FFFFFF;
  --text: #5C2A2A;
  --muted: #B38686;
  --primary: #FF4D4D;
  --secondary: #FF8080;
  --accent: #FFB3B3;
  --border: rgba(255, 77, 77, 0.1);
  --nav-bg: #1a0a0a;
  --max-w: 1200px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1 0 auto;
}

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

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

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

.disclosure-bar {
  width: 100%;
  background: #0a0a0a;
  color: #7cfc7c;
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  padding: 6px 16px;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

.nav-desktop a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--nav-bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-drawer a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.hero-mosaic__cell {
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.15;
}

.hero-mosaic__cell:nth-child(1) {
  grid-row: span 2;
  background-image: url("/images/decorative/decor_1.jpg");
}

.hero-mosaic__cell:nth-child(2) {
  background-image: url("/images/decorative/decor_2.jpg");
}

.hero-mosaic__cell:nth-child(3) {
  background-image: url("/images/decorative/decor_3.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 10, 0.82);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--surface);
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 240, 240, 0.92);
  pointer-events: none;
}

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

.offers-head {
  text-align: center;
  margin-bottom: 36px;
}

.offers-head h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.offers-head p {
  color: var(--muted);
  font-size: 0.9375rem;
}

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

.offer-card {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.offer-card__logo-wrap {
  width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

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

.offer-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

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

.offer-card__bonus {
  font-size: 0.875rem;
  color: #fbbf24;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: #B6C2E2;
}

.offer-card__desc {
  font-size: 12px;
  color: #B6C2E2;
  line-height: 1.5;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #3B82F6;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  margin-top: auto;
  font-family: inherit;
}

.offer-card__btn:hover {
  background: #3B82F6;
  color: #0f172a;
}

.info-section {
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

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

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

.info-section h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text);
}

.info-text {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

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

.data-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.data-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(92, 42, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.data-card strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
}

.data-card span {
  font-size: 0.875rem;
  color: var(--muted);
}

.lyt-accent {
  background: var(--surface);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(92, 42, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid var(--border);
}

.lyt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-block {
  text-align: center;
  padding: 12px;
  background: var(--bg);
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(92, 42, 42, 0.06);
}

.stat-block .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-block .lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lyt-columns {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(92, 42, 42, 0.12);
  border: 1px solid var(--border);
}

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

.side-panel {
  background: var(--surface);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(92, 42, 42, 0.08);
  border: 1px solid var(--border);
}

.side-panel h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
}

.side-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-panel li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 12px;
  border-left: 3px solid var(--secondary);
}

.lyt-bg-block {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(92, 42, 42, 0.15);
}

.lyt-bg-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 10, 10, 0.92) 35%, rgba(26, 10, 10, 0.45) 100%);
}

.lyt-bg-block__content {
  position: relative;
  z-index: 1;
  padding: 36px;
  max-width: 680px;
}

.lyt-bg-block__content h2,
.lyt-bg-block__content .info-label,
.lyt-bg-block__content .info-text {
  color: #fff;
}

.lyt-bg-block__content .info-label {
  color: var(--accent);
}

.lyt-numbered {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}

.lyt-numbered__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  border-bottom: 3px solid var(--border);
  padding-bottom: 8px;
}

.lyt-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(92, 42, 42, 0.06);
  border: 1px solid var(--border);
}

.check-item mark {
  background: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
}

.lyt-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.lyt-bento__main {
  grid-row: span 2;
  background: var(--surface);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 6px 20px rgba(92, 42, 42, 0.1);
  border: 1px solid var(--border);
}

.lyt-bento__side {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: inset 0 2px 4px rgba(92, 42, 42, 0.04);
}

.lyt-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.lyt-centered .img-wrap {
  margin: 28px auto 0;
}

.lyt-glow {
  border-left: 4px solid var(--primary);
  padding-left: 32px;
  max-width: 760px;
  background: var(--surface);
  border-radius: 0 16px 16px 0;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 32px;
  box-shadow: 0 4px 16px rgba(92, 42, 42, 0.08);
}

.site-footer {
  background: linear-gradient(180deg, #2a1212 0%, #1a0a0a 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 24px 32px;
  margin-top: auto;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
}

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

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

.footer-badge img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-nz-disclosure {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nz-disclosure a {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

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

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

.modal {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid var(--border);
}

.modal__title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.modal__text {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--primary) 0%, #e03d3d 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 6px 16px rgba(255, 77, 77, 0.45);
}

.btn--secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(92, 42, 42, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

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

.subpage-header {
  background: var(--nav-bg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  height: 60px;
  display: flex;
  align-items: center;
}

.legal-page {
  padding: 48px 24px 64px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(92, 42, 42, 0.08);
  border: 1px solid var(--border);
}

.legal-content h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.legal-content ul {
  margin: 0 0 14px 20px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.55;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--bg);
  color: var(--text);
  box-shadow: inset 0 2px 4px rgba(92, 42, 42, 0.04);
}

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

.form-error {
  font-size: 0.8125rem;
  color: var(--primary);
  display: none;
  margin-top: 4px;
}

.form-error.is-visible {
  display: block;
}

.contact-success {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.contact-success[hidden] {
  display: none;
}

.page-404 {
  padding: 80px 24px;
  text-align: center;
}

.page-404__code {
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 16px 0;
}

.page-404__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-404__text {
  color: var(--muted);
  margin-bottom: 28px;
}

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

.redirect-page__box {
  background: var(--surface);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(92, 42, 42, 0.12);
  border: 1px solid var(--border);
}

.redirect-page__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.8s linear infinite;
}

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

.redirect-page__text {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 12px 0 20px;
}

.redirect-page__ad {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
}

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

  .burger-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 180px;
  }

  .hero-mosaic {
    overflow: hidden;
    max-width: 100%;
  }

  .img-wrap {
    max-width: 100%;
    width: 100%;
  }

  .img-wrap img {
    max-width: 100%;
    max-height: 240px;
  }

  .offer-card__logo-wrap {
    width: 180px;
    height: 58px;
  }

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

  .lyt-split,
  .lyt-columns,
  .lyt-bento,
  .lyt-numbered {
    grid-template-columns: 1fr;
  }

  .lyt-stats {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
  }

  .legal-content {
    padding: 28px 20px;
  }
}
